]> git.tdb.fi Git - libs/gui.git/blobdiff - source/graphics/pixelformat.h
Consistently label the graphics part as graphics
[libs/gui.git] / source / graphics / pixelformat.h
diff --git a/source/graphics/pixelformat.h b/source/graphics/pixelformat.h
new file mode 100644 (file)
index 0000000..891ba7c
--- /dev/null
@@ -0,0 +1,21 @@
+#ifndef MSP_GRAPHICS_PIXELFORMAT_H_
+#define MSP_GRAPHICS_PIXELFORMAT_H_
+
+namespace Msp {
+namespace Graphics {
+
+enum PixelFormat
+{
+       COLOR_INDEX,
+       LUMINANCE,
+       LUMINANCE_ALPHA,
+       RGB,
+       RGBA,
+       BGR,
+       BGRA
+};
+
+} // namespace Graphics
+} // namespace Msp
+
+#endif