mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-29 15:22:08 +00:00
- fixed compilation warning with MSVC 2015
src\polyrenderer\scene/poly_portal.cpp(142): warning C4800: 'line_t *': forcing value to bool 'true' or 'false' (performance warning)
This commit is contained in:
parent
8098657cf4
commit
7576068202
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ void PolyDrawLinePortal::Render(int portalDepth)
|
||||||
DVector2 pt2 = clipLine->v2->fPos() - PolyRenderer::Instance()->Viewpoint.Pos;
|
DVector2 pt2 = clipLine->v2->fPos() - PolyRenderer::Instance()->Viewpoint.Pos;
|
||||||
bool backfacing = (pt1.Y * (pt1.X - pt2.X) + pt1.X * (pt2.Y - pt1.Y) >= 0);
|
bool backfacing = (pt1.Y * (pt1.X - pt2.X) + pt1.X * (pt2.Y - pt1.Y) >= 0);
|
||||||
|
|
||||||
PortalViewpoint = PolyRenderer::Instance()->SetupPerspectiveMatrix(Mirror);
|
PortalViewpoint = PolyRenderer::Instance()->SetupPerspectiveMatrix(Mirror != nullptr);
|
||||||
PortalViewpoint.StencilValue = StencilValue;
|
PortalViewpoint.StencilValue = StencilValue;
|
||||||
PortalViewpoint.PortalDepth = portalDepth;
|
PortalViewpoint.PortalDepth = portalDepth;
|
||||||
PortalViewpoint.PortalEnterLine = clipLine;
|
PortalViewpoint.PortalEnterLine = clipLine;
|
||||||
|
|
Loading…
Reference in a new issue