mysimulation/server/TargaImage/TgaPixelFormat.cs

14 lines
220 B
C#
Raw Permalink Normal View History

namespace TargaImagePCL
{
public enum TGAPixelFormat
{
Undefined,
Grayscale_8bpp,
RGB555_16bpp,
ARGB1555_16bpp,
RGB_24bpp,
RGB_32bpp,
ARGB_32bpp
}
}