Ryujinx/Ryujinx.Graphics/Gal/GalBlendEquation.cs
gdkchan 44c1cf3fe5
Implment common and independent blend properly (fixes #458) (#485)
* Implment common and independent blend properly

* Nits
2018-11-01 01:22:24 -03:00

17 lines
444 B
C#

namespace Ryujinx.Graphics.Gal
{
public enum GalBlendEquation
{
FuncAdd = 1,
FuncSubtract = 2,
FuncReverseSubtract = 3,
Min = 4,
Max = 5,
FuncAddGl = 0x8006,
FuncSubtractGl = 0x8007,
FuncReverseSubtractGl = 0x8008,
MinGl = 0x800a,
MaxGl = 0x800b
}
}