From b09240702eaf02066a046d1749a711d74786ec1c Mon Sep 17 00:00:00 2001 From: Stenzek Date: Wed, 11 Oct 2023 21:39:01 +1000 Subject: [PATCH] GS/HW: Fix off-by-one in region clamp Fixes text in ZIPANG, decals in Enthusia Professional Racing, edge of screen in Dynasty Warriors, and others. --- pcsx2/GS/Renderers/HW/GSRendererHW.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pcsx2/GS/Renderers/HW/GSRendererHW.cpp b/pcsx2/GS/Renderers/HW/GSRendererHW.cpp index 70ac54b3ef..72c542a4fd 100644 --- a/pcsx2/GS/Renderers/HW/GSRendererHW.cpp +++ b/pcsx2/GS/Renderers/HW/GSRendererHW.cpp @@ -4384,9 +4384,11 @@ __ri void GSRendererHW::EmulateTextureSampler(const GSTextureCache::Target* rt, m_conf.cb_ps.HalfTexel = GSVector4(-0.5f, 0.5f).xxyy() / WH.zwzw(); if (complex_wms_wmt) { + // Add 0.5 to the coordinates because the region clamp is inclusive, size is exclusive. We use 0.5 because we want to clamp + // to the last texel in the image, not halfway between it and wrapping around. const GSVector4i clamp(m_cached_ctx.CLAMP.MINU, m_cached_ctx.CLAMP.MINV, m_cached_ctx.CLAMP.MAXU, m_cached_ctx.CLAMP.MAXV); - const GSVector4 region_repeat(GSVector4::cast(clamp)); - const GSVector4 region_clamp(GSVector4(clamp) / WH.xyxy()); + const GSVector4 region_repeat = GSVector4::cast(clamp); + const GSVector4 region_clamp = (GSVector4(clamp) + GSVector4::cxpr(0.0f, 0.0f, 0.5f, 0.5f)) / WH.xyxy(); if (wms >= CLAMP_REGION_CLAMP) { m_conf.cb_ps.MinMax.x = (wms == CLAMP_REGION_CLAMP && !m_conf.ps.depth_fmt) ? region_clamp.x : region_repeat.x;