Lines Matching refs:rScaleY
907 sal_Bool Bitmap::Scale( const double& rScaleX, const double& rScaleY, sal_uInt32 nScaleFlag ) in Scale() argument
909 if(basegfx::fTools::equalZero(rScaleX) || basegfx::fTools::equalZero(rScaleY)) in Scale()
915 if(basegfx::fTools::equal(rScaleX, 1.0) && basegfx::fTools::equal(rScaleY, 1.0)) in Scale()
965 bRetval = ImplScaleFast( rScaleX, rScaleY ); in Scale()
970 bRetval = ImplScaleInterpolate( rScaleX, rScaleY ); in Scale()
978 bRetval = ImplScaleFast( rScaleX, rScaleY ); in Scale()
983 bRetval = ImplScaleSuper( rScaleX, rScaleY ); in Scale()
991 bRetval = ImplScaleConvolution( rScaleX, rScaleY, kernel); in Scale()
998 bRetval = ImplScaleConvolution( rScaleX, rScaleY, kernel ); in Scale()
1005 bRetval = ImplScaleConvolution( rScaleX, rScaleY, kernel ); in Scale()
1012 bRetval = ImplScaleConvolution( rScaleX, rScaleY, kernel ); in Scale()
1107 sal_Bool Bitmap::ImplScaleFast( const double& rScaleX, const double& rScaleY ) in ImplScaleFast() argument
1111 const long nNewHeight = FRound( aSizePix.Height() * rScaleY ); in ImplScaleFast()
1178 sal_Bool Bitmap::ImplScaleInterpolate( const double& rScaleX, const double& rScaleY ) in ImplScaleInterpolate() argument
1182 const long nNewHeight = FRound( aSizePix.Height() * rScaleY ); in ImplScaleInterpolate()
1358 bRet = ImplScaleFast( rScaleX, rScaleY ); in ImplScaleInterpolate()
1369 const double& rScaleY ) in ImplScaleSuper() argument
1373 bool bVMirr = ( rScaleY < 0 ); in ImplScaleSuper()
1375 double scaleY = bVMirr ? -rScaleY : rScaleY; in ImplScaleSuper()
2329 const double& rScaleY, in ImplScaleConvolutionVer() argument
2333 OSL_ENSURE(rScaleY > 0.0, "Error in scaling: Mirror given in non-mirror-capable method (!)"); in ImplScaleConvolutionVer()
2335 const sal_uInt32 nNewHeight(FRound(nHeight * rScaleY)); in ImplScaleConvolutionVer()
2430 const double& rScaleY, in ImplScaleConvolution() argument
2434 const bool bMirrorVer(rScaleY < 0.0); in ImplScaleConvolution()
2436 const double fScaleY(bMirrorVer ? -rScaleY : rScaleY); in ImplScaleConvolution()