diff options
Diffstat (limited to 'src/compiler/shader_info.h')
-rw-r--r-- | src/compiler/shader_info.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/compiler/shader_info.h b/src/compiler/shader_info.h index 115dd01e2b9..15150aa9b2e 100644 --- a/src/compiler/shader_info.h +++ b/src/compiler/shader_info.h @@ -158,6 +158,13 @@ typedef struct shader_info { /* Which inputs are doubles */ uint64_t double_inputs; + /* For AMD-specific driver-internal shaders. It replaces vertex + * buffer loads with code generating VS inputs from scalar registers. + * + * Valid values: SI_VS_BLIT_SGPRS_POS_* + */ + unsigned blit_sgprs_amd; + /* True if the shader writes position in window space coordinates pre-transform */ bool window_space_position; } vs; |