diff options
author | Armin Le Grand <alg@apache.org> | 2013-05-10 08:48:11 +0000 |
---|---|---|
committer | Armin Le Grand <alg@apache.org> | 2013-05-10 08:48:11 +0000 |
commit | 144eb666b72516ef78c15424087800dff1be5cfd (patch) | |
tree | a967495aa99f41b012fb16d05690182d311d1708 /vcl/inc | |
parent | be3f41391a4eb370080be25c6857066a21cb6fdd (diff) |
i110384 added better fat line rendering where possible
Notes
Notes:
merged as: 02da9f7a917ffc68dfe7a44c8d03b272cb5bfc18
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/vcl/outdev.hxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vcl/inc/vcl/outdev.hxx b/vcl/inc/vcl/outdev.hxx index 8161fc6cab80..7c413fe36be8 100644 --- a/vcl/inc/vcl/outdev.hxx +++ b/vcl/inc/vcl/outdev.hxx @@ -562,6 +562,7 @@ public: SAL_DLLPRIVATE bool ImpTryDrawPolyLineDirect( const basegfx::B2DPolygon& rB2DPolygon, double fLineWidth = 0.0, + double fTransparency = 0.0, basegfx::B2DLineJoin eLineJoin = basegfx::B2DLINEJOIN_NONE, com::sun::star::drawing::LineCap eLineCap = com::sun::star::drawing::LineCap_BUTT); @@ -699,6 +700,12 @@ public: double fLineWidth = 0.0, basegfx::B2DLineJoin = basegfx::B2DLINEJOIN_ROUND, com::sun::star::drawing::LineCap = com::sun::star::drawing::LineCap_BUTT); + bool TryDrawPolyLineDirect( + const basegfx::B2DPolygon& rB2DPolygon, + double fLineWidth = 0.0, + double fTransparency = 0.0, + basegfx::B2DLineJoin eLineJoin = basegfx::B2DLINEJOIN_NONE, + com::sun::star::drawing::LineCap eLineCap = com::sun::star::drawing::LineCap_BUTT); /** Render the given polygon as a line stroke |