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