summaryrefslogtreecommitdiff
path: root/vcl/qa/cppunit
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2014-12-15 18:36:32 +0100
committerLuboš Luňák <l.lunak@collabora.com>2014-12-15 18:38:09 +0100
commit9dc134a6df9255b4ca294cd2e9b88026624e6125 (patch)
tree1ae7402f0e613cd449c19f4fdba46d3370d86165 /vcl/qa/cppunit
parent72d8747ad95dbde1d3511b0fe48cd72999a43faf (diff)
do not hardcode what specific "generic" bitmap scaling operations use
I.e. make it possible for the opengl backend to decide to use a different scaling algorithm. Change-Id: I36e76de071797129c7636b3048c93bc6e5d93aca
Diffstat (limited to 'vcl/qa/cppunit')
-rw-r--r--vcl/qa/cppunit/graphicfilter/filters-test.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/qa/cppunit/graphicfilter/filters-test.cxx b/vcl/qa/cppunit/graphicfilter/filters-test.cxx
index 48b1045f14b7..0b04dbf0e9ef 100644
--- a/vcl/qa/cppunit/graphicfilter/filters-test.cxx
+++ b/vcl/qa/cppunit/graphicfilter/filters-test.cxx
@@ -62,7 +62,7 @@ bool VclFiltersTest::load(const OUString &,
void VclFiltersTest::testScaling()
{
- for (unsigned int i = BMP_SCALE_FAST; i <= BMP_SCALE_BOX; i++)
+ for (unsigned int i = BMP_SCALE_NONE + 1; i <= BMP_SCALE_BOX; i++)
{
Bitmap aBitmap( Size( 413, 409 ), 24 );
BitmapEx aBitmapEx( aBitmap );