diff options
Diffstat (limited to 'src/shader_recompiler/backend/glasm')
| -rw-r--r-- | src/shader_recompiler/backend/glasm/emit_glasm.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm.cpp b/src/shader_recompiler/backend/glasm/emit_glasm.cpp index 51ca83d18..fa48ba25c 100644 --- a/src/shader_recompiler/backend/glasm/emit_glasm.cpp +++ b/src/shader_recompiler/backend/glasm/emit_glasm.cpp | |||
| @@ -218,15 +218,16 @@ void SetupOptions(std::string& header, Info info) { | |||
| 218 | if (info.uses_atomic_f16x2_add || info.uses_atomic_f16x2_min || info.uses_atomic_f16x2_max) { | 218 | if (info.uses_atomic_f16x2_add || info.uses_atomic_f16x2_min || info.uses_atomic_f16x2_max) { |
| 219 | header += "OPTION NV_shader_atomic_fp16_vector;"; | 219 | header += "OPTION NV_shader_atomic_fp16_vector;"; |
| 220 | } | 220 | } |
| 221 | if (info.uses_subgroup_invocation_id || info.uses_subgroup_mask) { | 221 | if (info.uses_subgroup_invocation_id || info.uses_subgroup_mask || info.uses_subgroup_vote) { |
| 222 | header += "OPTION NV_shader_thread_group;"; | 222 | header += "OPTION NV_shader_thread_group;"; |
| 223 | } | 223 | } |
| 224 | if (info.uses_subgroup_shuffles) { | 224 | if (info.uses_subgroup_shuffles) { |
| 225 | header += "OPTION NV_shader_thread_shuffle;"; | 225 | header += "OPTION NV_shader_thread_shuffle;"; |
| 226 | } | 226 | } |
| 227 | // TODO: Track the shared atomic ops | 227 | // TODO: Track the shared atomic ops |
| 228 | header += | 228 | header += "OPTION NV_shader_storage_buffer;" |
| 229 | "OPTION NV_shader_storage_buffer;OPTION NV_gpu_program_fp64;OPTION NV_bindless_texture;"; | 229 | "OPTION NV_gpu_program_fp64;" |
| 230 | "OPTION NV_bindless_texture;"; | ||
| 230 | } | 231 | } |
| 231 | } // Anonymous namespace | 232 | } // Anonymous namespace |
| 232 | 233 | ||