blob: 693b097da91e01ad4425c643659124d55b290e94 [file] [log] [blame]
@stage(compute) @workgroup_size(1)
fn f() {
let a = mat3x3<f32>(vec3<f32>( 1., 2., 3.), vec3<f32>( 4., 5., 6.), vec3<f32>( 7., 8., 9.));
let b = mat3x3<f32>(vec3<f32>(-1., -2., -3.), vec3<f32>(-4., -5., -6.), vec3<f32>(-7., -8., -9.));
let r : mat3x3<f32> = a * b;
}