diff options
Diffstat (limited to 'source/slang/slang-capability.cpp')
| -rw-r--r-- | source/slang/slang-capability.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/slang/slang-capability.cpp b/source/slang/slang-capability.cpp index 0b82cb92c..235e211e5 100644 --- a/source/slang/slang-capability.cpp +++ b/source/slang/slang-capability.cpp @@ -67,6 +67,10 @@ enum class CapabilityAtomConflictMask : uint32_t // Capability atoms that represent GLSL ray tracing extensions conflict with // one another (we only want to use one such extension at a time). RayTracingExtension = 1 << 1, + + // Capability atoms that represent GLSL fragment shader barycentric extensions conflict with + // one another (we only want to use one such extension at a time). + FragmentShaderBarycentricExtension = 1 << 2, }; // For simplicity in building up our data structure representing |
