projects
/
platform
/
upstream
/
glslang.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request #3031 from rg3igalia/sub-group-size-arb-flat-fix
[platform/upstream/glslang.git]
/
Test
/
spv.debugPrintf.frag
1
#version 450
\r
2
#extension GL_EXT_debug_printf : enable
\r
3
\r
4
void main()
\r
5
{
\r
6
debugPrintfEXT("ASDF \\ \? \x5C %d %d %d", 1, 2, 3);
\r
7
\r
8
// ABA{backspace}Z
\r
9
debugPrintfEXT("\x41\x000042\x41\x8Z");
\r
10
\r
11
// B#${bell, aka \a}B1Z
\r
12
debugPrintfEXT("\102\043\44\7\1021Z");
\r
13
}
\r