diff options
author | Corbin Simpson <[email protected]> | 2009-11-08 11:45:57 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-11-08 14:53:29 -0800 |
commit | 11d9edf4c9c75d5a41fb0a1757441ad315330bea (patch) | |
tree | d395c24318dfe4399b868dd53114aeab8e442e7c /src/gallium/drivers/r300/r300_context.h | |
parent | b6f93e2607f1bbc5b2f478f0a57d7786dd7d73a5 (diff) |
r300g: Unify context names for counts.
From the SW TCL fixups.
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r300/r300_context.h b/src/gallium/drivers/r300/r300_context.h index 8d14c53f492..f954ba7f9aa 100644 --- a/src/gallium/drivers/r300/r300_context.h +++ b/src/gallium/drivers/r300/r300_context.h @@ -295,10 +295,10 @@ struct r300_context { /* Vertex buffers for Gallium. */ struct pipe_vertex_buffer vertex_buffer[PIPE_MAX_ATTRIBS]; - int vbuf_count; + int vertex_buffer_count; /* Vertex elements for Gallium. */ struct pipe_vertex_element vertex_element[PIPE_MAX_ATTRIBS]; - int aos_count; + int vertex_element_count; /* Bitmask of dirty state objects. */ uint32_t dirty_state; |