mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-16 07:11:22 +00:00
14 lines
220 B
C#
14 lines
220 B
C#
|
namespace TargaImagePCL
|
|||
|
{
|
|||
|
public enum TGAPixelFormat
|
|||
|
{
|
|||
|
Undefined,
|
|||
|
Grayscale_8bpp,
|
|||
|
RGB555_16bpp,
|
|||
|
ARGB1555_16bpp,
|
|||
|
RGB_24bpp,
|
|||
|
RGB_32bpp,
|
|||
|
ARGB_32bpp
|
|||
|
}
|
|||
|
}
|