mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
12 lines
192 B
GLSL
12 lines
192 B
GLSL
#version 450
|
|
#extension GL_EXT_debug_printf : enable
|
|
|
|
void main()
|
|
{
|
|
// invalid hex sequence
|
|
debugPrintfEXT("\xZ");
|
|
|
|
// not an octal sequence
|
|
debugPrintfEXT("\8");
|
|
}
|