summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/r600/r600_pipe.h
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2012-04-01 23:54:44 +0200
committerMarek Olšák <[email protected]>2012-04-24 01:39:22 +0200
commit23b948057ad33cf0b27e5c88a8e9ff7dbfa0573c (patch)
tree69735532c345c71839e45ba7e11fefdfe288f48c /src/gallium/drivers/r600/r600_pipe.h
parent3e3737e9e2548ae751236067cca2a79ad98dc2dd (diff)
r600g: move updating vertex buffer state into set_vertex_buffers
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.h')
-rw-r--r--src/gallium/drivers/r600/r600_pipe.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h
index 450fcc4ccfe..e17011bfb68 100644
--- a/src/gallium/drivers/r600/r600_pipe.h
+++ b/src/gallium/drivers/r600/r600_pipe.h
@@ -349,10 +349,11 @@ struct r600_context {
* In that case, we bind this one: */
void *dummy_pixel_shader;
- bool vertex_buffers_dirty;
boolean dual_src_blend;
unsigned color0_format;
+ /* Vertex and index buffers. */
+ bool vertex_buffers_dirty;
struct pipe_index_buffer index_buffer;
struct pipe_vertex_buffer vertex_buffer[PIPE_MAX_ATTRIBS];
unsigned nr_vertex_buffers;