mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-26 14:01:45 +00:00
- fixed shader compilation.
This commit is contained in:
parent
a0a90f874f
commit
0db7a6206b
1 changed files with 1 additions and 1 deletions
|
@ -204,7 +204,7 @@ vec4 getTexel(vec2 st)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (uTextureMode & TEXF_ClampY)
|
if ((uTextureMode & TEXF_ClampY) != 0)
|
||||||
{
|
{
|
||||||
if (st.t < 0.0 || st.t > 1.0)
|
if (st.t < 0.0 || st.t > 1.0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue