mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 12:00:05 +00:00
10 lines
222 B
GLSL
10 lines
222 B
GLSL
|
#version 460
|
||
|
#extension GL_EXT_spirv_intrinsics : enable
|
||
|
|
||
|
spirv_instruction (extensions = ["SPV_KHR_non_semantic_info"], set = "NonSemantic.DebugBreak", id = 1)
|
||
|
void debugBreak();
|
||
|
|
||
|
void main() {
|
||
|
debugBreak();
|
||
|
}
|