mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 21:48:39 +00:00
c8c86a3854
[GPU] Fix some of the current framebuffer issues
11 lines
243 B
C#
11 lines
243 B
C#
namespace Ryujinx.Graphics.Gal
|
|
{
|
|
public enum GalBlendEquation
|
|
{
|
|
FuncAdd = 1,
|
|
FuncSubtract = 2,
|
|
FuncReverseSubtract = 3,
|
|
Min = 4,
|
|
Max = 5
|
|
}
|
|
} |