Lines Matching refs:vertexArrayObject
2414 …VertexArray* vertexArrayObject = (m_vertexArrayBinding) ? (m_vertexArrayBinding) : (&m_clientVerte… in setBufferBinding() local
2422 …case GL_ELEMENT_ARRAY_BUFFER: bindingPoint = &vertexArrayObject->m_elementArrayBufferBinding; br… in setBufferBinding()
2446 …const VertexArray* vertexArrayObject = (m_vertexArrayBinding) ? (m_vertexArrayBinding) : (&m_clien… in getBufferBinding() local
2454 case GL_ELEMENT_ARRAY_BUFFER: return vertexArrayObject->m_elementArrayBufferBinding; in getBufferBinding()
3557 rc::VertexArray* vertexArrayObject = DE_NULL; in bindVertexArray() local
3561 vertexArrayObject = m_vertexArrays.find(array); in bindVertexArray()
3562 if (!vertexArrayObject) in bindVertexArray()
3564 vertexArrayObject = new rc::VertexArray(array, m_limits.maxVertexAttribs); in bindVertexArray()
3565 m_vertexArrays.insert(vertexArrayObject); in bindVertexArray()
3570 if (vertexArrayObject) in bindVertexArray()
3571 m_vertexArrays.acquireReference(vertexArrayObject); in bindVertexArray()
3577 m_vertexArrayBinding = vertexArrayObject; in bindVertexArray()