]> git.tdb.fi Git - libs/gui.git/blob - source/gbase/pixelformat.h
Move Image from mspgl to here
[libs/gui.git] / source / gbase / pixelformat.h
1 /* $Id$
2
3 This file is part of libmspgl
4 Copyright © 2008  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_GBASE_PIXELFORMAT_H_
9 #define MSP_GBASE_PIXELFORMAT_H_
10
11 namespace Msp {
12 namespace Graphics {
13
14 enum PixelFormat
15 {
16         COLOR_INDEX,
17         LUMINANCE,
18         LUMINANCE_ALPHA,
19         RGB,
20         RGBA,
21         BGR,
22         BGRA
23 };
24
25 } // namespace Graphics
26 } // namespace Msp
27
28 #endif