From 93a6590af7f866838d883d92fac655251685c3d7 Mon Sep 17 00:00:00 2001 From: manuel Date: Sat, 2 May 2009 18:58:26 +0200 Subject: adding doxygen files --- ue2/doxygen/cpixelformat__bgr24_8h-source.html | 56 ++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 ue2/doxygen/cpixelformat__bgr24_8h-source.html (limited to 'ue2/doxygen/cpixelformat__bgr24_8h-source.html') diff --git a/ue2/doxygen/cpixelformat__bgr24_8h-source.html b/ue2/doxygen/cpixelformat__bgr24_8h-source.html new file mode 100644 index 0000000..b948871 --- /dev/null +++ b/ue2/doxygen/cpixelformat__bgr24_8h-source.html @@ -0,0 +1,56 @@ + + +imgsynth2: imgsynth2/cpixelformat_bgr24.h Source File + + + + +
+ +
+

imgsynth2/cpixelformat_bgr24.h

00001 
+00008 #ifndef CPIXELFORMAT_BGR24_H
+00009 #define CPIXELFORMAT_BGR24_H
+00010 
+00011 #include <fstream>
+00012 #include "cpixelformat.h"
+00013 
+00020 class CPixelFormat_BGR24 : public CPixelFormat
+00021 {
+00022   public:
+00032     CPixelFormat_BGR24(CBitmap *bitmap)
+00033       : CPixelFormat(bitmap)
+00034     {}
+00035 
+00045     ~CPixelFormat_BGR24()
+00046     {}
+00047 
+00059     void getPixel(RGBPIXEL& pixel, uint32_t x, uint32_t y);
+00060 
+00072     void setPixel(const RGBPIXEL& pixel, uint32_t x, uint32_t y);
+00073 
+00083     uint32_t getBitCount()
+00084     {
+00085       return 24;
+00086     }
+00087 
+00097     void getMaxColor(RGBPIXEL& pixel)
+00098     {
+00099       /* value = 2^8 - 1 */
+00100       pixel.red = pixel.green = pixel.blue = 255;
+00101     }
+00102 };
+00103 
+00104 #endif
+00105 
+00106 /* vim: set et sw=2 ts=2: */
+

Generated on Sat May 2 18:58:11 2009 for imgsynth2 by  + +doxygen 1.5.3
+ + -- cgit v1.2.3