mirror of
https://github.com/Ryujinx-NX/Ryujinx.git
synced 2024-11-15 05:27:42 -07:00
Synchronize Rasterizer State before Clear (#1680)
This commit is contained in:
parent
500b48251c
commit
5561a3b95e
@ -20,12 +20,17 @@ namespace Ryujinx.Graphics.Gpu.Engine
|
||||
return;
|
||||
}
|
||||
|
||||
// Scissor affects clears aswell.
|
||||
// Scissor and rasterizer discard also affect clears.
|
||||
if (state.QueryModified(MethodOffset.ScissorState))
|
||||
{
|
||||
UpdateScissorState(state);
|
||||
}
|
||||
|
||||
if (state.QueryModified(MethodOffset.RasterizeEnable))
|
||||
{
|
||||
UpdateRasterizerState(state);
|
||||
}
|
||||
|
||||
int index = (argument >> 6) & 0xf;
|
||||
|
||||
UpdateRenderTargetState(state, useControl: false, singleUse: index);
|
||||
|
Loading…
Reference in New Issue
Block a user