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 #2908 from Biswa96/cmake-spirv-remap
[platform/upstream/glslang.git]
/
Test
/
spv.specConstant.comp
1
#version 450
\r
2
\r
3
layout(local_size_x_id = 18, local_size_z_id = 19) in;
\r
4
layout(local_size_x = 32, local_size_y = 32) in;
\r
5
\r
6
buffer bn {
\r
7
uint a;
\r
8
} bi;
\r
9
\r
10
void main()
\r
11
{
\r
12
bi.a = gl_WorkGroupSize.x * gl_WorkGroupSize.y * gl_WorkGroupSize.z;
\r
13
}
\r