diff options
author | Mai <[email protected]> | 2023-05-09 17:33:04 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2023-05-09 17:33:04 -0400 |
commit | 4ab79a8c023aa63caaa93848b09b9fe8b183b1a9 (patch) | |
tree | 2f7269d62d5cc3c8bb0b82de587e3fb43ce3a1fb /src/instructions/extension.cpp | |
parent | ab75463999f4f3291976b079d42d52ee91eebf3f (diff) | |
parent | 18c37509fa44b8c6e4543b5d429fbae5d8fe4e5d (diff) | |
download | sirit-4ab79a8c023aa63caaa93848b09b9fe8b183b1a9.tar.gz sirit-4ab79a8c023aa63caaa93848b09b9fe8b183b1a9.zip |
Implement required ops for Citra
Diffstat (limited to 'src/instructions/extension.cpp')
-rw-r--r-- | src/instructions/extension.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/instructions/extension.cpp b/src/instructions/extension.cpp index 9f7aa43..005c189 100644 --- a/src/instructions/extension.cpp +++ b/src/instructions/extension.cpp @@ -72,5 +72,9 @@ DEFINE_UNARY(OpFindUMsb, GLSLstd450FindUMsb) DEFINE_UNARY(OpInterpolateAtCentroid, GLSLstd450InterpolateAtCentroid) DEFINE_BINARY(OpInterpolateAtSample, GLSLstd450InterpolateAtSample) DEFINE_BINARY(OpInterpolateAtOffset, GLSLstd450InterpolateAtOffset) +DEFINE_UNARY(OpNormalize, GLSLstd450Normalize) +DEFINE_BINARY(OpCross, GLSLstd450Cross) +DEFINE_UNARY(OpLength, GLSLstd450Length) +DEFINE_TRINARY(OpFMix, GLSLstd450FMix) } // namespace Sirit |