spirv: Enable DemoteToHelperInvocationEXT only when supported

This commit is contained in:
ReinUsesLisp 2021-05-23 04:18:55 -03:00 committed by ameerj
parent cfd873275d
commit 2b434b74af

View File

@ -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);
}