blob: 8aadc59b0a06831bcc1edd15ad8f1fc45920099f [file] [log] [blame]
#version 310 es
precision highp float;
precision highp int;
layout(binding = 0, std430) buffer prevent_dce_block_ssbo {
uint inner;
} prevent_dce;
layout(binding = 0, rgba32ui) uniform highp writeonly uimage2DArray arg_0;
uint textureNumLayers_9695c6() {
uint res = uint(imageSize(arg_0).z);
return res;
}
void fragment_main() {
prevent_dce.inner = textureNumLayers_9695c6();
}
void main() {
fragment_main();
return;
}
#version 310 es
layout(binding = 0, std430) buffer prevent_dce_block_ssbo {
uint inner;
} prevent_dce;
layout(binding = 0, rgba32ui) uniform highp writeonly uimage2DArray arg_0;
uint textureNumLayers_9695c6() {
uint res = uint(imageSize(arg_0).z);
return res;
}
void compute_main() {
prevent_dce.inner = textureNumLayers_9695c6();
}
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void main() {
compute_main();
return;
}