Remove the SMP renderer feature
This commit is contained in:
parent
3f489fe5f2
commit
51df89ab13
35 changed files with 160 additions and 839 deletions
|
@ -231,7 +231,7 @@ static void RB_SurfaceTriangles( srfTriangles_t *srf ) {
|
|||
int dlightBits;
|
||||
qboolean needsNormal;
|
||||
|
||||
dlightBits = srf->dlightBits[backEnd.smpFrame];
|
||||
dlightBits = srf->dlightBits;
|
||||
tess.dlightBits |= dlightBits;
|
||||
|
||||
RB_CHECKOVERFLOW( srf->numVerts, srf->numIndexes );
|
||||
|
@ -915,7 +915,7 @@ static void RB_SurfaceFace( srfSurfaceFace_t *surf ) {
|
|||
|
||||
RB_CHECKOVERFLOW( surf->numPoints, surf->numIndices );
|
||||
|
||||
dlightBits = surf->dlightBits[backEnd.smpFrame];
|
||||
dlightBits = surf->dlightBits;
|
||||
tess.dlightBits |= dlightBits;
|
||||
|
||||
indices = ( unsigned * ) ( ( ( char * ) surf ) + surf->ofsIndices );
|
||||
|
@ -1007,7 +1007,7 @@ static void RB_SurfaceGrid( srfGridMesh_t *cv ) {
|
|||
int *vDlightBits;
|
||||
qboolean needsNormal;
|
||||
|
||||
dlightBits = cv->dlightBits[backEnd.smpFrame];
|
||||
dlightBits = cv->dlightBits;
|
||||
tess.dlightBits |= dlightBits;
|
||||
|
||||
// determine the allowable discrepance
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue