diff options
author | GPUCode <[email protected]> | 2022-11-06 21:02:05 +0200 |
---|---|---|
committer | GPUCode <[email protected]> | 2023-05-09 17:18:45 +0300 |
commit | e0d528d7bfc638684afebd9b4b0272be8ca80c89 (patch) | |
tree | 7c8393737e61a71cd8173f1170e4148a6fff379e /src/instructions/extension.cpp | |
parent | ab75463999f4f3291976b079d42d52ee91eebf3f (diff) | |
download | sirit-e0d528d7bfc638684afebd9b4b0272be8ca80c89.tar.gz sirit-e0d528d7bfc638684afebd9b4b0272be8ca80c89.zip |
Add missing GLSL instructions
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 |