comments for sungwoo when he gets back...
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Thu, 18 Apr 2013 09:56:44 +0000 (18:56 +0900)
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>
Thu, 18 Apr 2013 11:30:39 +0000 (20:30 +0900)
src/modules/evas/engines/gl_common/evas_gl_core_private.h

index 1bf746e..6bb0960 100644 (file)
@@ -142,7 +142,7 @@ typedef enum _EVGL_Color_Bit
 {
    COLOR_NONE      = 0,
    COLOR_RGB_888   = 0x1,
-   COLOR_RGBA_8888 = 0x3,
+   COLOR_RGBA_8888 = 0x3, // XXX: eh? not 0x2
 } EVGL_Color_Bit;
 
 
@@ -150,20 +150,20 @@ typedef enum _EVGL_Depth_Bit
 {
    DEPTH_NONE   = 0,
    DEPTH_BIT_8  = 0x1,
-   DEPTH_BIT_16 = 0x3,
-   DEPTH_BIT_24 = 0x7,
-   DEPTH_BIT_32 = 0xF,
-   DEPTH_STENCIL = 0xFF, 
+   DEPTH_BIT_16 = 0x3, // XXX: eh? not 0x2
+   DEPTH_BIT_24 = 0x7, // XXX: eh? not 0x4
+   DEPTH_BIT_32 = 0xF, // XXX: eh? not 0x8
+   DEPTH_STENCIL = 0xFF, // XXX: eh? not 0x80
 } EVGL_Depth_Bit;
 
 typedef enum _EVGL_Stencil_Bit
 {
    STENCIL_NONE   = 0,
    STENCIL_BIT_1  = 0x1,
-   STENCIL_BIT_2  = 0x3,
-   STENCIL_BIT_4  = 0x7,
-   STENCIL_BIT_8  = 0xF,
-   STENCIL_BIT_16 = 0x1F,
+   STENCIL_BIT_2  = 0x3, // XXX: eh? not 0x2
+   STENCIL_BIT_4  = 0x7, // XXX: eh? not 0x4
+   STENCIL_BIT_8  = 0xF, // XXX: eh? not 0x8
+   STENCIL_BIT_16 = 0x1F, // XXX: eh? not 0x10
 } EVGL_Stencil_Bit;