diff options
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_shader.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_shader.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/gallium/drivers/radeonsi/si_shader.h b/src/gallium/drivers/radeonsi/si_shader.h index 81997c0b586..6891604db6c 100644 --- a/src/gallium/drivers/radeonsi/si_shader.h +++ b/src/gallium/drivers/radeonsi/si_shader.h @@ -36,10 +36,11 @@ #define SI_SGPR_RESOURCE 4 #define SI_SGPR_RW_BUFFERS 6 /* rings (& stream-out, VS only) */ #define SI_SGPR_VERTEX_BUFFER 8 /* VS only */ -#define SI_SGPR_START_INSTANCE 10 /* VS only */ +#define SI_SGPR_BASE_VERTEX 10 /* VS only */ +#define SI_SGPR_START_INSTANCE 11 /* VS only */ #define SI_SGPR_ALPHA_REF 8 /* PS only */ -#define SI_VS_NUM_USER_SGPR 11 +#define SI_VS_NUM_USER_SGPR 12 #define SI_GS_NUM_USER_SGPR 8 #define SI_PS_NUM_USER_SGPR 9 @@ -51,11 +52,12 @@ /* VS only parameters */ #define SI_PARAM_VERTEX_BUFFER 4 -#define SI_PARAM_START_INSTANCE 5 +#define SI_PARAM_BASE_VERTEX 5 +#define SI_PARAM_START_INSTANCE 6 /* the other VS parameters are assigned dynamically */ /* ES only parameters */ -#define SI_PARAM_ES2GS_OFFSET 6 +#define SI_PARAM_ES2GS_OFFSET 7 /* GS only parameters */ #define SI_PARAM_GS2VS_OFFSET 4 |