2024-06-19 10:31:51 +02:00
|
|
|
using ReFuel.Stb.Native;
|
|
|
|
|
2024-06-14 17:24:38 +02:00
|
|
|
namespace ReFuel.Stb
|
2024-03-19 20:02:20 +01:00
|
|
|
{
|
2024-06-19 10:31:51 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Enumeration of supported STBI image formats.
|
|
|
|
/// </summary>
|
2024-03-19 20:02:20 +01:00
|
|
|
public enum StbiImageFormat
|
|
|
|
{
|
|
|
|
Default = (int)StbiEnum.STBI_default,
|
|
|
|
Grey = (int)StbiEnum.STBI_grey,
|
|
|
|
GreyAlpha = (int)StbiEnum.STBI_grey_alpha,
|
|
|
|
Rgb = (int)StbiEnum.STBI_rgb,
|
|
|
|
Rgba = (int)StbiEnum.STBI_rgb_alpha
|
|
|
|
}
|
|
|
|
}
|