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