aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/instructions/arithmetic.cpp
diff options
context:
space:
mode:
authorMai <[email protected]>2023-05-09 17:33:04 -0400
committerGitHub <[email protected]>2023-05-09 17:33:04 -0400
commit4ab79a8c023aa63caaa93848b09b9fe8b183b1a9 (patch)
tree2f7269d62d5cc3c8bb0b82de587e3fb43ce3a1fb /src/instructions/arithmetic.cpp
parentab75463999f4f3291976b079d42d52ee91eebf3f (diff)
parent18c37509fa44b8c6e4543b5d429fbae5d8fe4e5d (diff)
downloadsirit-master.tar.gz
sirit-master.zip
Merge pull request #2 from GPUCode/masterHEADmaster
Implement required ops for Citra
Diffstat (limited to 'src/instructions/arithmetic.cpp')
-rw-r--r--src/instructions/arithmetic.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/instructions/arithmetic.cpp b/src/instructions/arithmetic.cpp
index 4fa8057..ab62177 100644
--- a/src/instructions/arithmetic.cpp
+++ b/src/instructions/arithmetic.cpp
@@ -40,5 +40,7 @@ DEFINE_BINARY(OpFMod, spv::Op::OpFMod)
DEFINE_BINARY(OpSRem, spv::Op::OpSRem)
DEFINE_BINARY(OpFRem, spv::Op::OpFRem)
DEFINE_BINARY(OpIAddCarry, spv::Op::OpIAddCarry)
+DEFINE_BINARY(OpVectorTimesScalar, spv::Op::OpVectorTimesScalar)
+DEFINE_BINARY(OpDot, spv::Op::OpDot)
} // namespace Sirit