Lines Matching refs:vertexArrayObject
2453 …VertexArray* vertexArrayObject = (m_vertexArrayBinding) ? (m_vertexArrayBinding) : (&m_clientVerte… in setBufferBinding() local
2461 …case GL_ELEMENT_ARRAY_BUFFER: bindingPoint = &vertexArrayObject->m_elementArrayBufferBinding; br… in setBufferBinding()
2485 …const VertexArray* vertexArrayObject = (m_vertexArrayBinding) ? (m_vertexArrayBinding) : (&m_clien… in getBufferBinding() local
2493 case GL_ELEMENT_ARRAY_BUFFER: return vertexArrayObject->m_elementArrayBufferBinding; in getBufferBinding()
3596 rc::VertexArray* vertexArrayObject = DE_NULL; in bindVertexArray() local
3600 vertexArrayObject = m_vertexArrays.find(array); in bindVertexArray()
3601 if (!vertexArrayObject) in bindVertexArray()
3603 vertexArrayObject = new rc::VertexArray(array, m_limits.maxVertexAttribs); in bindVertexArray()
3604 m_vertexArrays.insert(vertexArrayObject); in bindVertexArray()
3609 if (vertexArrayObject) in bindVertexArray()
3610 m_vertexArrays.acquireReference(vertexArrayObject); in bindVertexArray()
3616 m_vertexArrayBinding = vertexArrayObject; in bindVertexArray()