blob: 4c37479f96b0b4895cd393ba2a56f45d5f590a09 [file] [log] [blame]
@group(1) @binding(0) var arg_0 : texture_storage_2d_array<r32float, write>;
fn textureDimensions_e9e96c() {
var res : vec2<i32> = textureDimensions(arg_0);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
textureDimensions_e9e96c();
return vec4<f32>();
}
@fragment
fn fragment_main() {
textureDimensions_e9e96c();
}
@compute @workgroup_size(1)
fn compute_main() {
textureDimensions_e9e96c();
}