Skip to content

Commit

Permalink
GS/HW: Adjust scissor for BeginHLEHardwareDraw.
Browse files Browse the repository at this point in the history
  • Loading branch information
lightningterror committed Sep 17, 2023
1 parent 3004007 commit 5d88c1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2/GS/Renderers/HW/GSRendererHW.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6378,7 +6378,7 @@ GSHWDrawConfig& GSRendererHW::BeginHLEHardwareDraw(
config.nindices = static_cast<u32>(std::size(indices));
config.indices_per_prim = 3;
config.drawlist = nullptr;
config.scissor = rt_or_ds->GetRect().rintersect(GSVector4i(GSVector4(rt->GetRect()) * tex_scale));
config.scissor = rt_or_ds->GetRect();
config.drawarea = config.scissor;
config.topology = GSHWDrawConfig::Topology::Triangle;
config.blend = GSHWDrawConfig::BlendState();
Expand Down

0 comments on commit 5d88c1a

Please sign in to comment.