blob: 65a1ae2cd92cf24483f93f1a67aad8245542d8aa [file] [log] [blame]
@group(1) @binding(0) var arg_0 : texture_2d_array<u32>;
fn textureNumLayers_8ac32a() {
var res : u32 = textureNumLayers(arg_0);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
textureNumLayers_8ac32a();
return vec4<f32>();
}
@fragment
fn fragment_main() {
textureNumLayers_8ac32a();
}
@compute @workgroup_size(1)
fn compute_main() {
textureNumLayers_8ac32a();
}