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