Home
last modified time | relevance | path

Searched refs:m_emulatedClientVBOs (Results 1 – 2 of 2) sorted by relevance

/hardware/google/gfxstream/host/gl/glestranslator/GLES_V2/
DGLESv2Context.cpp137 if (m_emulatedClientVBOs.empty()) { in initEmulatedBuffers()
145 m_emulatedClientVBOs.resize(neededClientVBOs, 0); in initEmulatedBuffers()
146 dispatcher().glGenBuffers(neededClientVBOs, &m_emulatedClientVBOs[0]); in initEmulatedBuffers()
195 if (!m_emulatedClientVBOs.empty()) { in ~GLESv2Context()
197 m_emulatedClientVBOs.size(), in ~GLESv2Context()
198 &m_emulatedClientVBOs[0]); in ~GLESv2Context()
486 s_glDispatch.glBindBuffer(GL_ARRAY_BUFFER, m_emulatedClientVBOs[0]); in validateAtt0PreDraw()
681 if (arrayType < m_emulatedClientVBOs.size()) { in setupArrWithDataSize()
682 s_glDispatch.glBindBuffer(GL_ARRAY_BUFFER, m_emulatedClientVBOs[arrayType]); in setupArrWithDataSize()
DGLESv2Context.h149 std::vector<GLuint> m_emulatedClientVBOs; variable