summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-03-13 17:39:30 -0600
committerBrian <brian.paul@tungstengraphics.com>2008-03-13 17:39:30 -0600
commit34be3969505d378c5a6734a134f03d094a865c56 (patch)
tree77002bc5f32181c50e1bc5438e24f5ae317d3905 /src
parentd088d640fca415261a208d3cbede94a6522ebb6b (diff)
gallium: fix EMIT_HEADER case in draw_vf_set_vertex_info()
Diffstat (limited to 'src')
-rw-r--r--src/gallium/auxiliary/draw/draw_vf.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vf.c b/src/gallium/auxiliary/draw/draw_vf.c
index 4b5b2a86f6..f4e29a6293 100644
--- a/src/gallium/auxiliary/draw/draw_vf.c
+++ b/src/gallium/auxiliary/draw/draw_vf.c
@@ -265,7 +265,11 @@ void draw_vf_set_vertex_info( struct draw_vertex_fetch *vf,
}
case EMIT_HEADER:
/* XXX emit new DRAW_EMIT_HEADER attribute??? */
- count += sizeof(struct vertex_header) / 4;
+ attrs[nr_attrs].attrib = 0;
+ attrs[nr_attrs].format = DRAW_EMIT_PAD;
+ attrs[nr_attrs].offset = offsetof(struct vertex_header, data);
+ count += offsetof(struct vertex_header, data)/4;
+ nr_attrs++;
break;
case EMIT_1F:
attrs[nr_attrs].attrib = j;