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