summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_state.c
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2009-11-08 11:45:57 -0800
committerCorbin Simpson <MostAwesomeDude@gmail.com>2009-11-08 14:53:29 -0800
commit11d9edf4c9c75d5a41fb0a1757441ad315330bea (patch)
treed395c24318dfe4399b868dd53114aeab8e442e7c /src/gallium/drivers/r300/r300_state.c
parentb6f93e2607f1bbc5b2f478f0a57d7786dd7d73a5 (diff)
r300g: Unify context names for counts.
From the SW TCL fixups.
Diffstat (limited to 'src/gallium/drivers/r300/r300_state.c')
-rw-r--r--src/gallium/drivers/r300/r300_state.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r300/r300_state.c b/src/gallium/drivers/r300/r300_state.c
index e0b85ab768..d1eced61db 100644
--- a/src/gallium/drivers/r300/r300_state.c
+++ b/src/gallium/drivers/r300/r300_state.c
@@ -668,7 +668,7 @@ static void r300_set_vertex_buffers(struct pipe_context* pipe,
memcpy(r300->vertex_buffer, buffers,
sizeof(struct pipe_vertex_buffer) * count);
- r300->vbuf_count = count;
+ r300->vertex_buffer_count = count;
if (r300->draw) {
draw_flush(r300->draw);
@@ -685,7 +685,7 @@ static void r300_set_vertex_elements(struct pipe_context* pipe,
memcpy(r300->vertex_element,
elements,
sizeof(struct pipe_vertex_element) * count);
- r300->aos_count = count;
+ r300->vertex_element_count = count;
if (r300->draw) {
draw_flush(r300->draw);