Home
last modified time | relevance | path

Searched refs:maxVertexAttribs (Results 1 – 5 of 5) sorted by relevance

/hardware/google/gfxstream/host/gl/glestranslator/GLcommon/
DGLEScontext.cpp318 for (int i = 0; i < s_glSupport.maxVertexAttribs; i++) { in addVertexArrayObject()
325 …m_vaoStateMap[array] = VAOState(0, map, std::max(s_glSupport.maxVertexAttribs, s_glSupport.maxVert… in addVertexArrayObject()
1799 s_glDispatch.glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &glSupport.maxVertexAttribs); in initCapsLocked()
1801 if (glSupport.maxVertexAttribs > kMaxVertexAttributes) { in initCapsLocked()
1802 glSupport.maxVertexAttribs = kMaxVertexAttributes; in initCapsLocked()
/hardware/google/gfxstream/host/gl/glestranslator/GLES_V2/
DGLESv2Validate.cpp482 return index < (GLuint)ctx->getCaps()->maxVertexAttribs; in arrayIndex()
DGLESv2Imp.cpp533 …SET_ERROR_IF(!GLESv2Validate::attribIndex(index, ctx->getCaps()->maxVertexAttribs),GL_INVALID_VALU… in glBindAttribLocation()
/hardware/google/gfxstream/host/gl/glestranslator/include/GLcommon/
DGLEScontext.h71 int maxVertexAttribs = 0; member
/hardware/google/gfxstream/guest/GLESv2_enc/
DGL2Encoder.cpp6447 GLint maxVertexAttribs; in s_glBindAttribLocation() local
6448 ctx->glGetIntegerv(self, GL_MAX_VERTEX_ATTRIBS, &maxVertexAttribs); in s_glBindAttribLocation()
6449 SET_ERROR_IF(!(index < maxVertexAttribs), GL_INVALID_VALUE); in s_glBindAttribLocation()
6450 SET_ERROR_IF(index > maxVertexAttribs, GL_INVALID_VALUE); in s_glBindAttribLocation()