diff options
author | Marek Olšák <[email protected]> | 2012-07-07 19:33:11 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-07-12 02:08:30 +0200 |
commit | df79eb59566f20a7fa8e11d87b63b81ec35eaf25 (patch) | |
tree | da4ab64991376d759fbe0b2ec8cc9924d284f3a4 /src/gallium/drivers/r600/r600_pipe.h | |
parent | 43e3f19c766863a655bb9f7c04f7820cbda0c8f5 (diff) |
r600g: remove is_flush from DSA state
we can just update the state when decompressing, there's no need to add
additional info into the DSA state
Reviewed-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h index 608cb101241..6e08cbff3d4 100644 --- a/src/gallium/drivers/r600/r600_pipe.h +++ b/src/gallium/drivers/r600/r600_pipe.h @@ -79,7 +79,7 @@ struct r600_surface_sync_cmd { struct r600_db_misc_state { struct r600_atom atom; bool occlusion_query_enabled; - bool flush_depthstencil_enabled; + bool flush_depthstencil_through_cb; }; struct r600_cb_misc_state { @@ -182,7 +182,6 @@ struct r600_pipe_dsa { unsigned alpha_ref; ubyte valuemask[2]; ubyte writemask[2]; - bool is_flush; unsigned sx_alpha_test_control; }; |