dawn-cmake/test/tint/access/let/matrix.spvasm.expected.wgsl

10 lines
213 B
WebGPU Shading Language
Raw Normal View History

fn main_1() {
let x_24 : f32 = mat3x3<f32>(vec3<f32>(1.0, 2.0, 3.0), vec3<f32>(4.0, 5.0, 6.0), vec3<f32>(7.0, 8.0, 9.0))[1u].y;
return;
}
@stage(compute) @workgroup_size(1i, 1i, 1i)
fn main() {
main_1();
}