Sign in
fuchsia
/
third_party
/
glslang
/
refs/heads/sandbox/liyl/SDK-candidate-2-withEnumFix
/
.
/
Test
/
spv.debugPrintf_Error.frag
blob: c1980a7fe812d67c1176d0e6cd578464ed17ed6d [
file
] [
log
] [
blame
] [
edit
]
#version 450
#extension GL_EXT_debug_printf : enable
void
main
()
{
// invalid hex sequence
debugPrintfEXT
(
"\xZ"
);
// not an octal sequence
debugPrintfEXT
(
"\8"
);
}