blob: 81188f8061668d4a3988ddff85561dcc77d1c77c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//TEST:SIMPLE(filecheck=CHECK): -target spirv -emit-spirv-directly -entry main -stage compute -matrix-layout-row-major
// CHECK: ColMajor
typedef column_major float3x4 Mat;
RWStructuredBuffer<float> output;
[numthreads(1,1,1)]
void main(uniform Mat m)
{
output[0] = m[0][0];
}
|