remove R_CullBox as it is now in mathlib.[ch]

This commit is contained in:
Bill Currie 2001-05-08 20:52:12 +00:00
parent b10ea42970
commit 22a1a0d5d3

View file

@ -188,25 +188,6 @@ GL_CheckGamma (unsigned char *pal)
}
/*
=================
R_CullBox
Returns true if the box is completely outside the frustom
=================
*/
qboolean
R_CullBox (vec3_t mins, vec3_t maxs)
{
int i;
for (i = 0; i < 4; i++)
if (BoxOnPlaneSide (mins, maxs, &frustum[i]) == 2)
return true;
return false;
}
void
R_RotateForEntity (entity_t *e)
{