summaryrefslogtreecommitdiffstats
path: root/basebmp/source
diff options
context:
space:
mode:
Diffstat (limited to 'basebmp/source')
-rw-r--r--basebmp/source/bitmapdevice.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/basebmp/source/bitmapdevice.cxx b/basebmp/source/bitmapdevice.cxx
index 60ad322fc1cb..a9fe6a1a3fb7 100644
--- a/basebmp/source/bitmapdevice.cxx
+++ b/basebmp/source/bitmapdevice.cxx
@@ -2092,22 +2092,22 @@ BitmapDeviceSharedPtr createBitmapDeviceImplInner( const basegfx::B2IVector&
// thirtytwo bit formats
case FORMAT_THIRTYTWO_BIT_TC_MASK_BGRA:
- return createRenderer<PixelFormatTraits_BGRX32_8888,StdMasks>(
+ return createRenderer<PixelFormatTraits_BGRA32_8888,StdMasks>(
aBounds, rSize, nScanlineFormat, nScanlineStride,
pFirstScanline, pMem, pPal, rDamage );
case FORMAT_THIRTYTWO_BIT_TC_MASK_ARGB:
- return createRenderer<PixelFormatTraits_XRGB32_8888,StdMasks>(
+ return createRenderer<PixelFormatTraits_ARGB32_8888,StdMasks>(
aBounds, rSize, nScanlineFormat, nScanlineStride,
pFirstScanline, pMem, pPal, rDamage );
case FORMAT_THIRTYTWO_BIT_TC_MASK_ABGR:
- return createRenderer<PixelFormatTraits_XBGR32_8888,StdMasks>(
+ return createRenderer<PixelFormatTraits_ABGR32_8888,StdMasks>(
aBounds, rSize, nScanlineFormat, nScanlineStride,
pFirstScanline, pMem, pPal, rDamage );
case FORMAT_THIRTYTWO_BIT_TC_MASK_RGBA:
- return createRenderer<PixelFormatTraits_RGBX32_8888,StdMasks>(
+ return createRenderer<PixelFormatTraits_RGBA32_8888,StdMasks>(
aBounds, rSize, nScanlineFormat, nScanlineStride,
pFirstScanline, pMem, pPal, rDamage );