1
0
forked from 0ad/0ad

Fixes incorrect type of objectColor in overlay line ARB shader introduced in 34fc883317 and appeared after 04bd96cee0. Fixes #6534

This was SVN commit r26856.
This commit is contained in:
Vladislav Belov 2022-05-07 19:48:35 +00:00
parent 27061d7bd4
commit 5c17a11343

View File

@ -19,7 +19,7 @@
<uniform name="baseTex" loc="0" type="sampler2D"/>
<uniform name="maskTex" loc="1" type="sampler2D"/>
<uniform name="losTex" loc="2" type="sampler2D" if="!IGNORE_LOS"/>
<uniform name="objectColor" loc="0" type="vec3" if="USE_OBJECTCOLOR"/>
<uniform name="objectColor" loc="0" type="vec4" if="USE_OBJECTCOLOR"/>
</fragment>
</program>