Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/SPIRV-Tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Kristian Arntzen <post@arntzen-software.no>2022-09-12 16:24:34 +0300
committerGitHub <noreply@github.com>2022-09-12 16:24:34 +0300
commit49deada730614b9762e11195fd1b23715d2c2a96 (patch)
tree85107b427b5a428e60fa23c4291021d543253193
parentfb27bbf3077f92cc1a8a55777bce2810a94079cf (diff)
Also consider EmitMeshTasksEXT terminator in spirv-opt. (#4930)
Not sure why this is repeated for validation and optimizer, but ...
-rw-r--r--source/opcode.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/opcode.cpp b/source/opcode.cpp
index e3797b707..88c5c51b9 100644
--- a/source/opcode.cpp
+++ b/source/opcode.cpp
@@ -453,6 +453,7 @@ bool spvOpcodeIsAbort(SpvOp opcode) {
case SpvOpTerminateInvocation:
case SpvOpTerminateRayKHR:
case SpvOpIgnoreIntersectionKHR:
+ case SpvOpEmitMeshTasksEXT:
return true;
default:
return false;