summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2008-05-16 23:04:41 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2008-05-16 23:04:41 +0000
commit181573d0810cd8357916fa78cbcf0f9da44dc3e5 (patch)
tree886d841b21f4fb00a40df750b5d3dfb759a0751c
parentfbb483e0ff02d6295ee0fb320c27c325a6182d5e (diff)
downloadnetsurf-181573d0810cd8357916fa78cbcf0f9da44dc3e5.tar.gz
netsurf-181573d0810cd8357916fa78cbcf0f9da44dc3e5.tar.bz2
Fix bitmap format comment.
svn path=/trunk/netsurf/; revision=4168
-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;