diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-02-25 15:31:43 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-02-25 17:06:15 +0000 |
commit | daf248bf85f4fa5fc212b6c75cf3b74fb25b3e26 (patch) | |
tree | 6b729a970a8b0dfa3bbbb7eb0c5620bf915bc644 /basebmp | |
parent | f974db5d89eacf0c23e303c22c62972014e9db16 (diff) |
rename BGRX32 etc to BGRA32
Change-Id: I60e1951fe56e4b00ee0caa142eb0e19dcb6d12b7
Diffstat (limited to 'basebmp')
-rw-r--r-- | basebmp/source/bitmapdevice.cxx | 8 |
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 ); |