Просмотр исходного кода

spirv: Enable DemoteToHelperInvocationEXT only when supported

ReinUsesLisp 5 лет назад
Родитель
Сommit
2b434b74af
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/shader_recompiler/backend/spirv/emit_spirv.cpp

+ 1 - 1
src/shader_recompiler/backend/spirv/emit_spirv.cpp

@@ -296,7 +296,7 @@ void SetupCapabilities(const Profile& profile, const Info& info, EmitContext& ct
     if (info.uses_sparse_residency) {
         ctx.AddCapability(spv::Capability::SparseResidency);
     }
-    if (info.uses_demote_to_helper_invocation) {
+    if (info.uses_demote_to_helper_invocation && profile.support_demote_to_helper_invocation) {
         ctx.AddExtension("SPV_EXT_demote_to_helper_invocation");
         ctx.AddCapability(spv::Capability::DemoteToHelperInvocationEXT);
     }