diff options
author | Keith Whitwell <[email protected]> | 2001-06-04 16:09:28 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2001-06-04 16:09:28 +0000 |
commit | 51b36396ae45f9ee9cec8d612787d038641dc6c8 (patch) | |
tree | f172ccf9a8536dfa168eb5c74b0f6f4ab9c946f5 /src/mesa/tnl/t_context.h | |
parent | abd5134965665ad9f7154a08b13edfed15f00135 (diff) |
Adaptor code that lets tnl convert compiled (display list) cassettes back
to glVertex() type calls. Allows driver-supplied tnl modules to avoid
fallback on glCallList inside begin/end pairs.
Still a little buggy...
Diffstat (limited to 'src/mesa/tnl/t_context.h')
-rw-r--r-- | src/mesa/tnl/t_context.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_context.h b/src/mesa/tnl/t_context.h index 54f13e46490..226b877d852 100644 --- a/src/mesa/tnl/t_context.h +++ b/src/mesa/tnl/t_context.h @@ -1,4 +1,4 @@ -/* $Id: t_context.h,v 1.27 2001/06/01 16:29:18 brianp Exp $ */ +/* $Id: t_context.h,v 1.28 2001/06/04 16:09:28 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -524,6 +524,7 @@ typedef struct { /* Probably need a better configuration mechanism: */ GLboolean NeedProjCoords; + GLboolean LoopbackDListCassettes; /* Derived state and storage for _tnl_eval_vb: */ |