1
0
mirror of synced 2025-01-10 13:21:51 +01:00
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,
}
}