mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 12:52:46 +00:00
remove some dead code
This commit is contained in:
parent
4c628d0c04
commit
025d520522
1 changed files with 0 additions and 20 deletions
|
@ -115,10 +115,6 @@ static adivtab_t adivtab[32 * 32] = {
|
|||
#include "adivtab.h"
|
||||
};
|
||||
|
||||
byte *skintable[MAX_LBM_HEIGHT];
|
||||
int skinwidth;
|
||||
byte *skinstart;
|
||||
|
||||
void D_PolysetDrawSpans (spanpackage_t * pspanpackage);
|
||||
void D_PolysetCalcGradients (int skinwidth);
|
||||
void D_DrawNonSubdiv (void);
|
||||
|
@ -200,22 +196,6 @@ D_DrawNonSubdiv (void)
|
|||
}
|
||||
}
|
||||
|
||||
void
|
||||
D_PolysetUpdateTables (void)
|
||||
{
|
||||
int i;
|
||||
byte *s;
|
||||
|
||||
if (r_affinetridesc.skinwidth != skinwidth ||
|
||||
r_affinetridesc.pskin != skinstart) {
|
||||
skinwidth = r_affinetridesc.skinwidth;
|
||||
skinstart = r_affinetridesc.pskin;
|
||||
s = skinstart;
|
||||
for (i = 0; i < MAX_LBM_HEIGHT; i++, s += skinwidth)
|
||||
skintable[i] = s;
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
D_PolysetScanLeftEdge (int height)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue