Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
deqp-deps
/
glslang
/
9724ee42df38043ec33eae4ed3b362a38b7b81e7
/
.
/
Test
/
spv.WorkgroupMemoryExplicitLayout.NonBlock.comp
blob: 38316a50d6b289c64c6d0dcc49650b83c9bc14ac [
file
] [
log
] [
blame
]
#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
;
}