aboutsummaryrefslogtreecommitdiff
path: root/Test/spv.WorkgroupMemoryExplicitLayout.NonBlock.comp
blob: 38316a50d6b289c64c6d0dcc49650b83c9bc14ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#version 430 core

#extension GL_EXT_shared_memory_block : enable

layout(local_size_x = 8) in;

shared int a;
shared int b;

void main()
{
    a = 2;
    b = 3;
}