blob: 1c78a5b0fc23945540d304c0045abf74719464b2 [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<rgba16uint, write>;
fn textureNumLayers_014a3b() -> u32 {
var res : u32 = textureNumLayers(arg_0);
return res;
}
@fragment
fn fragment_main() {
prevent_dce = textureNumLayers_014a3b();
}
@compute @workgroup_size(1)
fn compute_main() {
prevent_dce = textureNumLayers_014a3b();
}