blob: c1b6ef8482baab9d81ac8fda2926892327d11d15 [file] [log] [blame]
fn transpose_5c133c() {
const arg_0 = mat4x3(1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0);
var res = transpose(arg_0);
}
@fragment
fn fragment_main() {
transpose_5c133c();
}
@compute @workgroup_size(1)
fn compute_main() {
transpose_5c133c();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
transpose_5c133c();
return out;
}