[965] Remove dead structure in brw_draw_upload.c.
authorEric Anholt <eric@anholt.net>
Sat, 2 Feb 2008 10:59:55 +0000 (02:59 -0800)
committerEric Anholt <eric@anholt.net>
Tue, 5 Feb 2008 02:24:16 +0000 (18:24 -0800)
src/mesa/drivers/dri/i965/brw_draw_upload.c

index a6581cbb85a98244a48e38b997d1f3388d2ce32b..19fb6be6e2702dcdf795d60fb4b692c7cd295d1d 100644 (file)
 #include "intel_buffer_objects.h"
 #include "intel_tex.h"
 
-struct brw_array_state {
-   union header_union header;
-
-   struct {
-      union {
-        struct {
-           GLuint pitch:11; 
-           GLuint pad:15;
-           GLuint access_type:1; 
-           GLuint vb_index:5; 
-        } bits;
-        GLuint dword;
-      } vb0;
-   
-      dri_bo *buffer;
-      GLuint offset;
-
-      GLuint max_index;   
-      GLuint instance_data_step_rate;
-
-   } vb[BRW_VBP_MAX];
-};
-
-
 static dri_bo *array_buffer( struct intel_context *intel,
                             const struct gl_client_array *array )
 {