Lines Matching refs:aBmp
958 BitmapEx aBmp = vcl::unotools::bitmapExFromXBitmap(xTestBmp); in Paint() local
959 test( aBmp.IsTransparent() == false, in Paint()
961 test( aBmp.GetSizePixel() == Size(10,10), in Paint()
963 test( aBmp.GetBitCount() == 8, in Paint()
966 BitmapReadAccess* pBmpAcc = aBmp.GetBitmap().AcquireReadAccess(); in Paint()
978 aBmp.GetBitmap().ReleaseAccess(pBmpAcc); in Paint()
983 aBmp = vcl::unotools::bitmapExFromXBitmap(xTestBmp); in Paint()
984 test( aBmp.IsTransparent() == TRUE, in Paint()
986 test( aBmp.IsAlpha() == TRUE, in Paint()
988 test( aBmp.GetSizePixel() == Size(10,10), in Paint()
990 test( aBmp.GetBitCount() == 24, in Paint()
993 BitmapReadAccess* pBmpAcc = aBmp.GetBitmap().AcquireReadAccess(); in Paint()
994 BitmapReadAccess* pAlphaAcc = aBmp.GetAlpha().AcquireReadAccess(); in Paint()
1014 aBmp.GetAlpha().ReleaseAccess(pAlphaAcc); in Paint()
1015 aBmp.GetBitmap().ReleaseAccess(pBmpAcc); in Paint()