summaryrefslogtreecommitdiff
path: root/basebmp/test
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 /basebmp/test
parent04d937c1ec36c2d9fa8c90604c81a37d30e97da6 (diff)
THIRTYTWO_BIT_TC_MASK is the same as THIRTYTWO_BIT_TC_MASK_BGRA
Change-Id: I917c4136614664a1816769300707f170312c885d
Diffstat (limited to 'basebmp/test')
-rw-r--r--basebmp/test/basictest.cxx2
-rw-r--r--basebmp/test/bmpdemo.cxx2
-rw-r--r--basebmp/test/bmpmasktest.cxx4
-rw-r--r--basebmp/test/bmptest.cxx4
-rw-r--r--basebmp/test/cliptest.cxx2
-rw-r--r--basebmp/test/filltest.cxx2
-rw-r--r--basebmp/test/linetest.cxx2
-rw-r--r--basebmp/test/masktest.cxx2
-rw-r--r--basebmp/test/polytest.cxx2
9 files changed, 11 insertions, 11 deletions
diff --git a/basebmp/test/basictest.cxx b/basebmp/test/basictest.cxx
index 9e625c2e931d..e9e2dbe67ed8 100644
--- a/basebmp/test/basictest.cxx
+++ b/basebmp/test/basictest.cxx
@@ -266,7 +266,7 @@ public:
{
pDevice = createBitmapDevice( aSize,
true,
- Format::THIRTYTWO_BIT_TC_MASK );
+ Format::THIRTYTWO_BIT_TC_MASK_BGRA );
const Color aCol4(0x01010101);
pDevice->setPixel( aPt, aCol4, DrawMode_PAINT );
diff --git a/basebmp/test/bmpdemo.cxx b/basebmp/test/bmpdemo.cxx
index ae24c65bd22d..62d9b2262c8a 100644
--- a/basebmp/test/bmpdemo.cxx
+++ b/basebmp/test/bmpdemo.cxx
@@ -1055,7 +1055,7 @@ void TestWindow::Paint( const Rectangle& /*rRect*/ )
basegfx::B2ISize aTestSize(1000,1000);
basebmp::BitmapDeviceSharedPtr pDevice( basebmp::createBitmapDevice( aTestSize,
false,
- basebmp::Format::THIRTYTWO_BIT_TC_MASK ));
+ basebmp::Format::THIRTYTWO_BIT_TC_MASK_BGRA ));
{
OUString aSvg;
diff --git a/basebmp/test/bmpmasktest.cxx b/basebmp/test/bmpmasktest.cxx
index 500ba91667d4..6f9a604a2503 100644
--- a/basebmp/test/bmpmasktest.cxx
+++ b/basebmp/test/bmpmasktest.cxx
@@ -96,7 +96,7 @@ public:
Format::ONE_BIT_MSB_PAL );
mpDevice32bpp = createBitmapDevice( aSize,
true,
- Format::THIRTYTWO_BIT_TC_MASK );
+ Format::THIRTYTWO_BIT_TC_MASK_BGRA );
mpMaskBmp1bpp = createBitmapDevice( aSize,
true,
@@ -107,7 +107,7 @@ public:
Format::ONE_BIT_MSB_PAL );
mpBmp32bpp = createBitmapDevice( aSize,
true,
- Format::THIRTYTWO_BIT_TC_MASK );
+ Format::THIRTYTWO_BIT_TC_MASK_BGRA );
OUString aSvg( "m 0 0h5v10h5v-5h-10z" );
diff --git a/basebmp/test/bmptest.cxx b/basebmp/test/bmptest.cxx
index 376b24f4ff2e..37fd4b5155d9 100644
--- a/basebmp/test/bmptest.cxx
+++ b/basebmp/test/bmptest.cxx
@@ -153,14 +153,14 @@ public:
Format::ONE_BIT_MSB_PAL );
mpDevice32bpp = createBitmapDevice( aSize,
true,
- Format::THIRTYTWO_BIT_TC_MASK );
+ Format::THIRTYTWO_BIT_TC_MASK_BGRA );
mpBmp1bpp = createBitmapDevice( aSize,
true,
Format::ONE_BIT_MSB_PAL );
mpBmp32bpp = createBitmapDevice( aSize,
true,
- Format::THIRTYTWO_BIT_TC_MASK );
+ Format::THIRTYTWO_BIT_TC_MASK_BGRA );
OUString aSvg( "m 0 0h5v10h5v-5h-10z" );
diff --git a/basebmp/test/cliptest.cxx b/basebmp/test/cliptest.cxx
index 21f94aa5474c..aa0c15a01483 100644
--- a/basebmp/test/cliptest.cxx
+++ b/basebmp/test/cliptest.cxx
@@ -196,7 +196,7 @@ public:
Format::ONE_BIT_MSB_PAL );
mpDevice32bpp = createBitmapDevice( aSize,
true,
- Format::THIRTYTWO_BIT_TC_MASK );
+ Format::THIRTYTWO_BIT_TC_MASK_BGRA );
OUString aSvg( "m 0 0 h5 l5 5 v5 h-5 l-5-5 z" );
basegfx::B2DPolyPolygon aPoly;
diff --git a/basebmp/test/filltest.cxx b/basebmp/test/filltest.cxx
index a6e87e4cf5bc..a393144ab411 100644
--- a/basebmp/test/filltest.cxx
+++ b/basebmp/test/filltest.cxx
@@ -214,7 +214,7 @@ public:
Format::ONE_BIT_MSB_PAL );
mpDevice32bpp = createBitmapDevice( aSize,
true,
- Format::THIRTYTWO_BIT_TC_MASK );
+ Format::THIRTYTWO_BIT_TC_MASK_BGRA );
}
void testRectFill()
diff --git a/basebmp/test/linetest.cxx b/basebmp/test/linetest.cxx
index cf5f3942befd..9943a399a335 100644
--- a/basebmp/test/linetest.cxx
+++ b/basebmp/test/linetest.cxx
@@ -154,7 +154,7 @@ public:
Format::ONE_BIT_MSB_PAL );
mpDevice32bpp = createBitmapDevice( aSize,
true,
- Format::THIRTYTWO_BIT_TC_MASK );
+ Format::THIRTYTWO_BIT_TC_MASK_BGRA );
}
void testCornerCases()
diff --git a/basebmp/test/masktest.cxx b/basebmp/test/masktest.cxx
index 052db904ea24..4b2aebb70640 100644
--- a/basebmp/test/masktest.cxx
+++ b/basebmp/test/masktest.cxx
@@ -107,7 +107,7 @@ public:
Format::ONE_BIT_MSB_PAL );
mpDevice32bpp = createBitmapDevice( aSize,
true,
- Format::THIRTYTWO_BIT_TC_MASK );
+ Format::THIRTYTWO_BIT_TC_MASK_BGRA );
mpMask = createBitmapDevice( aSize,
true,
diff --git a/basebmp/test/polytest.cxx b/basebmp/test/polytest.cxx
index cfc02b4c2ab6..e07508b16c90 100644
--- a/basebmp/test/polytest.cxx
+++ b/basebmp/test/polytest.cxx
@@ -295,7 +295,7 @@ public:
Format::ONE_BIT_MSB_PAL );
mpDevice32bpp = createBitmapDevice( aSize,
true,
- Format::THIRTYTWO_BIT_TC_MASK );
+ Format::THIRTYTWO_BIT_TC_MASK_BGRA );
}
void testEmpty()