25#ifndef TGUI_BACKEND_GLFW_GLES2_INCLUDE_HPP
26#define TGUI_BACKEND_GLFW_GLES2_INCLUDE_HPP
28#include <TGUI/Config.hpp>
29#if !TGUI_HAS_BACKEND_GLFW_GLES2
30 #error "TGUI wasn't build with the GLFW_GLES2 backend"
33#if TGUI_BUILD_AS_CXX_MODULE
34 import tgui.backend.window.glfw;
35 import tgui.backend.renderer.gles2;
36 import tgui.backend.font.freetype;
38 #include <TGUI/Backend/Window/GLFW/BackendGLFW.hpp>
39 #include <TGUI/Backend/Renderer/GLES2/BackendRendererGLES2.hpp>
40 #include <TGUI/Backend/Font/FreeType/BackendFontFreeType.hpp>
43using GLFWwindow =
struct GLFWwindow;
45TGUI_MODULE_EXPORT
namespace tgui
47 inline namespace GLFW_GLES2
69 Gui(GLFWwindow* window)
Definition BackendGuiGLFW.hpp:50
Gui class for GLFW + GLES2 backend (using FreeType for fonts)
Definition GLFW-GLES2.hpp:53
Gui()=default
Default constructor.
Gui(GLFWwindow *window)
Constructor that immediately sets the window on which the gui should be drawn.
Definition GLFW-GLES2.hpp:69
void setWindow(GLFWwindow *window)
Sets the window on which the gui should be drawn.
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:39