Coin3D is Free Software, published under the BSD 3-clause license. |
https://bitbucket.org/Coin3D/ http://www.kongsberg.com/kogt/ |
The SoGLCacheContextElement class handles the OpenGL cache for a context. More...
#include <Inventor/elements/SoGLCacheContextElement.h>
Public Types | |
enum | { DO_AUTO_CACHE = 1, DONT_AUTO_CACHE } |
Public Member Functions | |
virtual void | init (SoState *state) |
virtual SbBool | matches (const SoElement *elt) const |
virtual SoElement * | copyMatchInfo (void) const |
Public Member Functions inherited from SoElement | |
const SoType | getTypeId (void) const |
int | getStackIndex (void) const |
virtual void | push (SoState *state) |
virtual void | pop (SoState *state, const SoElement *prevTopElement) |
void | setDepth (const int depth) |
int | getDepth (void) const |
virtual void | print (FILE *file=stdout) const |
virtual | ~SoElement () |
Static Public Member Functions | |
static SoType | getClassTypeId (void) |
static int | getClassStackIndex (void) |
static void * | createInstance (void) |
static void | initClass (void) |
static void | set (SoState *state, int context, SbBool twopasstransparency, SbBool remoterendering) |
static int | get (SoState *state) |
static int | getExtID (const char *str) |
static void | getOpenGLVersion (SoState *state, int &major, int &minor) |
static SbBool | extSupported (SoState *state, int extid) |
static SbBool | areMipMapsFast (SoState *state) |
static void | shouldAutoCache (SoState *state, int bits) |
static void | setAutoCacheBits (SoState *state, int bits) |
static int | resetAutoCacheBits (SoState *state) |
static SbBool | getIsRemoteRendering (SoState *state) |
static uint32_t | getUniqueCacheContext (void) |
static void | scheduleDeleteCallback (const uint32_t contextid, SoScheduleDeleteCB *cb, void *closure) |
static void | incNumShapes (SoState *state) |
static int | getNumShapes (SoState *state) |
static void | incNumSeparators (SoState *state) |
static int | getNumSeparators (SoState *state) |
Static Public Member Functions inherited from SoElement | |
static void | initClass (void) |
static SoType | getClassTypeId (void) |
static int | getClassStackIndex (void) |
static void | initElements (void) |
static int | getNumStackIndices (void) |
static SoType | getIdFromStackIndex (const int stackIndex) |
Protected Member Functions | |
virtual | ~SoGLCacheContextElement () |
Protected Member Functions inherited from SoElement | |
SoElement (void) | |
void | capture (SoState *const state) const |
virtual void | captureThis (SoState *state) const |
void | setTypeId (const SoType typeId) |
void | setStackIndex (const int index) |
SoElement * | getNextInStack (void) const |
SoElement * | getNextFree (void) const |
Additional Inherited Members | |
Static Protected Member Functions inherited from SoElement | |
static SoElement * | getElement (SoState *const state, const int stackIndex) |
static const SoElement * | getConstElement (SoState *const state, const int stackIndex) |
static int | createStackIndex (const SoType id) |
Protected Attributes inherited from SoElement | |
SoType | typeId |
int | stackIndex |
int | depth |
Static Protected Attributes inherited from SoElement | |
static int | classStackIndex |
static SoTypeList * | stackToType |
The SoGLCacheContextElement class handles the OpenGL cache for a context.
|
protectedvirtual |
Destructor.
|
static |
This API member is considered internal to the library, as it is not likely to be of interest to the application programmer.
|
virtual |
|
virtual |
This function returns TRUE
is the element matches another element (of the same class), with respect to cache validity.
If the application programmer's extension element has a matches() function, it should also have a copyMatchInfo() function.
Implements SoElement.
|
virtual |
|
static |
Sets data for context.
Returns context id.
Note that the signature on this function is slightly wrong: the function should really return an uint32_t
, like SoGLRenderAction::getCacheContext() does. It is kept like this for compatibility reasons.
The value returned will always be a positive integer.
|
static |
Returns an extension id based on the GL extension string. The extension id can be used to quickly test for the availability of an extension later, using extSupported().
Returns the OpenGL version for the current context. This method is an extension versus the Open Inventor API.
Returns TRUE if the extension is supported for the current context. extid must be an id returned from getExtId(). The test result is cached so this method is pretty fast and can be used run-time.
|
static |
Returns if mipmapped textures are fast for the current context. In Coin, we just return TRUE for the moment.
Update auto cache bits.
Sets the auto cache bits.
Not properly supported yet.
|
static |
Returns TRUE
if rendering is indirect / remote.
|
static |
Returns an unique cache context id, in the range [1, ->.
If you render the same scene graph into two or different cache contexts, and you've not using display list and texture object sharing among contexts, the cache context id need to be unique for rendering to work.
This function is an extension for Coin, and it is not available in the original SGI Open Inventor v2.1 API.
|
static |
Can be used to receive a callback the next time Coin knows that the context (specified by contextid) is the current OpenGL context.
This function can be used to free OpenGL resources for a context.
Note that the callback will be invoked only once, and then removed from the internal list of scheduled callbacks.
|
static |
Increment the number of shapes in a open cache.
Returns the number of shapes in an open cache.
|
static |
Increment the number of separators in an open cache.
Returns the number of separators in an open cache.