diff options
author | Tom Stellard <[email protected]> | 2012-06-25 17:56:01 +0000 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-07-09 13:41:17 +0000 |
commit | 5016fe2d47a08ce2cd7c597e67862086e7d63b64 (patch) | |
tree | bc1e28598b9080720db25bb53437bc196c490785 /src/gallium/drivers/r600/r600_pipe.h | |
parent | 38be0966c7e58fb3017c222cf416ae2bdc0bee3d (diff) |
r600g: Add start_compute_cs atom to struct r600_context
The start_compute_cs atom initializes some config and context registers
to the values needed for running compute shaders. When a compute shader
is dispatched, this atom is emitted after the start_cs_cmd atom, which
initializes registers that are common to both 3D and compute.
Reviewed-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 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h index cd67ee11e4e..63eeab316fc 100644 --- a/src/gallium/drivers/r600/r600_pipe.h +++ b/src/gallium/drivers/r600/r600_pipe.h @@ -324,6 +324,9 @@ struct r600_context { /* States based on r600_atom. */ struct list_head dirty_states; struct r600_command_buffer start_cs_cmd; /* invariant state mostly */ + /** Compute specific registers initializations. The start_cs_cmd atom + * must be emitted before start_compute_cs_cmd. */ + struct r600_command_buffer start_compute_cs_cmd; struct r600_surface_sync_cmd surface_sync_cmd; struct r600_atom r6xx_flush_and_inv_cmd; struct r600_db_misc_state db_misc_state; |