19 lines
248 B
C#
19 lines
248 B
C#
using System;
|
|
|
|
namespace Quik.Media
|
|
{
|
|
public enum QImageFormat
|
|
{
|
|
Undefined,
|
|
RedU8,
|
|
RgbU8,
|
|
RgbaU8,
|
|
RedF,
|
|
RgbF,
|
|
RgbaF,
|
|
AlphaU8,
|
|
AlphaF,
|
|
RaU8,
|
|
RaF,
|
|
}
|
|
} |