blob: ccb64c5b8b8f3231402996b1c32cbb311544a5e1 [file] [log] [blame]
#version 310 es
precision highp float;
precision highp int;
layout(rgba8) uniform highp writeonly image2DArray arg_0;
void textureStore_e38281() {
uvec2 arg_1 = uvec2(1u);
uint arg_2 = 1u;
vec4 arg_3 = vec4(1.0f);
imageStore(arg_0, ivec3(uvec3(arg_1, arg_2)), arg_3.bgra);
}
void fragment_main() {
textureStore_e38281();
}
void main() {
fragment_main();
return;
}
#version 310 es
layout(rgba8) uniform highp writeonly image2DArray arg_0;
void textureStore_e38281() {
uvec2 arg_1 = uvec2(1u);
uint arg_2 = 1u;
vec4 arg_3 = vec4(1.0f);
imageStore(arg_0, ivec3(uvec3(arg_1, arg_2)), arg_3.bgra);
}
void compute_main() {
textureStore_e38281();
}
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void main() {
compute_main();
return;
}