1
0
mirror of synced 2024-11-14 19:17:39 +01:00
Switch-Toolbox/Switch_Toolbox_Library/FileFormats/CSharpImageLibrary/ImageEngine.cs
2019-06-01 17:49:39 -04:00

32 lines
669 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
// https://github.com/KFreon/CSharpImageLibrary
namespace CSharpImageLibrary.DDS
{
/// <summary>
/// Determines how alpha is handled.
/// </summary>
public enum AlphaSettings
{
/// <summary>
/// Keeps any existing alpha.
/// </summary>
KeepAlpha,
/// <summary>
/// Premultiplies RBG and Alpha channels. Alpha remains.
/// </summary>
Premultiply,
/// <summary>
/// Removes alpha channel.
/// </summary>
RemoveAlphaChannel,
}
}