summaryrefslogtreecommitdiff
path: root/basebmp/source/debug.cxx
diff options
context:
space:
mode:
authorThorsten Behrens <thb@openoffice.org>2006-07-06 09:02:07 +0000
committerThorsten Behrens <thb@openoffice.org>2006-07-06 09:02:07 +0000
commit8b7ded16f1756beeb1489709a35fbc19d76e42de (patch)
tree65dc26b293ce107b799882dd3497b42fcbd5065b /basebmp/source/debug.cxx
parent58254b2673dda4a31fb38ae6765c8ac85e332135 (diff)
#i65904# Reworked accessor framework, is now a hierarchy of nested functionality; added traits for color, iterator and accessor behaviour; finished missing bitmap formats, slightly changed set of predefined formats; swapped order of xor/palette accessor application for the BitmapDevice, which should yield much more sensible results; added a few tests for the new formats
Diffstat (limited to 'basebmp/source/debug.cxx')
-rw-r--r--basebmp/source/debug.cxx18
1 files changed, 10 insertions, 8 deletions
diff --git a/basebmp/source/debug.cxx b/basebmp/source/debug.cxx
index 19b799879d0a..8f3d1c5edcf4 100644
--- a/basebmp/source/debug.cxx
+++ b/basebmp/source/debug.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: debug.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: thb $ $Date: 2006-06-07 14:27:36 $
+ * last change: $Author: thb $ $Date: 2006-07-06 10:00:41 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -87,10 +87,10 @@ namespace basebmp
return "ONE_BIT_MSB_PAL";
case Format::ONE_BIT_LSB_PAL:
return "ONE_BIT_LSB_PAL";
- case Format::TWO_BIT_MSB_PAL:
- return "TWO_BIT_MSB_PAL";
- case Format::TWO_BIT_LSB_PAL:
- return "TWO_BIT_LSB_PAL";
+ case Format::FOUR_BIT_MSB_GRAY:
+ return "FOUR_BIT_MSB_GRAY";
+ case Format::FOUR_BIT_LSB_GRAY:
+ return "FOUR_BIT_LSB_GRAY";
case Format::FOUR_BIT_MSB_PAL:
return "FOUR_BIT_MSB_PAL";
case Format::FOUR_BIT_LSB_PAL:
@@ -99,8 +99,10 @@ namespace basebmp
return "EIGHT_BIT_PAL";
case Format::EIGHT_BIT_GRAY:
return "EIGHT_BIT_GRAY";
- case Format::SIXTEEN_BIT_TC_MASK:
- return "SIXTEEN_BIT_TC_MASK";
+ case Format::SIXTEEN_BIT_LSB_TC_MASK:
+ return "SIXTEEN_BIT_LSB_TC_MASK";
+ case Format::SIXTEEN_BIT_MSB_TC_MASK:
+ return "SIXTEEN_BIT_MSB_TC_MASK";
case Format::TWENTYFOUR_BIT_TC_MASK:
return "TWENTYFOUR_BIT_TC_MASK";
case Format::THIRTYTWO_BIT_TC_MASK: