blob: 35e3f879f4973660683cffb49f4c05714b06f87f [file] [log] [blame]
David Neto1e19b552021-06-17 09:10:04 +00001void main_1() {
Ben Claytone9f8b092022-06-01 13:14:39 +00002 float3x3 m = float3x3((0.0f).xxx, (0.0f).xxx, (0.0f).xxx);
Ben Clayton06aa88a2021-05-19 19:16:32 +00003 m = float3x3(float3(1.0f, 2.0f, 3.0f), float3(4.0f, 5.0f, 6.0f), float3(7.0f, 8.0f, 9.0f));
Ben Claytone9f8b092022-06-01 13:14:39 +00004 m[1] = (5.0f).xxx;
Ben Clayton06aa88a2021-05-19 19:16:32 +00005 return;
6}
David Neto1e19b552021-06-17 09:10:04 +00007
8[numthreads(1, 1, 1)]
9void main() {
10 main_1();
11 return;
12}