Sign in
flutter
/
third_party
/
glslang
/
refs/heads/upstream/vulkan-sdk-1.4.350
/
.
/
Test
/
link.vk.multiUnitLayout.0.comp
blob: 8503ebfd316eb054f0409ca44f957e3826bdb268 [
file
] [
edit
]
#version 450 core
layout
(
local_size_x_id
=
0
,
local_size_y
=
1
,
local_size_z
=
1
)
in
;
void
do_compute
(
uint
index
);
void
main
()
{
do_compute
(
gl_GlobalInvocationID
.
x
);
}