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