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