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