diff options
author | Thorsten Behrens <thb@openoffice.org> | 2006-07-12 21:47:21 +0000 |
---|---|---|
committer | Thorsten Behrens <thb@openoffice.org> | 2006-07-12 21:47:21 +0000 |
commit | 053fdb6c0d6862bb0110917edc5d31ff764fdea8 (patch) | |
tree | db2254c2b97af75974ce067cad981cdf4bdf1772 /basebmp/test/bmpdemo.cxx | |
parent | 41aac5e01a735244839680528ae6245f1520ceee (diff) |
#i65904# Fixed operator+=/-= on PackedPixelRowIterator (wrong overflow handling & forgot to handle negated cases); fixed typo for paletteformats (ignoring bit gravity); made drawMaskedBitmap() work for more cases; improved tests
Diffstat (limited to 'basebmp/test/bmpdemo.cxx')
-rw-r--r-- | basebmp/test/bmpdemo.cxx | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/basebmp/test/bmpdemo.cxx b/basebmp/test/bmpdemo.cxx index fc5c7752fe06..b8cb431a2321 100644 --- a/basebmp/test/bmpdemo.cxx +++ b/basebmp/test/bmpdemo.cxx @@ -4,9 +4,9 @@ * * $RCSfile: bmpdemo.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: thb $ $Date: 2006-07-11 11:38:56 $ + * last change: $Author: thb $ $Date: 2006-07-12 22:47:21 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -1086,6 +1086,12 @@ void TestWindow::Paint( const Rectangle& rRect ) false, basebmp::Format::ONE_BIT_MSB_GREY )); + const basegfx::B2IPoint aPt111(10,10); + const basegfx::B2IPoint aPt222(0,10); + const basebmp::Color aCol333(0xFFFFFFFF); + pMask->drawLine( aPt111, aPt222, aCol333, basebmp::DrawMode_PAINT ); + + ::rtl::OUString aSvg = ::rtl::OUString::createFromAscii( "m 0 0 h5 l5 5 v5 h-5 l-5-5 z" ); basegfx::B2DPolyPolygon aPoly; @@ -1173,9 +1179,6 @@ void TestWindow::Paint( const Rectangle& rRect ) aPoint.setY( (int)((((double)aP2.getY())*cosd + ((double)aP2.getX())*sind)*factor) ); aP2 = aPoint; } - - std::ofstream output4("svptest.dump"); - debugDump( pDevice, output4 ); } Bitmap aBitmap( Size(aTestSize.getX(), |