defines and ifdefs for R_CullSphere, just like R_CullBox.

This commit is contained in:
Ragnvald Maartmann-Moe IV 2002-08-23 07:04:29 +00:00
parent aa85219dc4
commit 6e8bd2aeb0
2 changed files with 5 additions and 1 deletions

View file

@ -149,7 +149,10 @@ R_CullBox (const vec3_t mins, const vec3_t maxs)
return false;
}
extern inline qboolean
#ifndef IMPLEMENT_R_CullSphere
extern inline
#endif
qboolean
R_CullSphere (const vec3_t origin, const float radius)
{
int i;

View file

@ -40,6 +40,7 @@ static const char rcsid[] =
#include <math.h>
#define IMPLEMENT_R_CullBox
#define IMPLEMENT_R_CullSphere
#include "QF/mathlib.h"
#include "QF/qtypes.h"