2021-06-10 18:49:14 +00:00
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void unused_entry_point() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-16 09:19:36 +00:00
|
|
|
void f() {
|
2022-06-01 13:14:39 +00:00
|
|
|
const float4x4 m = float4x4((1.0f).xxxx, (1.0f).xxxx, (1.0f).xxxx, (1.0f).xxxx);
|
2022-06-29 00:55:36 +00:00
|
|
|
const float4 v1 = m[0];
|
|
|
|
const float a = v1[0];
|
2021-06-16 09:19:36 +00:00
|
|
|
}
|