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