GS/TextureCache: Fix texture resize in DX11

This commit is contained in:
Connor McLaughlin 2022-08-14 01:30:34 +10:00 committed by refractionpcsx2
parent b191126f36
commit db2489a555
1 changed files with 1 additions and 1 deletions

View File

@ -2119,7 +2119,7 @@ void GSTextureCache::Surface::ResizeTexture(int new_width, int new_height, GSVec
{
// Can't do partial copies in DirectX for depth textures, and it's probably not ideal in other
// APIs either. So use a fullscreen quad setting depth instead.
g_gs_device->StretchRect(m_texture, tex, GSVector4(rc), ShaderConvert::DEPTH_COPY, false);
g_gs_device->StretchRect(m_texture, tex, GSVector4(rc) / GSVector4(tex->GetWidth(), tex->GetHeight(), tex->GetWidth(), tex->GetHeight()), ShaderConvert::DEPTH_COPY, false);
}
else
{