Searched refs:maxVertexAttribs (Results 1 – 5 of 5) sorted by relevance
/hardware/google/gfxstream/host/gl/glestranslator/GLcommon/ |
D | GLEScontext.cpp | 318 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/ |
D | GLESv2Validate.cpp | 482 return index < (GLuint)ctx->getCaps()->maxVertexAttribs; in arrayIndex()
|
D | GLESv2Imp.cpp | 533 …SET_ERROR_IF(!GLESv2Validate::attribIndex(index, ctx->getCaps()->maxVertexAttribs),GL_INVALID_VALU… in glBindAttribLocation()
|
/hardware/google/gfxstream/host/gl/glestranslator/include/GLcommon/ |
D | GLEScontext.h | 71 int maxVertexAttribs = 0; member
|
/hardware/google/gfxstream/guest/GLESv2_enc/ |
D | GL2Encoder.cpp | 6447 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()
|