mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 12:31:10 +00:00
Swap normal/vertex order to match order they are accessed in during render.
Optimization from Grievre. Also fix a minimum light clamping to actually be applied.
This commit is contained in:
parent
f81a302c2a
commit
f0d9008fa4
1 changed files with 2 additions and 3 deletions
|
@ -67,8 +67,8 @@ static __attribute__ ((unused)) const char rcsid[] =
|
|||
#include "view.h"
|
||||
|
||||
typedef struct {
|
||||
vec3_t vert;
|
||||
vec3_t normal;
|
||||
vec3_t vert;
|
||||
} blended_vert_t;
|
||||
|
||||
typedef struct {
|
||||
|
@ -575,8 +575,7 @@ R_DrawAliasModel (entity_t *e)
|
|||
if (d > 1.0) {
|
||||
VectorScale (emission, 1.0 / d, emission);
|
||||
} else if (d < model->min_light && !used_lights) {
|
||||
ambientcolor[2] = ambientcolor[1] =
|
||||
ambientcolor[0] = model->min_light;
|
||||
emission[2] = emission[1] = emission[0] = model->min_light;
|
||||
}
|
||||
|
||||
qfglMaterialfv (GL_FRONT, GL_EMISSION, emission);
|
||||
|
|
Loading…
Reference in a new issue