Ryujinx/Ryujinx.Graphics/Gal/GalBlendEquation.cs
gdkchan c8c86a3854
Fix for current framebuffer issues (#78)
[GPU] Fix some of the current framebuffer issues
2018-04-13 15:12:58 -03:00

11 lines
243 B
C#

namespace Ryujinx.Graphics.Gal
{
public enum GalBlendEquation
{
FuncAdd = 1,
FuncSubtract = 2,
FuncReverseSubtract = 3,
Min = 4,
Max = 5
}
}