blob: bfb716455d0709c9fa7c1b8b762e28e5a27a323e [file] [log] [blame]
float2 func(inout float2 pointer) {
return pointer;
}
[numthreads(1, 1, 1)]
void main() {
float2x2 F = float2x2(0.0f, 0.0f, 0.0f, 0.0f);
float2 r = func(F[1]);
return;
}