summaryrefslogtreecommitdiff
path: root/include/vcl/test
diff options
context:
space:
mode:
authorhomeboy445 <akshitsan13@gmail.com>2021-07-22 17:05:33 +0530
committerTomaž Vajngerl <quikee@gmail.com>2021-08-27 05:29:35 +0200
commitc46d2c25ee790d02a97ed6bc7403571a2a0823bd (patch)
tree0cb381ab46112cc405679b27d47770b6ef10e257 /include/vcl/test
parent9ed35109abb4179a3ab77498f550b4b9868e9cbc (diff)
backendtest: Test Drawing Bitmap other than 24bpp
This test draws bitmap formats other than 24bpp - namely 32bpp and 8bpp greyscale. Change-Id: I1b21214429be08fc7cf1eb086c2ad8946780f481 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119371 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include/vcl/test')
-rw-r--r--include/vcl/test/GraphicsRenderTests.hxx17
1 files changed, 12 insertions, 5 deletions
diff --git a/include/vcl/test/GraphicsRenderTests.hxx b/include/vcl/test/GraphicsRenderTests.hxx
index dee521438edc..41cbe561b483 100644
--- a/include/vcl/test/GraphicsRenderTests.hxx
+++ b/include/vcl/test/GraphicsRenderTests.hxx
@@ -81,11 +81,18 @@ class VCL_PLUGIN_PUBLIC GraphicsRenderTests
void testDrawBezierAAWithPolylineB2D();
void testDrawDropShapeWithPolygon();
void testDrawDropShapeAAWithPolygon();
- void testDrawBitmap();
- void testDrawTransformedBitmap();
- void testDrawBitmapExWithAlpha();
- void testDrawMask();
- void testDrawBlend();
+ void testDrawBitmap24bpp();
+ void testDrawTransformedBitmap24bpp();
+ void testDrawBitmapExWithAlpha24bpp();
+ void testDrawMask24bpp();
+ void testDrawBlend24bpp();
+ void testDrawBitmap32bpp();
+ void testDrawTransformedBitmap32bpp();
+ void testDrawBitmapExWithAlpha32bpp();
+ void testDrawMask32bpp();
+ void testDrawBlend32bpp();
+ void testDrawBitmap8bppGreyScale();
+ void testDrawTransformedBitmap8bppGreyScale();
void testDrawXor();
void testClipRectangle();
void testClipPolygon();