blob: 74c4735127b2fc16fe367a7d358044851472077d [file] [log] [blame]
void func(inout float4 pointer) {
pointer = (0.0f).xxxx;
}
[numthreads(1, 1, 1)]
void main() {
float4 F = float4(0.0f, 0.0f, 0.0f, 0.0f);
func(F);
return;
}