// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Framework.Graphics { public enum BlendingEquation { /// /// Inherits from parent. /// Inherit = 0, /// /// Adds the source and destination colours. /// Add, /// /// Chooses the minimum of each component of the source and destination colours. /// Min, /// /// Chooses the maximum of each component of the source and destination colours. /// Max, /// /// Subtracts the destination colour from the source colour. /// Subtract, /// /// Subtracts the source colour from the destination colour. /// ReverseSubtract, } }