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