From 49deada730614b9762e11195fd1b23715d2c2a96 Mon Sep 17 00:00:00 2001 From: Hans-Kristian Arntzen Date: Mon, 12 Sep 2022 15:24:34 +0200 Subject: Also consider EmitMeshTasksEXT terminator in spirv-opt. (#4930) Not sure why this is repeated for validation and optimizer, but ... --- source/opcode.cpp | 1 + 1 file changed, 1 insertion(+) 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; -- cgit v1.2.3