Fixed ordering for undertale
This commit is contained in:
parent
0938c12462
commit
24124f3db7
1 changed files with 7 additions and 5 deletions
|
@ -100,7 +100,14 @@ namespace Ryujinx.Graphics.Graphics3d
|
||||||
|
|
||||||
GalPipelineState State = new GalPipelineState();
|
GalPipelineState State = new GalPipelineState();
|
||||||
|
|
||||||
|
// Framebuffer must be run configured because viewport dimensions may be used in other methods
|
||||||
SetFrameBuffer(State);
|
SetFrameBuffer(State);
|
||||||
|
|
||||||
|
for (int FbIndex = 0; FbIndex < 8; FbIndex++)
|
||||||
|
{
|
||||||
|
SetFrameBuffer(Vmm, FbIndex);
|
||||||
|
}
|
||||||
|
|
||||||
SetFrontFace(State);
|
SetFrontFace(State);
|
||||||
SetCullFace(State);
|
SetCullFace(State);
|
||||||
SetDepth(State);
|
SetDepth(State);
|
||||||
|
@ -110,11 +117,6 @@ namespace Ryujinx.Graphics.Graphics3d
|
||||||
SetColorMask(State);
|
SetColorMask(State);
|
||||||
SetPrimitiveRestart(State);
|
SetPrimitiveRestart(State);
|
||||||
|
|
||||||
for (int FbIndex = 0; FbIndex < 8; FbIndex++)
|
|
||||||
{
|
|
||||||
SetFrameBuffer(Vmm, FbIndex);
|
|
||||||
}
|
|
||||||
|
|
||||||
SetZeta(Vmm);
|
SetZeta(Vmm);
|
||||||
|
|
||||||
SetRenderTargets();
|
SetRenderTargets();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue