mirror of
https://github.com/RPCS3/glslang.git
synced 2024-11-27 21:20:30 +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");
|
||
|
}
|