[GPU] Avoid drawing the frame buffer with alpha blend enabled, use correct blend enable register, clear the buffer before drawing
This commit is contained in:
parent
bbcad307bd
commit
47100ec8c1
3 changed files with 19 additions and 3 deletions
|
@ -168,7 +168,7 @@ namespace Ryujinx.Graphics.Gpu
|
|||
private void SetAlphaBlending()
|
||||
{
|
||||
//TODO: Support independent blend properly.
|
||||
bool Enable = (ReadRegister(NvGpuEngine3dReg.IBlendEnable) & 1) != 0;
|
||||
bool Enable = (ReadRegister(NvGpuEngine3dReg.IBlendNEnable) & 1) != 0;
|
||||
|
||||
Gpu.Renderer.SetBlendEnable(Enable);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue