Fix for current framebuffer issues (#78)
[GPU] Fix some of the current framebuffer issues
This commit is contained in:
parent
262b5b8054
commit
c8c86a3854
23 changed files with 482 additions and 891 deletions
|
@ -2,10 +2,10 @@ namespace Ryujinx.Graphics.Gal
|
|||
{
|
||||
public enum GalBlendEquation
|
||||
{
|
||||
FuncAdd = 0x8006,
|
||||
Min = 0x8007,
|
||||
Max = 0x8008,
|
||||
FuncSubtract = 0x800a,
|
||||
FuncReverseSubtract = 0x800b
|
||||
FuncAdd = 1,
|
||||
FuncSubtract = 2,
|
||||
FuncReverseSubtract = 3,
|
||||
Min = 4,
|
||||
Max = 5
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue