mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
Fixed fisheye, should compile now
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3324 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
cdf2b2670e
commit
233ffe7ccd
1 changed files with 25 additions and 20 deletions
|
@ -2105,12 +2105,15 @@ void GLR_RenderView (void)
|
||||||
c_alias_polys = 0;
|
c_alias_polys = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef FISH
|
||||||
if (ffov.value && cls.allow_fish && !(r_refdef.flags & Q2RDF_NOWORLDMODEL) && R_RenderScene_Fish())
|
if (ffov.value && cls.allow_fish && !(r_refdef.flags & Q2RDF_NOWORLDMODEL) && R_RenderScene_Fish())
|
||||||
{
|
{
|
||||||
//fisheye does its own rendering.
|
//fisheye does its own rendering.
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
#endif
|
||||||
mirror = false;
|
mirror = false;
|
||||||
|
|
||||||
R_Clear ();
|
R_Clear ();
|
||||||
|
@ -2129,7 +2132,9 @@ void GLR_RenderView (void)
|
||||||
|
|
||||||
// render mirror view
|
// render mirror view
|
||||||
R_Mirror ();
|
R_Mirror ();
|
||||||
|
#ifdef FISH
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
R_BloomBlend();
|
R_BloomBlend();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue