16 lines
201 B
C#
16 lines
201 B
C#
using System;
|
|
|
|
namespace Quik.Media
|
|
{
|
|
public enum QImageFormat
|
|
{
|
|
RedU8,
|
|
RgbU8,
|
|
RgbaU8,
|
|
RedF,
|
|
RgbF,
|
|
RgbaF,
|
|
AlphaU8,
|
|
AlphaF
|
|
}
|
|
} |