* clutter/cogl/cogl.h.in (COGL_A_BIT): Added the missing comma after

COGL_PIXEL_FORMAT_G_8
This commit is contained in:
Neil Roberts 2008-04-28 16:03:06 +00:00
parent 451dce3600
commit 18826f3b04
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-04-28 Neil Roberts <neil@o-hand.com>
* clutter/cogl/cogl.h.in (COGL_A_BIT): Added the missing comma
after COGL_PIXEL_FORMAT_G_8
2008-04-28 Emmanuele Bassi <ebassi@openedhand.com>
* autogen.sh: Do not just touch the gtk-doc.make file, if we

View File

@ -96,7 +96,7 @@ typedef enum
COGL_PIXEL_FORMAT_RGBA_4444 = 5 | COGL_A_BIT,
COGL_PIXEL_FORMAT_RGBA_5551 = 6 | COGL_A_BIT,
COGL_PIXEL_FORMAT_YUV = 7,
COGL_PIXEL_FORMAT_G_8 = 8
COGL_PIXEL_FORMAT_G_8 = 8,
COGL_PIXEL_FORMAT_RGB_888 = COGL_PIXEL_FORMAT_24,