blob: c0859022d60d71033eed822a4f3824c0fa588a41 [file] [log] [blame]
static float4 P = (0.0f).xxxx;
void func(inout float4 pointer) {
pointer = (0.0f).xxxx;
}
[numthreads(1, 1, 1)]
void main() {
func(P);
}