blob: 7a92b371d084443eea59275a5a5fdb53f8b1ff7f [file] [log] [blame]
@group(1) @binding(0) var arg_0 : texture_2d_array<f32>;
fn textureDimensions_cec841() {
var res : vec2<i32> = textureDimensions(arg_0);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
textureDimensions_cec841();
return vec4<f32>();
}
@fragment
fn fragment_main() {
textureDimensions_cec841();
}
@compute @workgroup_size(1)
fn compute_main() {
textureDimensions_cec841();
}