diff options
author | Daniel Schürmann <[email protected]> | 2018-05-09 20:41:23 +0200 |
---|---|---|
committer | Connor Abbott <[email protected]> | 2019-06-13 12:44:23 +0000 |
commit | 7a858f274c68a93cd3e1259d292e95beec70ba53 (patch) | |
tree | c4f0b959f1b4c7f8df372d5596b46ea387c222f9 /src/compiler/shader_info.h | |
parent | ea51275e07b06b16a952d8108c3a543e38249350 (diff) |
spirv/nir: add support for AMD_shader_ballot and Groups capability
This commit also renames existing AMD capabilities:
- gcn_shader -> amd_gcn_shader
- trinary_minmax -> amd_trinary_minmax
Reviewed-by: Connor Abbott <[email protected]>
Diffstat (limited to 'src/compiler/shader_info.h')
-rw-r--r-- | src/compiler/shader_info.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/compiler/shader_info.h b/src/compiler/shader_info.h index 32d87b234ec..46588c327f9 100644 --- a/src/compiler/shader_info.h +++ b/src/compiler/shader_info.h @@ -45,7 +45,6 @@ struct spirv_supported_capabilities { bool fragment_shader_sample_interlock; bool fragment_shader_pixel_interlock; bool geometry_streams; - bool gcn_shader; bool image_ms_array; bool image_read_without_format; bool image_write_without_format; @@ -72,9 +71,11 @@ struct spirv_supported_capabilities { bool subgroup_vote; bool tessellation; bool transform_feedback; - bool trinary_minmax; bool variable_pointers; bool float16; + bool amd_gcn_shader; + bool amd_shader_ballot; + bool amd_trinary_minmax; }; typedef struct shader_info { |