Documentation

This commit is contained in:
Pcornat 2026-01-10 16:13:38 +01:00
commit 7ce7fe4889
Signed by: Pcornat
GPG key ID: E0326CC678A00BDD
4 changed files with 36 additions and 0 deletions

View file

@ -10,6 +10,11 @@ namespace gui {
}
namespace opengl {
/*!
* \brief It takes a window object to get OpenGL context in current thread.
* \param win Window to use to init the GLEW context
* \return True: glew init, false: failed
*/
[[nodiscard]] bool init_glew(const gui::Window &win) noexcept;
}