aboutsummaryrefslogtreecommitdiff
path: root/source/ext_inst.cpp
diff options
context:
space:
mode:
authorDejan Mircevski <deki@google.com>2015-08-27 11:23:54 -0400
committerDavid Neto <dneto@google.com>2015-10-26 12:52:01 -0400
commitc48fcce97840b94305186e16b9ab876a49d4bd48 (patch)
tree53e454d65d79206e2a786f814e90b0505530746d /source/ext_inst.cpp
parentdca65b3f8c4ae06a473e45f388153db638fb8a35 (diff)
downloadspirv-tools-c48fcce97840b94305186e16b9ab876a49d4bd48.tar.gz
Add std450 instructions 49-52.
Diffstat (limited to 'source/ext_inst.cpp')
-rw-r--r--source/ext_inst.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/ext_inst.cpp b/source/ext_inst.cpp
index 7d231d67..fcbda850 100644
--- a/source/ext_inst.cpp
+++ b/source/ext_inst.cpp
@@ -66,6 +66,10 @@ static const spv_ext_inst_desc_t glslStd450Entries[] = {
// clang-format off
{"Smoothstep", GLSLstd450::GLSLstd450SmoothStep, {SPV_OPERAND_TYPE_ID, SPV_OPERAND_TYPE_ID, SPV_OPERAND_TYPE_ID}},
// clang-format on
+ {GL450InstWithThreeIdParam(Fma)},
+ {GL450InstWithTwoIdParam(Frexp)},
+ {GL450InstWithOneIdParam(FrexpStruct)},
+ {GL450InstWithTwoIdParam(Ldexp)},
// TODO: Add remaining GLSL.std.450 instructions
};