summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/i965/brw_draw_upload.c
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2008-02-02 02:59:55 -0800
committerEric Anholt <eric@anholt.net>2008-02-04 18:24:16 -0800
commit0907c639c8509cda4507b28c1399813a09a81c5e (patch)
tree5f4fb6a0be2b26bd451c6bf7145e9e76b2059564 /src/mesa/drivers/dri/i965/brw_draw_upload.c
parent7b8892f50482359625e36005c2b460a921ff796c (diff)
[965] Remove dead structure in brw_draw_upload.c.
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_draw_upload.c')
-rw-r--r--src/mesa/drivers/dri/i965/brw_draw_upload.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_draw_upload.c b/src/mesa/drivers/dri/i965/brw_draw_upload.c
index a6581cbb85..19fb6be6e2 100644
--- a/src/mesa/drivers/dri/i965/brw_draw_upload.c
+++ b/src/mesa/drivers/dri/i965/brw_draw_upload.c
@@ -44,30 +44,6 @@
#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 )
{