From 1fe3d07cbdeda459527199bb9837f5f6ce9a2f5b Mon Sep 17 00:00:00 2001 From: Yuriy O'Donnell Date: Sat, 25 Oct 2014 02:46:13 +0200 Subject: [PATCH] D3D: Removed somewhat mysterious comment It would be good to know which games exactly exhibited the issue. --- Source/Core/VideoBackends/D3D/Render.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/Core/VideoBackends/D3D/Render.cpp b/Source/Core/VideoBackends/D3D/Render.cpp index 6705364189..31ab07ddaa 100644 --- a/Source/Core/VideoBackends/D3D/Render.cpp +++ b/Source/Core/VideoBackends/D3D/Render.cpp @@ -485,7 +485,6 @@ void Renderer::SetViewport() Wd = (X + Wd <= GetTargetWidth()) ? Wd : (GetTargetWidth() - X); Ht = (Y + Ht <= GetTargetHeight()) ? Ht : (GetTargetHeight() - Y); - // Some games set invalid values for z-min and z-max so fix them to the max and min allowed and let the shaders do this work D3D11_VIEWPORT vp = CD3D11_VIEWPORT(X, Y, Wd, Ht, (xfmem.viewport.farZ - xfmem.viewport.zRange) / 16777216.0f, xfmem.viewport.farZ / 16777216.0f);