]> git.tdb.fi Git - libs/gui.git/blob - source/graphics/pixelformat.h
Add pixel formats with a padding component
[libs/gui.git] / source / graphics / pixelformat.h
1 #ifndef MSP_GRAPHICS_PIXELFORMAT_H_
2 #define MSP_GRAPHICS_PIXELFORMAT_H_
3
4 namespace Msp {
5 namespace Graphics {
6
7 enum PixelFormat
8 {
9         COLOR_INDEX,
10         LUMINANCE,
11         LUMINANCE_ALPHA,
12         RGB,
13         RGBA,
14         RGBX,
15         BGR,
16         BGRA,
17         BGRX
18 };
19
20 } // namespace Graphics
21 } // namespace Msp
22
23 #endif