0
0
Fork 0
This repository has been archived on 2024-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
ryujinx-final/Ryujinx.Graphics.GAL/BlendOp.cs

17 lines
345 B
C#

namespace Ryujinx.Graphics.GAL
{
public enum BlendOp
{
Add = 1,
Subtract,
ReverseSubtract,
Minimum,
Maximum,
AddGl = 0x8006,
MinimumGl = 0x8007,
MaximumGl = 0x8008,
SubtractGl = 0x800a,
ReverseSubtractGl = 0x800b
}
}