Polymodes: properly calc start/end fog dist for r_usenewshading=2, vis=0, shade>0

So there's no "jump" from vis!=0 to vis=0 making the texture appear brighter.

git-svn-id: https://svn.eduke32.com/eduke32@3959 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2013-07-18 18:08:10 +00:00
parent ec2514a91d
commit 66d126e9ff
1 changed files with 17 additions and 4 deletions

View File

@ -519,8 +519,8 @@ static void fogcalc_old(int32_t shade, int32_t vis)
// For GL_LINEAR fog: // For GL_LINEAR fog:
#define FOGDISTCONST 600 #define FOGDISTCONST 600
#define FULLVIS_BEGIN 2.9e38 #define FULLVIS_BEGIN 2.9e30
#define FULLVIS_END 3.0e38 #define FULLVIS_END 3.0e30
static inline void fogcalc(int32_t tile, int32_t shade, int32_t vis, int32_t pal) static inline void fogcalc(int32_t tile, int32_t shade, int32_t vis, int32_t pal)
{ {
@ -540,9 +540,20 @@ static inline void fogcalc(int32_t tile, int32_t shade, int32_t vis, int32_t pal
bglFogi(GL_FOG_MODE, GL_LINEAR); bglFogi(GL_FOG_MODE, GL_LINEAR);
if (combvis == 0) if (combvis == 0)
{
if (shade > 0)
{
// beg = -D*shade, end = D*(NUMSHADES-1-shade)
// => end/beg = -(NUMSHADES-1-shade)/shade
fogresult = -FULLVIS_BEGIN;
fogresult2 = FULLVIS_BEGIN * (float)(numshades-1-shade)/shade;
}
else
{ {
fogresult = FULLVIS_BEGIN; fogresult = FULLVIS_BEGIN;
fogresult2 = FULLVIS_END; fogresult2 = FULLVIS_END;
}
return; return;
} }
@ -574,6 +585,8 @@ void calc_and_apply_fog_factor(int32_t tile, int32_t shade, int32_t vis, int32_t
if (nofog) if (nofog)
return; return;
// NOTE: for r_usenewshading==2, the fog being/ending distance results are
// unused.
fogcalc(tile, shade, vis, pal); fogcalc(tile, shade, vis, pal);
bglFogfv(GL_FOG_COLOR, fogcol); bglFogfv(GL_FOG_COLOR, fogcol);