mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-09 06:22:34 -07:00
Fix for current framebuffer issues (#78)
[GPU] Fix some of the current framebuffer issues
This commit is contained in:
@@ -2,24 +2,24 @@ namespace Ryujinx.Graphics.Gal
|
||||
{
|
||||
public enum GalBlendFactor
|
||||
{
|
||||
Zero = 0x4000,
|
||||
One = 0x4001,
|
||||
SrcColor = 0x4300,
|
||||
OneMinusSrcColor = 0x4301,
|
||||
SrcAlpha = 0x4302,
|
||||
OneMinusSrcAlpha = 0x4303,
|
||||
DstAlpha = 0x4304,
|
||||
OneMinusDstAlpha = 0x4305,
|
||||
DstColor = 0x4306,
|
||||
OneMinusDstColor = 0x4307,
|
||||
SrcAlphaSaturate = 0x4308,
|
||||
ConstantColor = 0xc001,
|
||||
OneMinusConstantColor = 0xc002,
|
||||
ConstantAlpha = 0xc003,
|
||||
OneMinusConstantAlpha = 0xc004,
|
||||
Src1Color = 0xc900,
|
||||
OneMinusSrc1Color = 0xc901,
|
||||
Src1Alpha = 0xc902,
|
||||
OneMinusSrc1Alpha = 0xc903
|
||||
Zero = 0x1,
|
||||
One = 0x2,
|
||||
SrcColor = 0x3,
|
||||
OneMinusSrcColor = 0x4,
|
||||
SrcAlpha = 0x5,
|
||||
OneMinusSrcAlpha = 0x6,
|
||||
DstAlpha = 0x7,
|
||||
OneMinusDstAlpha = 0x8,
|
||||
DstColor = 0x9,
|
||||
OneMinusDstColor = 0xa,
|
||||
SrcAlphaSaturate = 0xb,
|
||||
Src1Color = 0x10,
|
||||
OneMinusSrc1Color = 0x11,
|
||||
Src1Alpha = 0x12,
|
||||
OneMinusSrc1Alpha = 0x13,
|
||||
ConstantColor = 0x61,
|
||||
OneMinusConstantColor = 0x62,
|
||||
ConstantAlpha = 0x63,
|
||||
OneMinusConstantAlpha = 0x64
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user