MCPcopy Create free account
hub / github.com/InoriRus/Kyty / spvOpcodeIsDecoration

Function spvOpcodeIsDecoration

source/3rdparty/vulkan/source/opcode.cpp:351–365  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

349}
350
351bool spvOpcodeIsDecoration(const SpvOp opcode) {
352 switch (opcode) {
353 case SpvOpDecorate:
354 case SpvOpDecorateId:
355 case SpvOpMemberDecorate:
356 case SpvOpGroupDecorate:
357 case SpvOpGroupMemberDecorate:
358 case SpvOpDecorateStringGOOGLE:
359 case SpvOpMemberDecorateStringGOOGLE:
360 return true;
361 default:
362 break;
363 }
364 return false;
365}
366
367bool spvOpcodeIsLoad(const SpvOp opcode) {
368 switch (opcode) {

Callers 8

HandleInstructionMethod · 0.85
ValidateTypeFunctionFunction · 0.85
IdPassFunction · 0.85
SimplifyFunctionMethod · 0.85
IsDecorationMethod · 0.85
IsValidUseMethod · 0.85
UpdateUseMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected