diff options
author | Samuel Pitoiset <[email protected]> | 2017-12-14 16:48:01 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-12-14 22:22:02 +0100 |
commit | 42285ed8c33c163914224719a5dabb54229046a9 (patch) | |
tree | 413cdd5e3fb17bde4c644bb79a46022caadc9c0e /src/amd/common/ac_shader_info.h | |
parent | 5a761167f53b53569a6d55d9436bdfec071b2b17 (diff) |
amd/common: scan which components of gl_WorkGroupID 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 3c809cce13a..7beefd02ac5 100644 --- a/src/amd/common/ac_shader_info.h +++ b/src/amd/common/ac_shader_info.h @@ -43,6 +43,7 @@ struct ac_shader_info { } ps; struct { bool uses_grid_size; + bool uses_block_id[3]; } cs; }; |