Index: uspace/lib/gfx/include/types/gfx/bitmap.h
===================================================================
--- uspace/lib/gfx/include/types/gfx/bitmap.h	(revision 32066f212544b2a8c1b50acaa18a90c0e476d812)
+++ uspace/lib/gfx/include/types/gfx/bitmap.h	(revision 4ed00d3638fbbf6827906cc823e1d277fbad9277)
@@ -47,8 +47,10 @@
 /** Bitmap flags */
 typedef enum {
+	/** Directly map GC output into this bitmap */
+	bmpf_direct_output = 0x1,
 	/** Enable color key */
-	bmpf_color_key = 0x1,
-	/** Directly map GC output into this bitmap */
-	bmpf_direct_output = 0x2
+	bmpf_color_key = 0x2,
+	/** Paint non-background pixels with current drawing color */
+	bmpf_colorize = 0x4
 } gfx_bitmap_flags_t;
 
