TGUI
0.9-dev
|
Backend renderer that uses OpenGL ES 2 or 3 (depending on the loaded OpenGL ES context that you have to provide) More...
#include </home/texus/Documents/TGUI-0.9/include/TGUI/Backend/Renderer/GLES2/BackendRendererGLES2.hpp>
Public Member Functions | |
BackendRendererGLES2 (ContextLoadFuncType contextLoadFunction) | |
Initializes the backend renderer. This will initialize GLAD to use OpenGL ES. More... | |
BackendRendererGLES2 (SDLContextLoadFuncType contextLoadFunction) | |
Helper constructor so that you can pass SDL_GL_GetProcAddress without needing to cast the type. More... | |
std::shared_ptr< BackendTexture > | createTexture () override |
Creates a new empty texture object. More... | |
unsigned int | getMaximumTextureSize () override |
Get the maximum allowed texture size. More... | |
Public Member Functions inherited from tgui::BackendRenderer | |
virtual | ~BackendRenderer ()=default |
Virtual destructor. | |
virtual std::shared_ptr< BackendText > | createText () |
Creates a new empty text object. More... | |
Backend renderer that uses OpenGL ES 2 or 3 (depending on the loaded OpenGL ES context that you have to provide)
tgui::BackendRendererGLES2::BackendRendererGLES2 | ( | ContextLoadFuncType | contextLoadFunction | ) |
Initializes the backend renderer. This will initialize GLAD to use OpenGL ES.
contextLoadFunction | Function that gets the address of an OpenGL function |
Examples of load functions are sf::Context::getFunction, SDL_GL_GetProcAddress and glfwGetProcAddress.
Example usage:
tgui::BackendRendererGLES2::BackendRendererGLES2 | ( | SDLContextLoadFuncType | contextLoadFunction | ) |
Helper constructor so that you can pass SDL_GL_GetProcAddress without needing to cast the type.
contextLoadFunction | Function that gets the address of an OpenGL function |
|
overridevirtual |
Creates a new empty texture object.
Implements tgui::BackendRenderer.
|
overridevirtual |
Get the maximum allowed texture size.
This maximum size is defined by the graphics driver. Most likely this will return 8192 or 16384.
Reimplemented from tgui::BackendRenderer.