Searched refs:setVertexAttribArrayEnabled (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/src/OpenGL/libGLES_CM/ |
D | libGLES_CM.cpp | 1251 …case GL_VERTEX_ARRAY: context->setVertexAttribArrayEnabled(sw::Position, false); … in DisableClientState() 1252 …case GL_NORMAL_ARRAY: context->setVertexAttribArrayEnabled(sw::Normal, false); … in DisableClientState() 1253 …case GL_COLOR_ARRAY: context->setVertexAttribArrayEnabled(sw::Color0, false); … in DisableClientState() 1254 …case GL_POINT_SIZE_ARRAY_OES: context->setVertexAttribArrayEnabled(sw::PointSize, false); … in DisableClientState() 1255 …case GL_TEXTURE_COORD_ARRAY: context->setVertexAttribArrayEnabled(sw::TexCoord0 + (texture - GL_T… in DisableClientState() 1388 …case GL_VERTEX_ARRAY: context->setVertexAttribArrayEnabled(sw::Position, true); … in EnableClientState() 1389 …case GL_NORMAL_ARRAY: context->setVertexAttribArrayEnabled(sw::Normal, true); … in EnableClientState() 1390 …case GL_COLOR_ARRAY: context->setVertexAttribArrayEnabled(sw::Color0, true); … in EnableClientState() 1391 …case GL_POINT_SIZE_ARRAY_OES: context->setVertexAttribArrayEnabled(sw::PointSize, true); … in EnableClientState() 1392 …case GL_TEXTURE_COORD_ARRAY: context->setVertexAttribArrayEnabled(sw::TexCoord0 + (texture - GL_T… in EnableClientState()
|
D | Context.h | 427 void setVertexAttribArrayEnabled(unsigned int attribNum, bool enabled);
|
D | Context.cpp | 881 void Context::setVertexAttribArrayEnabled(unsigned int attribNum, bool enabled) in setVertexAttribArrayEnabled() function in es1::Context
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Context.h | 520 void setVertexAttribArrayEnabled(unsigned int attribNum, bool enabled);
|
D | libGLESv2.cpp | 1459 context->setVertexAttribArrayEnabled(index, false); in DisableVertexAttribArray() 1804 context->setVertexAttribArrayEnabled(index, true); in EnableVertexAttribArray()
|
D | Context.cpp | 819 void Context::setVertexAttribArrayEnabled(unsigned int attribNum, bool enabled) in setVertexAttribArrayEnabled() function in es2::Context
|