- Wrap midtex support

This commit is contained in:
Magnus Norddahl 2017-08-17 23:14:02 +02:00
parent c2fa360bbc
commit 8034793193
1 changed files with 6 additions and 2 deletions

View File

@ -272,10 +272,14 @@ void RenderPolyWall::Render(const TriMatrix &worldToClip, const PolyClipPlane &c
// Masked walls clamp to the 0-1 range (no texture repeat)
if (Masked)
{
bool wrap = (Line->flags & ML_WRAP_MIDTEX) || (Side->Flags & WALLF_WRAP_MIDTEX);
if (!wrap)
{
ClampHeight(vertices[0], vertices[3]);
ClampHeight(vertices[1], vertices[2]);
}
}
PolyDrawArgs args;
args.SetLight(GetColorTable(Line->frontsector->Colormap, Line->frontsector->SpecialColors[sector_t::walltop]), GetLightLevel(), PolyRenderer::Instance()->Light.WallGlobVis(foggy), false);