mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Eliminate the force-disabling of glprojectionhacks during showview.
Please notify me if this change negatively affects your code. git-svn-id: https://svn.eduke32.com/eduke32@6473 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
dfb98028f1
commit
95d93f770e
1 changed files with 0 additions and 7 deletions
|
@ -1214,10 +1214,6 @@ LUNATIC_EXTERN void G_ShowView(vec3_t vec, int32_t a, int32_t horiz, int32_t sec
|
|||
|
||||
horiz = clamp(horiz, HORIZ_MIN, HORIZ_MAX);
|
||||
|
||||
#ifdef USE_OPENGL
|
||||
int const oprojhacks = glprojectionhacks;
|
||||
glprojectionhacks = 0;
|
||||
#endif
|
||||
int const onewaspect = newaspect_enable;
|
||||
newaspect_enable = r_usenewaspect;
|
||||
setaspect_new_use_dimen = 1;
|
||||
|
@ -1242,9 +1238,6 @@ LUNATIC_EXTERN void G_ShowView(vec3_t vec, int32_t a, int32_t horiz, int32_t sec
|
|||
drawmasks();
|
||||
G_RestoreInterpolations();
|
||||
G_UpdateScreenArea();
|
||||
#ifdef USE_OPENGL
|
||||
glprojectionhacks = oprojhacks;
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !defined LUNATIC
|
||||
|
|
Loading…
Reference in a new issue