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 #2892 from greg-lunarg/mb
[platform/upstream/glslang.git]
/
Test
/
spv.WorkgroupMemoryExplicitLayout.NonBlock.comp
1
#version 430 core
2
3
#extension GL_EXT_shared_memory_block : enable
4
5
layout(local_size_x = 8) in;
6
7
shared int a;
8
shared int b;
9
10
void main()
11
{
12
a = 2;
13
b = 3;
14
}