Home
last modified time | relevance | path

Searched refs:rColors (Results 1 – 6 of 6) sorted by relevance

/trunk/main/canvas/source/vcl/
H A Dcanvashelper_texturefill.cxx124 const std::vector< ::Color >& rColors ) in fillLinearGradient()
207 if( (rColors.size() % 2) != (nStepCount % 2) ) in fillLinearGradient()
223 …Color( (sal_uInt8)(basegfx::tools::lerp(rColors[nIndex].GetRed(),rColors[nIndex+1].GetRed(),fAlpha… in fillLinearGradient()
224 … (sal_uInt8)(basegfx::tools::lerp(rColors[nIndex].GetGreen(),rColors[nIndex+1].GetGreen(),fAlpha)), in fillLinearGradient()
225 …(sal_uInt8)(basegfx::tools::lerp(rColors[nIndex].GetBlue(),rColors[nIndex+1].GetBlue(),fAlpha)) )); in fillLinearGradient()
272 rOutDev.SetFillColor( rColors.back() ); in fillLinearGradient()
283 const std::vector< ::Color >& rColors ) in fillPolygonalGradient()
374 rOutDev.SetFillColor( rColors.front() ); in fillPolygonalGradient()
390 …Color( (sal_uInt8)(basegfx::tools::lerp(rColors[nIndex].GetRed(),rColors[nIndex+1].GetRed(),fAlpha… in fillPolygonalGradient()
391 … (sal_uInt8)(basegfx::tools::lerp(rColors[nIndex].GetGreen(),rColors[nIndex+1].GetGreen(),fAlpha)), in fillPolygonalGradient()
[all …]
/trunk/main/canvas/source/directx/
H A Ddx_canvashelper_texturefill.cxx65 const std::vector< Gdiplus::Color >& rColors, in fillLinearGradient()
78 rColors[0], in fillLinearGradient()
79 rColors[1] ); in fillLinearGradient()
81 aBrush.SetInterpolationColors(&rColors[0], in fillLinearGradient()
83 rColors.size()); in fillLinearGradient()
87 Gdiplus::SolidBrush aBackgroundBrush( rColors[0] ); in fillLinearGradient()
161 Gdiplus::SolidBrush aBackgroundBrush2( rColors.back() ); in fillLinearGradient()
207 const std::vector< Gdiplus::Color >& rColors, in fillPolygonalGradient()
223 Gdiplus::SolidBrush aBackgroundBrush( rColors[0] ); in fillPolygonalGradient()
263 for( size_t i=0; i<rColors.size()-1; ++i ) in fillPolygonalGradient()
[all …]
/trunk/main/canvas/source/tools/
H A Dparametricpolypolygon.cxx237 … const uno::Sequence< uno::Sequence< double > >& rColors, in ParametricPolyPolygon()
242 rColors, in ParametricPolyPolygon()
252 … const uno::Sequence< uno::Sequence< double > >& rColors, in ParametricPolyPolygon()
258 rColors, in ParametricPolyPolygon()
267 … const uno::Sequence< uno::Sequence< double > >& rColors, in ParametricPolyPolygon()
272 rColors, in ParametricPolyPolygon()
/trunk/main/canvas/inc/canvas/
H A Dparametricpolypolygon.hxx71 … const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< double > >& rColors, in Values()
77 maColors( rColors ), in Values()
/trunk/main/sc/source/ui/app/
H A Dscmod.cxx218 const svtools::ColorConfig& rColors = GetColorConfig(); in ConfigurationChanged() local
220 …( ScDetectiveFunc::GetArrowColor() != (ColorData)rColors.GetColorValue(svtools::CALCDETECTIVE).nCo… in ConfigurationChanged()
221 …ScDetectiveFunc::GetErrorColor() != (ColorData)rColors.GetColorValue(svtools::CALCDETECTIVEERROR).… in ConfigurationChanged()
223 …( ScDetectiveFunc::GetCommentColor() != (ColorData)rColors.GetColorValue(svtools::CALCNOTESBACKGRO… in ConfigurationChanged()
/trunk/main/canvas/source/cairo/
H A Dcairo_canvashelper.cxx657 …tops( Pattern* pPattern, const uno::Sequence< uno::Sequence< double > >& rColors, const uno::Seque… in addColorStops() argument
662 OSL_ASSERT( rColors.getLength() == rStops.getLength() ); in addColorStops()
664 for( i = 0; i < rColors.getLength(); i++ ) { in addColorStops()
665 const uno::Sequence< double >& rColor( rColors[i] ); in addColorStops()