Sign in
fuchsia
/
third_party
/
spirv-cross
/
87513f9ac025981b33fac7629e29420900cf283d
/
.
/
shaders-msl
/
comp
/
coherent-block.comp
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
);
}