mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
Only need one define for R_Cull*
This commit is contained in:
parent
5e9330ca21
commit
d757c10f07
2 changed files with 3 additions and 4 deletions
|
@ -135,7 +135,7 @@ void RotatePointAroundVector (vec3_t dst, const vec3_t axis,
|
|||
|
||||
extern mplane_t frustum[4];
|
||||
|
||||
#ifndef IMPLEMENT_R_CullBox
|
||||
#ifndef IMPLEMENT_R_Cull
|
||||
extern inline
|
||||
#endif
|
||||
qboolean
|
||||
|
@ -149,7 +149,7 @@ R_CullBox (const vec3_t mins, const vec3_t maxs)
|
|||
return false;
|
||||
}
|
||||
|
||||
#ifndef IMPLEMENT_R_CullSphere
|
||||
#ifndef IMPLEMENT_R_Cull
|
||||
extern inline
|
||||
#endif
|
||||
qboolean
|
||||
|
|
|
@ -39,8 +39,7 @@ static const char rcsid[] =
|
|||
|
||||
#include <math.h>
|
||||
|
||||
#define IMPLEMENT_R_CullBox
|
||||
#define IMPLEMENT_R_CullSphere
|
||||
#define IMPLEMENT_R_Cull
|
||||
|
||||
#include "QF/mathlib.h"
|
||||
#include "QF/qtypes.h"
|
||||
|
|
Loading…
Reference in a new issue