Lines Matching refs:vertexArrayObject
2416 …VertexArray* vertexArrayObject = (m_vertexArrayBinding) ? (m_vertexArrayBinding) : (&m_clientVerte… in setBufferBinding() local
2424 …case GL_ELEMENT_ARRAY_BUFFER: bindingPoint = &vertexArrayObject->m_elementArrayBufferBinding; br… in setBufferBinding()
2448 …const VertexArray* vertexArrayObject = (m_vertexArrayBinding) ? (m_vertexArrayBinding) : (&m_clien… in getBufferBinding() local
2456 case GL_ELEMENT_ARRAY_BUFFER: return vertexArrayObject->m_elementArrayBufferBinding; in getBufferBinding()
3559 rc::VertexArray* vertexArrayObject = DE_NULL; in bindVertexArray() local
3563 vertexArrayObject = m_vertexArrays.find(array); in bindVertexArray()
3564 if (!vertexArrayObject) in bindVertexArray()
3566 vertexArrayObject = new rc::VertexArray(array, m_limits.maxVertexAttribs); in bindVertexArray()
3567 m_vertexArrays.insert(vertexArrayObject); in bindVertexArray()
3572 if (vertexArrayObject) in bindVertexArray()
3573 m_vertexArrays.acquireReference(vertexArrayObject); in bindVertexArray()
3579 m_vertexArrayBinding = vertexArrayObject; in bindVertexArray()