Fix sprites/translucent stuff being occluded by portal walls

This commit is contained in:
Magnus Norddahl 2016-12-08 10:35:51 +01:00
parent a1bb6e6b23
commit dc82c19901
1 changed files with 2 additions and 2 deletions

View File

@ -274,7 +274,7 @@ void RenderPolyScene::RenderTranslucent(int portalDepth)
args.objectToClip = &WorldToClip;
args.mode = TriangleDrawMode::Fan;
args.stenciltestvalue = portal->StencilValue + 1;
args.stencilwritevalue = StencilValue;
args.stencilwritevalue = StencilValue + 1;
args.SetClipPlane(PortalPlane.x, PortalPlane.y, PortalPlane.z, PortalPlane.w);
for (const auto &verts : portal->Shape)
{
@ -295,7 +295,7 @@ void RenderPolyScene::RenderTranslucent(int portalDepth)
args.objectToClip = &WorldToClip;
args.mode = TriangleDrawMode::Fan;
args.stenciltestvalue = portal->StencilValue + 1;
args.stencilwritevalue = StencilValue;
args.stencilwritevalue = StencilValue + 1;
args.SetClipPlane(PortalPlane.x, PortalPlane.y, PortalPlane.z, PortalPlane.w);
for (const auto &verts : portal->Shape)
{