blob: 3f9c7a659f248eda8cb19db161e1c3ce146a6f71 [file] [log] [blame]
@group(0) @binding(0) var<storage, read_write> prevent_dce : u32;
@group(1) @binding(0) var arg_0 : texture_storage_2d_array<bgra8unorm, read_write>;
fn textureNumLayers_a54655() -> u32 {
var res : u32 = textureNumLayers(arg_0);
return res;
}
@fragment
fn fragment_main() {
prevent_dce = textureNumLayers_a54655();
}
@compute @workgroup_size(1)
fn compute_main() {
prevent_dce = textureNumLayers_a54655();
}