GS-HW: Set scale on temporary depth stencil

This commit is contained in:
refractionpcsx2 2023-02-26 00:56:11 +00:00
parent 9a0cd1157f
commit a97df14064
1 changed files with 1 additions and 0 deletions

View File

@ -3793,6 +3793,7 @@ void GSRendererHW::DrawPrims(GSTexture* rt, GSTexture* ds, GSTextureCache::Sourc
m_conf.destination_alpha <= GSHWDrawConfig::DestinationAlphaMode::StencilOne && !m_conf.ds)
{
temp_ds = g_gs_device->CreateDepthStencil(rt->GetWidth(), rt->GetHeight(), GSTexture::Format::DepthStencil, false);
temp_ds->SetScale(m_conf.rt->GetScale());
m_conf.ds = temp_ds;
}