Warning
This page refers to an old version of SFML. Click here to switch to the latest version.
Warning
This page refers to an old version of SFML. Click here to switch to the latest version.
Base class for classes that require an OpenGL context. More...
#include <SFML/Window/GlResource.hpp>
Classes | |
class | TransientContextLock |
RAII helper class to temporarily lock an available context for use. More... |
Protected Member Functions | |
GlResource () | |
Default constructor. |
Static Protected Member Functions | |
static void | registerUnsharedGlObject (std::shared_ptr< void > object) |
Register an OpenGL object to be destroyed when its containing context is destroyed. | |
static void | unregisterUnsharedGlObject (std::shared_ptr< void > object) |
Unregister an OpenGL object from its containing context. |
Base class for classes that require an OpenGL context.
This class is for internal use only, it must be the base of every class that requires a valid OpenGL context in order to work.
Definition at line 43 of file GlResource.hpp.
|
protected |
Default constructor.
|
staticprotected |
Register an OpenGL object to be destroyed when its containing context is destroyed.
This is used for internal purposes in order to properly clean up OpenGL resources that cannot be shared between contexts.
object | Object to be destroyed when its containing context is destroyed |
|
staticprotected |
Unregister an OpenGL object from its containing context.
object | Object to be unregistered |