Home
last modified time | relevance | path

Searched refs:ClientAttribStackDepth (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/mesa/main/
Dattrib.c1511 if (ctx->ClientAttribStackDepth >= MAX_CLIENT_ATTRIB_STACK_DEPTH) { in _mesa_PushClientAttrib()
1541 ctx->ClientAttribStack[ctx->ClientAttribStackDepth] = head; in _mesa_PushClientAttrib()
1542 ctx->ClientAttribStackDepth++; in _mesa_PushClientAttrib()
1556 if (ctx->ClientAttribStackDepth == 0) { in _mesa_PopClientAttrib()
1561 ctx->ClientAttribStackDepth--; in _mesa_PopClientAttrib()
1562 node = ctx->ClientAttribStack[ctx->ClientAttribStackDepth]; in _mesa_PopClientAttrib()
1659 ctx->ClientAttribStackDepth = 0; in _mesa_init_attrib()
Dmtypes.h3474 GLuint ClientAttribStackDepth; member
Dget.c830 { GL_CLIENT_ATTRIB_STACK_DEPTH, CONTEXT_INT(ClientAttribStackDepth), NO_EXTRA },