From: havoc Date: Thu, 10 Jul 2003 04:30:53 +0000 (+0000) Subject: #if 0'd out a few unused functions X-Git-Tag: xonotic-v0.1.0preview~6550 X-Git-Url: https://de.git.xonotic.org/?a=commitdiff_plain;h=9a92c162766f97f86ca5ad08771adb11a1e6bee4;p=xonotic%2Fdarkplaces.git #if 0'd out a few unused functions git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3224 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/mathlib.c b/mathlib.c index e55de853..83f39a82 100644 --- a/mathlib.c +++ b/mathlib.c @@ -112,6 +112,7 @@ float m_bytenormals[NUMVERTEXNORMALS][3] = {-0.587785, -0.425325, -0.688191}, {-0.688191, -0.587785, -0.425325}, }; +#if 0 qbyte NormalToByte(const vec3_t n) { int i, best; @@ -151,7 +152,6 @@ float Q_RSqrt(float number) return y * (1.5f - (number * 0.5f * y * y)); } - // assumes "src" is normalized void PerpendicularVector( vec3_t dst, const vec3_t src ) { @@ -202,6 +202,7 @@ void PerpendicularVector( vec3_t dst, const vec3_t src ) dst[2] = 0; } } +#endif // LordHavoc: like AngleVectors, but taking a forward vector instead of angles, useful! @@ -271,19 +272,9 @@ void RotatePointAroundVector( vec3_t dst, const vec3_t dir, const vec3_t point, /*-----------------------------------------------------------------*/ -void BoxOnPlaneSideClassify(mplane_t *p) -{ - p->signbits = 0; - if (p->normal[0] < 0) // 1 - p->signbits |= 1; - if (p->normal[1] < 0) // 2 - p->signbits |= 2; - if (p->normal[2] < 0) // 4 - p->signbits |= 4; -} - void PlaneClassify(mplane_t *p) { + // for optimized plane comparisons if (p->normal[0] == 1) p->type = 0; else if (p->normal[1] == 1) @@ -292,7 +283,14 @@ void PlaneClassify(mplane_t *p) p->type = 2; else p->type = 3; - BoxOnPlaneSideClassify(p); + // for BoxOnPlaneSide + p->signbits = 0; + if (p->normal[0] < 0) // 1 + p->signbits |= 1; + if (p->normal[1] < 0) // 2 + p->signbits |= 2; + if (p->normal[2] < 0) // 4 + p->signbits |= 4; } int BoxOnPlaneSide (const vec3_t emins, const vec3_t emaxs, const mplane_t *p) @@ -393,6 +391,7 @@ void AngleVectorsFLU (const vec3_t angles, vec3_t forward, vec3_t left, vec3_t u } } +#if 0 void AngleMatrix (const vec3_t angles, const vec3_t translate, vec_t matrix[][4]) { double angle, sr, sp, sy, cr, cp, cy; @@ -419,6 +418,7 @@ void AngleMatrix (const vec3_t angles, const vec3_t translate, vec_t matrix[][4] matrix[2][2] = cr*cp; matrix[2][3] = translate[2]; } +#endif // LordHavoc: renamed this to Length, and made the normal one a #define diff --git a/model_brush.c b/model_brush.c index 10cd3564..f196dd28 100644 --- a/model_brush.c +++ b/model_brush.c @@ -1183,6 +1183,7 @@ static void Mod_Q1BSP_LoadTexinfo(lump_t *l) } } +#if 0 void BoundPoly(int numverts, float *verts, vec3_t mins, vec3_t maxs) { int i, j; @@ -1203,7 +1204,6 @@ void BoundPoly(int numverts, float *verts, vec3_t mins, vec3_t maxs) } } -#if 0 #define MAX_SUBDIVPOLYTRIANGLES 4096 #define MAX_SUBDIVPOLYVERTS(MAX_SUBDIVPOLYTRIANGLES * 3) diff --git a/palette.c b/palette.c index 1a481e3f..1e427e03 100644 --- a/palette.c +++ b/palette.c @@ -110,7 +110,7 @@ void Palette_Setup8to24(void) palette_font[255] = 0; } - +#if 0 void BuildGammaTable8(float prescale, float gamma, float scale, float base, qbyte *out) { int i, adjusted; @@ -137,6 +137,7 @@ void BuildGammaTable8(float prescale, float gamma, float scale, float base, qbyt } } } +#endif void BuildGammaTable16(float prescale, float gamma, float scale, float base, unsigned short *out) {