Searched defs:maxDepth (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/GuestHost/OpenGL/include/state/
H A Dcr_transform.h36 CRmatrix *stack; /* array [maxDepth] of CRmatrix */
37 GLuint depth; /* 0 <= depth < maxDepth */
38 GLuint maxDepth; /* size of stack[] array */ member in struct:__anon16247
71 DECLEXPORT(void) crStateInitMatrixStack(CRMatrixStack *stack, int maxDepth);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dfset2.c1842 int maxDepth; local
1891 maxDepth=MR_AmbAidDepth;
1893 maxDepth=LL_k;
1896 for (depth=1 ; depth <= maxDepth; depth++) {
H A Dmrhoist.c793 void MR_pred_depth(Predicate *p,int *maxDepth) argument
795 void MR_pred_depth(p,maxDepth)
797 int *maxDepth;
803 if (p->k > *maxDepth) *maxDepth=p->k;
805 MR_pred_depth(p->down,maxDepth);
806 MR_pred_depth(p->right,maxDepth);
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_transform.c82 crStateInitMatrixStack(CRMatrixStack *stack, int maxDepth) argument
84 stack->maxDepth = maxDepth;
86 stack->stack = crAlloc(maxDepth * sizeof(CRmatrix));
415 if (t->currentStack->depth + 1 >= t->currentStack->maxDepth)
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/swrast/
H A Ds_tritemp.h133 const GLfloat maxDepth = ctx->DrawBuffer->_DepthMaxF; local
343 if (span.attrStepX[FRAG_ATTRIB_WPOS][2] > maxDepth ||
344 span.attrStepX[FRAG_ATTRIB_WPOS][2] < -maxDepth) {

Completed in 81 milliseconds