diff options
author | Samuel Pitoiset <[email protected]> | 2017-12-14 16:48:02 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-12-14 22:22:04 +0100 |
commit | e0019444104722e8084aa76a090af5fbaeb77943 (patch) | |
tree | aae81668c3fdc86dfe6f5bbe13f7e35e278755cb /src/amd/common/ac_shader_info.h | |
parent | 42285ed8c33c163914224719a5dabb54229046a9 (diff) |
amd/common: scan which components of gl_LocalInvocationID are used
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/common/ac_shader_info.h')
-rw-r--r-- | src/amd/common/ac_shader_info.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/amd/common/ac_shader_info.h b/src/amd/common/ac_shader_info.h index 7beefd02ac5..0136d5af403 100644 --- a/src/amd/common/ac_shader_info.h +++ b/src/amd/common/ac_shader_info.h @@ -44,6 +44,7 @@ struct ac_shader_info { struct { bool uses_grid_size; bool uses_block_id[3]; + bool uses_thread_id[3]; } cs; }; |