summaryrefslogtreecommitdiffstats
path: root/source/slang/ir.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/ir.cpp')
-rw-r--r--source/slang/ir.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/source/slang/ir.cpp b/source/slang/ir.cpp
index 664927e8a..599b02ea7 100644
--- a/source/slang/ir.cpp
+++ b/source/slang/ir.cpp
@@ -2954,6 +2954,11 @@ namespace Slang
dump(context, "\n[earlydepthstencil]");
}
break;
+ case kIRDecorationOp_GloballyCoherent:
+ {
+ dump(context, "\n[globallycoherent]");
+ }
+ break;
}
}
}
@@ -5397,6 +5402,11 @@ namespace Slang
context->builder->addDecoration<IREarlyDepthStencilDecoration>(clonedValue);
}
break;
+ case kIRDecorationOp_GloballyCoherent:
+ {
+ context->builder->addDecoration<IRGloballyCoherentDecoration>(clonedValue);
+ }
+ break;
case kIRDecorationOp_VulkanHitAttributes:
{
context->builder->addDecoration<IRVulkanHitAttributesDecoration>(clonedValue);