diff options
author | Michel Dänzer <[email protected]> | 2014-01-28 15:39:30 +0900 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2014-01-29 11:09:26 +0900 |
commit | f8e16010e51eef19ed7030ac7248438f729ae511 (patch) | |
tree | 2674d7e39e78bcc5b6696105829c6bb84acc2d3e /src/gallium/drivers/radeonsi/si_state.h | |
parent | d7c68e2dc1e08350ce5eb35bc0b20258a50f0dfb (diff) |
radeonsi: Put GS ring buffer descriptors with streamout buffer descriptors
And mark the constant buffers as read only for the GPU again.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_state.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_state.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/radeonsi/si_state.h b/src/gallium/drivers/radeonsi/si_state.h index f7082f5df43..6922c88e07c 100644 --- a/src/gallium/drivers/radeonsi/si_state.h +++ b/src/gallium/drivers/radeonsi/si_state.h @@ -115,10 +115,10 @@ union si_state { #define NUM_SAMPLER_STATES NUM_TEX_UNITS #define NUM_PIPE_CONST_BUFFERS 16 -#define SI_RING_ESGS 17 -#define SI_RING_GSVS 18 -#define NUM_CONST_BUFFERS (SI_RING_GSVS + 1) +#define NUM_CONST_BUFFERS (NUM_PIPE_CONST_BUFFERS + 1) +#define SI_RING_ESGS 0 +#define SI_RING_GSVS 1 /* This represents resource descriptors in memory, such as buffer resources, * image resources, and sampler states. |