summaryrefslogtreecommitdiff
path: root/include/basebmp
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-07-12 11:05:51 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-07-12 14:41:35 +0200
commitb00a99e4af0cf47642a139778a230cc61d1347d9 (patch)
treef325ccd996416caccb8f0b9d66f79537747e44ca /include/basebmp
parent04d937c1ec36c2d9fa8c90604c81a37d30e97da6 (diff)
THIRTYTWO_BIT_TC_MASK is the same as THIRTYTWO_BIT_TC_MASK_BGRA
Change-Id: I917c4136614664a1816769300707f170312c885d
Diffstat (limited to 'include/basebmp')
-rw-r--r--include/basebmp/scanlineformats.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/basebmp/scanlineformats.hxx b/include/basebmp/scanlineformats.hxx
index a1708980b5ac..daac381e810a 100644
--- a/include/basebmp/scanlineformats.hxx
+++ b/include/basebmp/scanlineformats.hxx
@@ -40,10 +40,9 @@ namespace basebmp { namespace Format
static const sal_Int32 SIXTEEN_BIT_LSB_TC_MASK = (sal_Int32)0x0B;
static const sal_Int32 SIXTEEN_BIT_MSB_TC_MASK = (sal_Int32)0x0C;
static const sal_Int32 TWENTYFOUR_BIT_TC_MASK = (sal_Int32)0x0D;
- static const sal_Int32 THIRTYTWO_BIT_TC_MASK = (sal_Int32)0x0E;
// The order of the channels code letters indicates the order of the
// channel bytes in memory, I think
- static const sal_Int32 THIRTYTWO_BIT_TC_MASK_BGRA = THIRTYTWO_BIT_TC_MASK;
+ static const sal_Int32 THIRTYTWO_BIT_TC_MASK_BGRA = (sal_Int32)0x0E;
static const sal_Int32 THIRTYTWO_BIT_TC_MASK_ARGB = (sal_Int32)0x0F;
static const sal_Int32 THIRTYTWO_BIT_TC_MASK_ABGR = (sal_Int32)0x10;
static const sal_Int32 THIRTYTWO_BIT_TC_MASK_RGBA = (sal_Int32)0x11;