Home | Info | Community | Development | myReactOS | Contact Us
[static]
Clip a point against the far/near Z clipping planes.
Definition at line 70 of file t_rasterpos.c.
Referenced by _tnl_RasterPos().
{ if (v[2] > v[3] || v[2] < -v[3] ) { return 0; } else { return 1; } }