mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-29 20:20:43 +00:00
Whitespace and comment cleanups.
This commit is contained in:
parent
46456158e8
commit
ff03367bc2
1 changed files with 3 additions and 3 deletions
|
@ -311,8 +311,7 @@ R_DrawBrushModel (entity_t *e)
|
||||||
|
|
||||||
VectorSubtract (r_refdef.vieworg, e->origin, modelorg);
|
VectorSubtract (r_refdef.vieworg, e->origin, modelorg);
|
||||||
if (rotated) {
|
if (rotated) {
|
||||||
vec3_t temp;
|
vec3_t temp, forward, right, up;
|
||||||
vec3_t forward, right, up;
|
|
||||||
|
|
||||||
VectorCopy (modelorg, temp);
|
VectorCopy (modelorg, temp);
|
||||||
AngleVectors (e->angles, forward, right, up);
|
AngleVectors (e->angles, forward, right, up);
|
||||||
|
@ -368,7 +367,7 @@ R_DrawBrushModel (entity_t *e)
|
||||||
qfglColor3ubv (color_white);
|
qfglColor3ubv (color_white);
|
||||||
}
|
}
|
||||||
} else if (psurf->flags & SURF_DRAWSKY) {
|
} else if (psurf->flags & SURF_DRAWSKY) {
|
||||||
// FIXME: add modelalpha support for sky brushes
|
// QSG FIXME: add modelalpha support for sky brushes
|
||||||
CHAIN_SURF (psurf, sky_chain);
|
CHAIN_SURF (psurf, sky_chain);
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
|
@ -459,6 +458,7 @@ R_RecursiveWorldNode (mnode_t *node)
|
||||||
CHAIN_SURF (surf, sky_chain);
|
CHAIN_SURF (surf, sky_chain);
|
||||||
} else {
|
} else {
|
||||||
texture_t *tex;
|
texture_t *tex;
|
||||||
|
|
||||||
if (!surf->texinfo->texture->anim_total)
|
if (!surf->texinfo->texture->anim_total)
|
||||||
tex = surf->texinfo->texture;
|
tex = surf->texinfo->texture;
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue