diff options
author | Brian <[email protected]> | 2007-08-15 11:45:12 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-08-15 11:45:12 -0600 |
commit | f30093418928dce5872ea179ed5d21d3b24b7c82 (patch) | |
tree | b0b7368700cb660f0e5ed34e0b05a9c65ad6c969 /src/mesa/pipe/softpipe/sp_context.h | |
parent | 3f70b504386e5d0b67cbd719769e44f33db0ae87 (diff) |
added state funcs for vertex buffer/element info
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_context.h')
-rw-r--r-- | src/mesa/pipe/softpipe/sp_context.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/pipe/softpipe/sp_context.h b/src/mesa/pipe/softpipe/sp_context.h index 8887c576c1f..8b0e970ea2d 100644 --- a/src/mesa/pipe/softpipe/sp_context.h +++ b/src/mesa/pipe/softpipe/sp_context.h @@ -64,6 +64,7 @@ enum interp_mode { #define SP_NEW_SAMPLER 0x400 #define SP_NEW_TEXTURE 0x800 #define SP_NEW_STENCIL 0x1000 +#define SP_NEW_VERTEX 0x2000 struct softpipe_context { @@ -88,6 +89,8 @@ struct softpipe_context { struct pipe_stencil_state stencil; struct pipe_mipmap_tree *texture[PIPE_MAX_SAMPLERS]; struct pipe_viewport_state viewport; + struct pipe_vertex_buffer vertex_buffer[PIPE_ATTRIB_MAX]; + struct pipe_vertex_element vertex_element[PIPE_ATTRIB_MAX]; unsigned dirty; /* Setup derived state. TODO: this should be passed in the program |