summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--image/bitmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/image/bitmap.h b/image/bitmap.h
index 7ef1e9c93..c9bd4cdde 100644
--- a/image/bitmap.h
+++ b/image/bitmap.h
@@ -22,7 +22,7 @@
* This interface wraps the native platform-specific image format, so that
* portable image convertors can be written.
*
- * The bitmap format is either RGBA.
+ * The bitmap format is ABGR.
*/
#ifndef _NETSURF_IMAGE_BITMAP_H_
@@ -39,7 +39,7 @@
#define BITMAP_SUSPENDED (1 << 4) /** currently suspended */
#define BITMAP_READY (1 << 5) /** fully initialised */
-#define BITMAP_SAVE_FULL_ALPHA (1 << 0) /** save with full alpha channel (if not opaque) */
+#define BITMAP_SAVE_FULL_ALPHA (1 << 0) /** save with full alpha channel (if not opaque) */
struct content;