summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/r600/r600_pipe.h
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2012-03-05 16:20:05 +0100
committerMarek Olšák <[email protected]>2012-03-05 16:22:28 +0100
commite363dd5c7d8ba40984d937ad7487abbb5be439bc (patch)
treeb3c1ad2cd7e88f9418287767e27ee536405fb9fc /src/gallium/drivers/r600/r600_pipe.h
parent330b6c85c961b32f704ce8ec7dbf8cb7fc0b80a8 (diff)
r600g: replace atom_ prefix with _state and _cmd suffixes
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.h')
-rw-r--r--src/gallium/drivers/r600/r600_pipe.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h
index 499918b2971..9965e2811d0 100644
--- a/src/gallium/drivers/r600/r600_pipe.h
+++ b/src/gallium/drivers/r600/r600_pipe.h
@@ -67,18 +67,18 @@ struct r600_command_buffer {
unsigned max_num_dw;
};
-struct r600_atom_surface_sync {
+struct r600_surface_sync_cmd {
struct r600_atom atom;
unsigned flush_flags; /* CP_COHER_CNTL */
};
-struct r600_atom_db_misc_state {
+struct r600_db_misc_state {
struct r600_atom atom;
bool occlusion_query_enabled;
bool flush_depthstencil_enabled;
};
-struct r600_atom_eg_strmout_config {
+struct r600_eg_streamout_state {
struct r600_atom atom;
bool rasterizer_discard;
bool stream0_enable;
@@ -287,13 +287,13 @@ struct r600_context {
unsigned default_ps_gprs, default_vs_gprs;
- /* States based on r600_state. */
+ /* States based on r600_atom. */
struct list_head dirty_states;
- struct r600_command_buffer atom_start_cs; /* invariant state mostly */
- struct r600_atom_surface_sync atom_surface_sync;
- struct r600_atom atom_r6xx_flush_and_inv;
- struct r600_atom_db_misc_state atom_db_misc_state;
- struct r600_atom_eg_strmout_config atom_eg_strmout_config;
+ struct r600_command_buffer start_cs_cmd; /* invariant state mostly */
+ struct r600_surface_sync_cmd surface_sync_cmd;
+ struct r600_atom r6xx_flush_and_inv_cmd;
+ struct r600_db_misc_state db_misc_state;
+ struct r600_eg_streamout_state eg_streamout_state;
/* Below are variables from the old r600_context.
*/