mirror of
https://github.com/libretro/RetroArch
synced 2025-02-08 15:40:14 +00:00
git-subtree-dir: deps/SPIRV-Cross git-subtree-split: d4b0625cbd7377e720b4fa1d63e6a3c09da5db63
13 lines
163 B
Plaintext
13 lines
163 B
Plaintext
#version 310 es
|
|
layout(local_size_x = 1) in;
|
|
|
|
layout(binding = 1) coherent restrict writeonly buffer SSBO
|
|
{
|
|
vec4 value;
|
|
};
|
|
|
|
void main()
|
|
{
|
|
value = vec4(20.0);
|
|
}
|