|
| | VertexArrayState (osg::State *state) |
| |
| void | setCurrentVertexBufferObject (osg::GLBufferObject *vbo) |
| |
| GLBufferObject * | getCurrentVertexBufferObject () |
| |
| void | bindVertexBufferObject (osg::GLBufferObject *vbo) |
| |
| void | unbindVertexBufferObject () |
| |
| void | setCurrentElementBufferObject (osg::GLBufferObject *ebo) |
| |
| GLBufferObject * | getCurrentElementBufferObject () |
| |
| void | bindElementBufferObject (osg::GLBufferObject *ebo) |
| |
| void | unbindElementBufferObject () |
| |
| void | resetBufferObjectPointers () |
| |
| bool | correctArrayDispatchAssigned (const ArrayDispatch *ad) |
| |
| void | assignAllDispatchers () |
| |
| void | assignVertexArrayDispatcher () |
| |
| void | assignNormalArrayDispatcher () |
| |
| void | assignColorArrayDispatcher () |
| |
| void | assignSecondaryColorArrayDispatcher () |
| |
| void | assignFogCoordArrayDispatcher () |
| |
| void | assignTexCoordArrayDispatcher (unsigned int numUnits) |
| |
| void | assignVertexAttribArrayDispatcher (unsigned int numUnits) |
| |
| void | setVertexBufferObjectSupported (bool flag) |
| |
| bool | isVertexBufferObjectSupported () const |
| |
| void | setArray (ArrayDispatch *vad, osg::State &state, const osg::Array *new_array) |
| |
| void | setArray (ArrayDispatch *vad, osg::State &state, GLint size, GLenum type, GLsizei stride, const GLvoid *ptr, GLboolean normalized) |
| |
| void | disable (ArrayDispatch *vad, osg::State &state) |
| |
| void | setInterleavedArrays (osg::State &state, GLenum format, GLsizei stride, const GLvoid *pointer) |
| |
| void | setVertexArray (osg::State &state, const osg::Array *array) |
| |
| void | setVertexArray (osg::State &state, GLint size, GLenum type, GLsizei stride, const GLvoid *ptr, GLboolean normalized=GL_FALSE) |
| |
| void | disableVertexArray (osg::State &state) |
| |
| void | setNormalArray (osg::State &state, const osg::Array *array) |
| |
| void | setNormalArray (osg::State &state, GLenum type, GLsizei stride, const GLvoid *ptr, GLboolean normalized=GL_FALSE) |
| |
| void | disableNormalArray (osg::State &state) |
| |
| void | setColorArray (osg::State &state, const osg::Array *array) |
| |
| void | setColorArray (osg::State &state, GLint size, GLenum type, GLsizei stride, const GLvoid *ptr, GLboolean normalized=GL_TRUE) |
| |
| void | disableColorArray (osg::State &state) |
| |
| void | setSecondaryColorArray (osg::State &state, const osg::Array *array) |
| |
| void | disableSecondaryColorArray (osg::State &state) |
| |
| void | setFogCoordArray (osg::State &state, const osg::Array *array) |
| |
| void | disableFogCoordArray (osg::State &state) |
| |
| void | setTexCoordArray (osg::State &state, unsigned int unit, const osg::Array *array) |
| |
| void | setTexCoordArray (osg::State &state, unsigned int unit, GLint size, GLenum type, GLsizei stride, const GLvoid *ptr, GLboolean normalized=GL_FALSE) |
| |
| void | disableTexCoordArray (osg::State &state, unsigned int unit) |
| |
| void | disableTexCoordArrayAboveAndIncluding (osg::State &state, unsigned int index) |
| |
| void | setVertexAttribArray (osg::State &state, unsigned int unit, const osg::Array *array) |
| |
| void | disableVertexAttribArray (osg::State &state, unsigned int unit) |
| |
| void | disableVertexAttribArrayAboveAndIncluding (osg::State &state, unsigned int index) |
| |
| void | lazyDisablingOfVertexAttributes () |
| | Mark all the vertex attributes as being disabled but leave the disabling till a later call to applyDisablingOfVertexAttributes. More...
|
| |
| void | applyDisablingOfVertexAttributes (osg::State &state) |
| | Disable all the vertex attributes that have been marked as to be disabled. More...
|
| |
| void | generateVertexArrayObject () |
| |
| void | deleteVertexArrayObject () |
| |
| GLuint | getVertexArrayObject () const |
| |
| void | setRequiresSetArrays (bool flag) |
| |
| bool | getRequiresSetArrays () const |
| |
| void | dirty () |
| |
| void | release () |
| |
| virtual | ~VertexArrayState () |
| |
| | Referenced () |
| |
| | Referenced (bool threadSafeRefUnref) |
| | Deprecated, Referenced is now always uses thread safe ref/unref, use default Referenced() constructor instead. More...
|
| |
| | Referenced (const Referenced &) |
| |
| Referenced & | operator= (const Referenced &) |
| |
| virtual void | setThreadSafeRefUnref (bool) |
| | Deprecated, Referenced is always theadsafe so there method now has no effect and does not need to be called. More...
|
| |
| bool | getThreadSafeRefUnref () const |
| | Get whether a mutex is used to ensure ref() and unref() are thread safe. More...
|
| |
| OpenThreads::Mutex * | getRefMutex () const |
| | Get the mutex used to ensure thread safety of ref()/unref(). More...
|
| |
| int | ref () const |
| | Increment the reference count by one, indicating that this object has another pointer which is referencing it. More...
|
| |
| int | unref () const |
| | Decrement the reference count by one, indicating that a pointer to this object is no longer referencing it. More...
|
| |
| int | unref_nodelete () const |
| | Decrement the reference count by one, indicating that a pointer to this object is no longer referencing it. More...
|
| |
| int | referenceCount () const |
| | Return the number of pointers currently referencing this object. More...
|
| |
| ObserverSet * | getObserverSet () const |
| | Get the ObserverSet if one is attached, otherwise return NULL. More...
|
| |
| ObserverSet * | getOrCreateObserverSet () const |
| | Get the ObserverSet if one is attached, otherwise create an ObserverSet, attach it, then return this newly created ObserverSet. More...
|
| |
| void | addObserver (Observer *observer) const |
| | Add a Observer that is observing this object, notify the Observer when this object gets deleted. More...
|
| |
| void | removeObserver (Observer *observer) const |
| | Remove Observer that is observing this object. More...
|
| |