ref_soft: Re-enable lightvec calculation

This commit is contained in:
mittorn 2019-03-27 20:17:58 +07:00
parent 529bb53d52
commit 44a8ede94d

View file

@ -344,11 +344,11 @@ static qboolean R_RecursiveLightPoint( model_t *model, mnode_t *node, float p1f,
{ {
uint scale = tr.lightstylevalue[surf->styles[map]]; uint scale = tr.lightstylevalue[surf->styles[map]];
if( tr.ignore_lightgamma ) if( 1 ) //tr.ignore_lightgamma )
{ {
cv->r += lm->r * scale; cv->r += lm->r * 255 * 2.5; // scale;
cv->g += lm->g * scale; cv->g += lm->g * 255 * 2.5; // scale;
cv->b += lm->b * scale; cv->b += lm->b * 255 * 2.5; // scale;
} }
else else
{ {
@ -472,7 +472,7 @@ colorVec R_LightVec( const vec3_t start, const vec3_t end, vec3_t lspot, vec3_t
{ {
colorVec light = R_LightVecInternal( start, end, lspot, lvec ); colorVec light = R_LightVecInternal( start, end, lspot, lvec );
light.r = light.g = light.b = 255; //light.r = light.g = light.b = 255;
if( lspot != NULL && lvec != NULL ) // CVAR_TO_BOOL( r_lighting_extended ) && if( lspot != NULL && lvec != NULL ) // CVAR_TO_BOOL( r_lighting_extended ) &&
{ {