Dashboard/Quik/Media/ImageFormat.cs

19 lines
248 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
{
2023-07-02 09:38:32 +02:00
Undefined,
2022-08-20 11:57:57 +02:00
RedU8,
RgbU8,
RgbaU8,
RedF,
RgbF,
2023-05-13 15:17:23 +02:00
RgbaF,
AlphaU8,
2023-07-02 09:38:32 +02:00
AlphaF,
RaU8,
RaF,
2022-08-20 11:57:57 +02:00
}
}