mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 06:51:47 +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];
|
extern mplane_t frustum[4];
|
||||||
|
|
||||||
#ifndef IMPLEMENT_R_CullBox
|
#ifndef IMPLEMENT_R_Cull
|
||||||
extern inline
|
extern inline
|
||||||
#endif
|
#endif
|
||||||
qboolean
|
qboolean
|
||||||
|
@ -149,7 +149,7 @@ R_CullBox (const vec3_t mins, const vec3_t maxs)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef IMPLEMENT_R_CullSphere
|
#ifndef IMPLEMENT_R_Cull
|
||||||
extern inline
|
extern inline
|
||||||
#endif
|
#endif
|
||||||
qboolean
|
qboolean
|
||||||
|
|
|
@ -39,8 +39,7 @@ static const char rcsid[] =
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
#define IMPLEMENT_R_CullBox
|
#define IMPLEMENT_R_Cull
|
||||||
#define IMPLEMENT_R_CullSphere
|
|
||||||
|
|
||||||
#include "QF/mathlib.h"
|
#include "QF/mathlib.h"
|
||||||
#include "QF/qtypes.h"
|
#include "QF/qtypes.h"
|
||||||
|
|
Loading…
Reference in a new issue