blob: 6c9b6fcde5bd1b14947c34a5dfc51c53d44af3ea [file] [log] [blame]
void func(inout float2 pointer) {
pointer = (0.0f).xx;
}
static float2x2 P = float2x2(0.0f, 0.0f, 0.0f, 0.0f);
[numthreads(1, 1, 1)]
void main() {
func(P[1]);
return;
}