Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
deqp-deps
/
glslang
/
999d4fdcddd3a0ca995a5aff5297831b8f5c4b06
/
.
/
Test
/
spv.debugPrintf_Error.frag
blob: c1980a7fe812d67c1176d0e6cd578464ed17ed6d [
file
] [
log
] [
blame
]
Jeff Bolz
ad3f10b
2020-03-10 10:23:07 -0500
[
diff
] [
blame
]
1
#version 450
2
#extension GL_EXT_debug_printf : enable
3
4
void
main
()
5
{
6
// invalid hex sequence
7
debugPrintfEXT
(
"\xZ"
);
8
9
// not an octal sequence
10
debugPrintfEXT
(
"\8"
);
11
}