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.WorkgroupMemoryExplicitLayout.8BitAccess.comp
1
#version 430 core
2
3
#extension GL_EXT_shared_memory_block : enable
4
#extension GL_EXT_shader_explicit_arithmetic_types: enable
5
6
layout(local_size_x = 2) in;
7
8
shared first
9
{
10
int8_t a;
11
};
12
13
void main()
14
{
15
a = int8_t(2);
16
}