1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-02-11 09:59:33 -06:00

12 lines
170 B
C#
Raw Normal View History

2019-10-13 03:02:07 -03:00
namespace Ryujinx.Graphics.GAL.Blend
{
public enum BlendOp
{
Add = 1,
Subtract,
ReverseSubtract,
Minimum,
Maximum
}
}