diff options
author | Keith Whitwell <[email protected]> | 2006-10-30 16:44:13 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2006-10-30 16:44:13 +0000 |
commit | 99efde461d3b8615863bdb7308e05289e0db0422 (patch) | |
tree | 95b9e3f4f612957a93547892f3559cfaa44dccb7 /src/mesa/vbo/vbo_context.h | |
parent | efef291dc71eb57f90785a26957f4b3e01733156 (diff) |
better handling of current attributes. Trivial dlist and varray tests work
Diffstat (limited to 'src/mesa/vbo/vbo_context.h')
-rw-r--r-- | src/mesa/vbo/vbo_context.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/vbo/vbo_context.h b/src/mesa/vbo/vbo_context.h index 6b0f14d70ea..a20bfbd518b 100644 --- a/src/mesa/vbo/vbo_context.h +++ b/src/mesa/vbo/vbo_context.h @@ -60,6 +60,13 @@ void _vbo_DestroyContext( GLcontext *ctx ); struct vbo_context { + struct gl_client_array legacy_currval[16]; + struct gl_client_array generic_currval[16]; + struct gl_client_array mat_currval[16]; + + GLuint map_vp_none[32]; + GLuint map_vp_arb[32]; + struct vbo_exec_context exec; struct vbo_save_context save; |