From 6e90a37990ac19a541e61422159bbd30ca3565e7 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Thu, 18 Apr 2013 18:56:44 +0900 Subject: [PATCH] comments for sungwoo when he gets back... --- .../engines/gl_common/evas_gl_core_private.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/modules/evas/engines/gl_common/evas_gl_core_private.h b/src/modules/evas/engines/gl_common/evas_gl_core_private.h index 1bf746e427..6bb0960a5c 100644 --- a/src/modules/evas/engines/gl_common/evas_gl_core_private.h +++ b/src/modules/evas/engines/gl_common/evas_gl_core_private.h @@ -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;