Sign in
chromium
/
external
/
github.com
/
KhronosGroup
/
glslang
/
HEAD
/
.
/
Test
/
iomap.atomicCounter.frag
blob: d8d1a58c82ddb90e43dd8871c3cc531c48d85692 [
file
]
#version 460
layout
(
binding
=
0
,
offset
=
0
)
uniform atomic_uint counter
;
layout
(
location
=
0
)
out
vec4
Output
;
void
main
()
{
Output
=
vec4
(
float
(
atomicCounter
(
counter
)));
}