Disables depth test for minimap effect after a1f98b016b. Fixes #6426

This was SVN commit r26290.
This commit is contained in:
Vladislav Belov 2022-02-02 18:43:23 +00:00
parent ac77d1c3e0
commit 643894c16b

View File

@ -1,14 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<effect>
<technique>
<require shaders="arb"/>
<pass shader="arb/minimap"/>
</technique>
<technique>
<require shaders="arb"/>
<pass shader="arb/minimap">
<depth test="FALSE" mask="false"/>
</pass>
</technique>
<technique>
<require shaders="glsl"/>
<pass shader="glsl/minimap"/>
</technique>
<technique>
<require shaders="glsl"/>
<pass shader="glsl/minimap">
<depth test="FALSE" mask="false"/>
</pass>
</technique>
</effect>