mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-27 01:10:51 +00:00
- reenabled the depth test for Polymost.
This was for debugging but accidentally left in.
This commit is contained in:
parent
cec7b006ca
commit
2334787f1b
1 changed files with 1 additions and 1 deletions
|
@ -3182,7 +3182,7 @@ void polymost_drawrooms()
|
||||||
GLInterface.EnableBlend(false);
|
GLInterface.EnableBlend(false);
|
||||||
GLInterface.EnableAlphaTest(false);
|
GLInterface.EnableAlphaTest(false);
|
||||||
GLInterface.EnableDepthTest(true);
|
GLInterface.EnableDepthTest(true);
|
||||||
GLInterface.SetDepthFunc(Depth_Always);
|
GLInterface.SetDepthFunc(Depth_LessEqual);
|
||||||
|
|
||||||
GLInterface.SetBrightness(r_scenebrightness);
|
GLInterface.SetBrightness(r_scenebrightness);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue