OGRE  1.12.12
Object-Oriented Graphics Rendering Engine
Ogre::GLContext Class Referenceabstract

Class that encapsulates an GL context. More...

#include <OgreGLContext.h>

Public Member Functions

 GLContext ()
 
virtual ~GLContext ()
 
std::vector< uint32 > & _getFboDeferredForDestruction ()
 FBOs deferred for destruction in proper GL context. More...
 
std::vector< uint32 > & _getVaoDeferredForDestruction ()
 VAOs deferred for destruction in proper GL context. More...
 
virtual GLContextclone () const =0
 Create a new context based on the same window/pbuffer as this context - mostly useful for additional threads. More...
 
template<class StateCacheManager >
StateCacheManager * createOrRetrieveStateCacheManager ()
 Get the state cache manager, creating it on demand. More...
 
virtual void endCurrent ()=0
 This is called before another context is made current. More...
 
bool getInitialized ()
 
virtual void releaseContext ()
 Release the render context. More...
 
virtual void setCurrent ()=0
 Enable the context. More...
 
void setInitialized ()
 

Detailed Description

Class that encapsulates an GL context.

(IE a window/pbuffer). This is a virtual base class which should be implemented in a GLSupport. This object can also be used to cache renderstate if we decide to do so in the future.

Constructor & Destructor Documentation

Ogre::GLContext::GLContext ( )
inline
virtual Ogre::GLContext::~GLContext ( )
inlinevirtual

Member Function Documentation

virtual void Ogre::GLContext::setCurrent ( )
pure virtual

Enable the context.

All subsequent rendering commands will go here.

virtual void Ogre::GLContext::endCurrent ( )
pure virtual

This is called before another context is made current.

By default, nothing is done here.

bool Ogre::GLContext::getInitialized ( )
inline
void Ogre::GLContext::setInitialized ( )
inline

References OGRE_NODISCARD.

virtual GLContext* Ogre::GLContext::clone ( ) const
pure virtual

Create a new context based on the same window/pbuffer as this context - mostly useful for additional threads.

Note
The caller is responsible for deleting the returned context.
virtual void Ogre::GLContext::releaseContext ( )
inlinevirtual

Release the render context.

template<class StateCacheManager >
StateCacheManager* Ogre::GLContext::createOrRetrieveStateCacheManager ( )
inline

Get the state cache manager, creating it on demand.

std::vector<uint32>& Ogre::GLContext::_getVaoDeferredForDestruction ( )
inline

VAOs deferred for destruction in proper GL context.

std::vector<uint32>& Ogre::GLContext::_getFboDeferredForDestruction ( )
inline

FBOs deferred for destruction in proper GL context.


The documentation for this class was generated from the following file: