summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/i965simple/brw_context.h
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2007-12-18 17:25:33 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2007-12-18 17:25:33 +0000
commitc31416971e4eac148f8e82d6c4392bd6f9cbc05d (patch)
tree90c5a1b4ef735d1709cc26271cb89232f7dd73a3 /src/mesa/pipe/i965simple/brw_context.h
parent208b2ad8ab51c472886388fdd872e3a86e2c1c5c (diff)
gallium: rationalize vertex_element state packet
Remove dst_offset (not used) Add nr_components, which could be calculated from format, but would be too much effort. Update i965 driver to cope.
Diffstat (limited to 'src/mesa/pipe/i965simple/brw_context.h')
-rw-r--r--src/mesa/pipe/i965simple/brw_context.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/mesa/pipe/i965simple/brw_context.h b/src/mesa/pipe/i965simple/brw_context.h
index 11146570be..fc2cb055e9 100644
--- a/src/mesa/pipe/i965simple/brw_context.h
+++ b/src/mesa/pipe/i965simple/brw_context.h
@@ -443,14 +443,6 @@ struct brw_cached_batch_item {
*/
#define ATTRIB_BIT_DWORDS ((PIPE_ATTRIB_MAX+31)/32)
-struct brw_vertex_element {
- struct brw_vertex_element_state vep;
-
- unsigned index;
- unsigned element_size;
- unsigned count;
- unsigned vbo_rebase_offset;
-};
@@ -508,7 +500,7 @@ struct brw_context
*/
struct pipe_vertex_buffer *vbo_array[PIPE_ATTRIB_MAX];
- struct brw_vertex_element inputs[PIPE_ATTRIB_MAX];
+ struct brw_vertex_element_state inputs[PIPE_ATTRIB_MAX];
#define BRW_NR_UPLOAD_BUFS 17
#define BRW_UPLOAD_INIT_SIZE (128*1024)