diff options
author | Michel Dänzer <[email protected]> | 2014-01-22 17:32:09 +0900 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2014-01-29 11:08:43 +0900 |
commit | b4e14931a941f24dbd11d24653754acb48a95963 (patch) | |
tree | 6dfca91c7092111b328b9ca1087eb0d6c978c67f /src/gallium/drivers/radeonsi/si_state.h | |
parent | 67e385b3b79e86507211442152072cb86fc834fd (diff) |
radeonsi: Pass VS resource descriptors to the HW ES shader stage as well
This makes sure constants and samplers work in the vertex shader even
when a geometry shader is active.
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 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeonsi/si_state.h b/src/gallium/drivers/radeonsi/si_state.h index e24c0bb0cce..f7082f5df43 100644 --- a/src/gallium/drivers/radeonsi/si_state.h +++ b/src/gallium/drivers/radeonsi/si_state.h @@ -114,8 +114,11 @@ union si_state { #define NUM_SAMPLER_VIEWS (FMASK_TEX_OFFSET+NUM_TEX_UNITS) #define NUM_SAMPLER_STATES NUM_TEX_UNITS -#define NUM_PIPE_CONST_BUFFERS 16 -#define NUM_CONST_BUFFERS 19 +#define NUM_PIPE_CONST_BUFFERS 16 +#define SI_RING_ESGS 17 +#define SI_RING_GSVS 18 +#define NUM_CONST_BUFFERS (SI_RING_GSVS + 1) + /* This represents resource descriptors in memory, such as buffer resources, * image resources, and sampler states. |