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 #2976 from jeremy-lunarg/hayes-fix-2975
[platform/upstream/glslang.git]
/
Test
/
spv.subgroup.vert
1
#version 450
\r
2
#extension GL_KHR_shader_subgroup_basic: enable
\r
3
layout(set = 0, binding = 0, std430) buffer Output
\r
4
{
\r
5
uvec4 result[];
\r
6
};
\r
7
\r
8
void main (void)
\r
9
{
\r
10
result[gl_VertexIndex] = uvec4(gl_SubgroupSize, gl_SubgroupInvocationID, 0, 0);
\r
11
}
\r