Sign in
flutter
/
third_party
/
glslang
/
b53185b34e298b112153b630f1b49ed3a36fcfb2
/
.
/
Test
/
spv.debugPrintf_Error.frag
blob: c1980a7fe812d67c1176d0e6cd578464ed17ed6d [
file
]
#version 450
#extension GL_EXT_debug_printf : enable
void
main
()
{
// invalid hex sequence
debugPrintfEXT
(
"\xZ"
);
// not an octal sequence
debugPrintfEXT
(
"\8"
);
}