44c1cf3fe5
* Implment common and independent blend properly * Nits
17 lines
No EOL
444 B
C#
17 lines
No EOL
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
|
|
}
|
|
} |