blob: c071e3972db6c675b778b9d4fb96ee04dc635845 [file] [log] [blame]
void func(inout float4 pointer) {
pointer = (0.0f).xxxx;
}
[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);
func(F[1]);
return;
}