diff options
author | Tom Stellard <[email protected]> | 2012-07-12 19:50:27 +0000 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-07-15 02:00:21 +0200 |
commit | 9b76ee70b2ceebb52cc5edc574df9593cbac03b3 (patch) | |
tree | 57998cabca494a77e1c9efece74a7939d1c1a16f /src/gallium/drivers/r600/r600_pipe.h | |
parent | 0b4c5dbb8c5ee69a341c1f66f70c54e3fe2db970 (diff) |
r600g: Unify 3D and compute vertex buffer emission
Signed-off-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h index 7843579207a..ba63dcc8471 100644 --- a/src/gallium/drivers/r600/r600_pipe.h +++ b/src/gallium/drivers/r600/r600_pipe.h @@ -336,7 +336,10 @@ struct r600_context { struct r600_atom r6xx_flush_and_inv_cmd; struct r600_cb_misc_state cb_misc_state; struct r600_db_misc_state db_misc_state; + /** Vertex buffers for fetch shaders */ struct r600_atom vertex_buffer_state; + /** Vertex buffers for compute shaders */ + struct r600_atom cs_vertex_buffer_state; struct r600_constbuf_state vs_constbuf_state; struct r600_constbuf_state ps_constbuf_state; @@ -396,6 +399,8 @@ struct r600_context { struct pipe_index_buffer index_buffer; struct pipe_vertex_buffer vertex_buffer[PIPE_MAX_ATTRIBS]; unsigned nr_vertex_buffers; + struct pipe_vertex_buffer cs_vertex_buffer[PIPE_MAX_ATTRIBS]; + unsigned nr_cs_vertex_buffers; }; static INLINE void r600_emit_atom(struct r600_context *rctx, struct r600_atom *atom) |