mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-29 23:33:00 +00:00
- do not clamp warped textures.
This commit is contained in:
parent
201652bb36
commit
760bffbf06
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ void HWWall::RenderTexturedWall(HWDrawInfo *di, FRenderState &state, int rflags)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (flags & HWWall::HWF_CLAMPY && (type == RENDERWALL_M2S || type == RENDERWALL_M2SNF))
|
if (flags & HWWall::HWF_CLAMPY && (type == RENDERWALL_M2S || type == RENDERWALL_M2SNF) && !texture->isWarped())
|
||||||
{
|
{
|
||||||
state.SetTextureClamp(true);
|
state.SetTextureClamp(true);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue