Home
last modified time | relevance | path

Searched refs:VAOState (Results 1 – 6 of 6) sorted by relevance

/hardware/google/gfxstream/host/gl/glestranslator/include/GLcommon/
DGLEScontext.h164 struct VAOState { struct
165 VAOState() : VAOState(0, NULL, 0) { } in VAOState() function
166 VAOState(GLuint ibo, ArraysMap* arr, int numVertexAttribBindings) : in VAOState() function
174 VAOState(android::base::Stream* stream);
185 typedef std::unordered_map<GLuint, VAOState> VAOStateMap; argument
/hardware/google/gfxstream/guest/OpenglCodecCommon/include/gfxstream/guest/
DGLClientState.h201 struct VAOState { struct
202 VAOState(GLuint ibo, int nLoc, int nBindings) : in VAOState() argument
215 typedef std::map<GLuint, VAOState> VAOStateMap; argument
220 VAOState& vaoState() { return it->second; } in vaoState()
282 VAOState& currentVaoState();
/hardware/google/gfxstream/host/gl/glestranslator/GLcommon/
DGLEScontext.cpp70 VAOState::VAOState(android::base::Stream* stream) { in VAOState() function in VAOState
97 void VAOState::onSave(android::base::Stream* stream) const { in onSave()
325 …m_vaoStateMap[array] = VAOState(0, map, std::max(s_glSupport.maxVertexAttribs, s_glSupport.maxVert… in addVertexArrayObject()
/hardware/google/gfxstream/host/gl/glestranslator/GLES_V2/
DGLESv2Context.cpp223 m_vaoStateMap[array] = VAOState(0, nullptr, kMaxVertexAttributes); in addVertexArrayObject()
/hardware/google/gfxstream/guest/OpenglCodecCommon/
DGLClientState.cpp257 VAOState(0, CODEC_MAX_VERTEX_ATTRIBUTES, CODEC_MAX_VERTEX_ATTRIBUTES))); in addVertexArrayObject()
392 VAOState& vaoState = m_currVaoState.vaoState(); in updateEnableDirtyArrayForDraw()
405 GLClientState::VAOState& GLClientState::currentVaoState() { in currentVaoState()
/hardware/google/gfxstream/guest/GLESv2_enc/
DGL2Encoder.cpp1329 const GLClientState::VAOState& vaoState = m_state->currentVaoState(); in sendVertexAttributes()