Skip to content

Commit c2c055f

Browse files
committed
Fix accidental case fallthrough
1 parent 1c7a4c2 commit c2c055f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

renderdoc/driver/shaders/spirv/spirv_debug.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -3111,8 +3111,10 @@ void ThreadState::StepNext(ShaderDebugState *state, const rdcarray<ThreadState>
31113111
break;
31123112
case Op::GroupNonUniformFMin:
31133113
var = MakeIdentity(debugger.GetDataType(opdata.resultType), 0.0f, true, true);
3114+
break;
31143115
case Op::GroupNonUniformFMax:
31153116
var = MakeIdentity(debugger.GetDataType(opdata.resultType), 0.0f, true, false);
3117+
break;
31163118
case Op::GroupNonUniformBitwiseAnd:
31173119
case Op::GroupNonUniformLogicalAnd:
31183120
var = MakeIdentity(debugger.GetDataType(opdata.resultType), uint64_t(~0ULL));

0 commit comments

Comments
 (0)