Coin  4.0.3
Coin3D core library
Loading...
Searching...
No Matches
SoGLCacheContextElement Class Reference

The SoGLCacheContextElement class handles the OpenGL cache for a context. More...

#include <Inventor/elements/SoGLCacheContextElement.h>

Inheritance diagram for SoGLCacheContextElement:
SoElement

Public Types

enum  { DO_AUTO_CACHE = 1 , DONT_AUTO_CACHE }
 

Public Member Functions

virtual SoElementcopyMatchInfo (void) const
 
virtual void init (SoState *state)
 
virtual SbBool matches (const SoElement *elt) const
 
- Public Member Functions inherited from SoElement
virtual ~SoElement ()
 
int getDepth (void) const
 
int getStackIndex (void) const
 
const SoType getTypeId (void) const
 
virtual void pop (SoState *state, const SoElement *prevTopElement)
 
virtual void print (FILE *file=stdout) const
 
virtual void push (SoState *state)
 
void setDepth (const int depth)
 

Static Public Member Functions

static SbBool areMipMapsFast (SoState *state)
 
static voidcreateInstance (void)
 
static SbBool extSupported (SoState *state, int extid)
 
static int get (SoState *state)
 
static int getClassStackIndex (void)
 
static SoType getClassTypeId (void)
 
static int getExtID (const char *str)
 
static SbBool getIsRemoteRendering (SoState *state)
 
static int getNumSeparators (SoState *state)
 
static int getNumShapes (SoState *state)
 
static void getOpenGLVersion (SoState *state, int &major, int &minor)
 
static uint32_t getUniqueCacheContext (void)
 
static void incNumSeparators (SoState *state)
 
static void incNumShapes (SoState *state)
 
static void initClass (void)
 
static int resetAutoCacheBits (SoState *state)
 
static void scheduleDeleteCallback (const uint32_t contextid, SoScheduleDeleteCB *cb, void *closure)
 
static void set (SoState *state, int context, SbBool twopasstransparency, SbBool remoterendering)
 
static void setAutoCacheBits (SoState *state, int bits)
 
static void shouldAutoCache (SoState *state, int bits)
 
- Static Public Member Functions inherited from SoElement
static int getClassStackIndex (void)
 
static SoType getClassTypeId (void)
 
static SoType getIdFromStackIndex (const int stackIndex)
 
static int getNumStackIndices (void)
 
static void initClass (void)
 
static void initElements (void)
 

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
 
SoElementgetNextFree (void) const
 
SoElementgetNextInStack (void) const
 
void setStackIndex (const int index)
 
void setTypeId (const SoType typeId)
 

Additional Inherited Members

- Static Protected Member Functions inherited from SoElement
static int createStackIndex (const SoType id)
 
static const SoElementgetConstElement (SoState *const state, const int stackIndex)
 
static SoElementgetElement (SoState *const state, const int stackIndex)
 
- Protected Attributes inherited from SoElement
int depth
 
int stackIndex
 
SoType typeId
 
- Static Protected Attributes inherited from SoElement
static int classStackIndex
 
static SoTypeListstackToType
 

Detailed Description

The SoGLCacheContextElement class handles the OpenGL cache for a context.

Constructor & Destructor Documentation

◆ ~SoGLCacheContextElement()

SoGLCacheContextElement::~SoGLCacheContextElement ( )
protectedvirtual

Destructor.

Member Function Documentation

◆ areMipMapsFast()

SbBool SoGLCacheContextElement::areMipMapsFast ( SoState * state)
static

Returns if mipmapped textures are fast for the current context. In Coin, we just return TRUE for the moment.

◆ copyMatchInfo()

SoElement * SoGLCacheContextElement::copyMatchInfo ( void ) const
virtual

This function creates a copy of the element that contains enough information to enable the matches() function to work.

Used to help with scene graph traversal caching operations.

Implements SoElement.

◆ createInstance()

void * SoGLCacheContextElement::createInstance ( void )
static

This API member is considered internal to the library, as it is not likely to be of interest to the application programmer.

Creates a new instance of the class type corresponding to the SoType object.

◆ extSupported()

SbBool SoGLCacheContextElement::extSupported ( SoState * state,
int extid )
static

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 at runtime.

◆ get()

int SoGLCacheContextElement::get ( SoState * state)
static

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.

◆ getClassStackIndex()

int SoGLCacheContextElement::getClassStackIndex ( void )
static

This static method returns the state stack index for the class.

◆ getClassTypeId()

SoType SoGLCacheContextElement::getClassTypeId ( void )
static

This static method returns the SoType object associated with objects of this class.

◆ getExtID()

int SoGLCacheContextElement::getExtID ( const char * str)
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().

◆ getIsRemoteRendering()

SbBool SoGLCacheContextElement::getIsRemoteRendering ( SoState * state)
static

Returns TRUE if rendering is indirect / remote.

◆ getNumSeparators()

int SoGLCacheContextElement::getNumSeparators ( SoState * state)
static

Returns the number of separators in an open cache.

Since
Coin 3.0

◆ getNumShapes()

int SoGLCacheContextElement::getNumShapes ( SoState * state)
static

Returns the number of shapes in an open cache.

Since
Coin 3.0

◆ getOpenGLVersion()

void SoGLCacheContextElement::getOpenGLVersion ( SoState * state,
int & major,
int & minor )
static

Returns the OpenGL version for the current context. This method is an extension versus the Open Inventor API.

◆ getUniqueCacheContext()

uint32_t SoGLCacheContextElement::getUniqueCacheContext ( void )
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.

See also
SoGLRenderAction::setCacheContext()

◆ incNumSeparators()

void SoGLCacheContextElement::incNumSeparators ( SoState * state)
static

Increment the number of separators in an open cache.

Since
Coin 3.0

◆ incNumShapes()

void SoGLCacheContextElement::incNumShapes ( SoState * state)
static

Increment the number of shapes in a open cache.

Since
Coin 3.0

◆ init()

void SoGLCacheContextElement::init ( SoState * state)
virtual

This function initializes the element type in the given SoState. It is called for the first element of each enabled element type in SoState objects.

Reimplemented from SoElement.

◆ initClass()

void SoGLCacheContextElement::initClass ( void )
static

Initialize relevant common data for all instances, like the type system.

◆ matches()

SbBool SoGLCacheContextElement::matches ( const SoElement * element) const
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.

◆ resetAutoCacheBits()

int SoGLCacheContextElement::resetAutoCacheBits ( SoState * state)
static

Not properly supported yet.

◆ scheduleDeleteCallback()

void SoGLCacheContextElement::scheduleDeleteCallback ( const uint32_t contextid,
SoScheduleDeleteCB * cb,
void * closure )
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.

Since
Coin 2.3

◆ set()

void SoGLCacheContextElement::set ( SoState * state,
int context,
SbBool twopasstransparency,
SbBool remoterendering )
static

Sets data for context.

◆ setAutoCacheBits()

void SoGLCacheContextElement::setAutoCacheBits ( SoState * state,
int bits )
static

Sets the auto cache bits.

◆ shouldAutoCache()

void SoGLCacheContextElement::shouldAutoCache ( SoState * state,
int bits )
static

Update auto cache bits.


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