Dashboard/Quik/Media/ImageFormat.cs

16 lines
201 B
C#
Raw Normal View History

2023-06-29 13:17:32 +02:00
using System;
namespace Quik.Media
2022-08-20 11:57:57 +02:00
{
2023-06-29 13:17:32 +02:00
public enum QImageFormat
2022-08-20 11:57:57 +02:00
{
RedU8,
RgbU8,
RgbaU8,
RedF,
RgbF,
2023-05-13 15:17:23 +02:00
RgbaF,
AlphaU8,
AlphaF
2022-08-20 11:57:57 +02:00
}
}