diff options
author | Brian Paul <[email protected]> | 2001-12-18 04:06:44 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-12-18 04:06:44 +0000 |
commit | 30f51ae067379c2b3573c06b707d25a9704df7be (patch) | |
tree | 401d75d291724d0d3a47be29d4d3512dcdb66a5a /src/mesa/main/config.h | |
parent | 645ced29552da1af5c759d0497d98c8f55b72935 (diff) |
Replace old matrix stacks with new code based on struct matrix_stack.
Moved vertex program hash table into shared context state.
Implemented reference counting for vertex programs.
Replaced tnl "ProjectedClip" with "Ndc" (normalized device coordinates).
Diffstat (limited to 'src/mesa/main/config.h')
-rw-r--r-- | src/mesa/main/config.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h index 66ad1fe31e1..37c572226db 100644 --- a/src/mesa/main/config.h +++ b/src/mesa/main/config.h @@ -1,4 +1,4 @@ -/* $Id: config.h,v 1.36 2001/11/28 17:18:36 brianp Exp $ */ +/* $Id: config.h,v 1.37 2001/12/18 04:06:45 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -55,6 +55,10 @@ /* Maximum color matrix stack depth: */ #define MAX_COLOR_STACK_DEPTH 4 +/* Vertex program matrix stacks: */ +#define MAX_PROGRAM_MATRICES 8 +#define MAX_PROGRAM_STACK_DEPTH 4 + /* Maximum attribute stack depth: */ #define MAX_ATTRIB_STACK_DEPTH 16 |