blob: 0a174e8ef016a871b06b8f2f0c26d579e264d095 [file] [log] [blame]
#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);
}