dawn-cmake/test/tint/builtins/gen/var/transpose/84a763.wgsl.expected.wgsl

21 lines
355 B
WebGPU Shading Language
Raw Normal View History

fn transpose_84a763() {
const arg_0 = mat2x4(1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0);
var res = transpose(arg_0);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
transpose_84a763();
return vec4<f32>();
}
@fragment
fn fragment_main() {
transpose_84a763();
}
@compute @workgroup_size(1)
fn compute_main() {
transpose_84a763();
}