summaryrefslogtreecommitdiffstats
path: root/canvas
Commit message (Collapse)AuthorAgeFilesLines
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-061-3/+2
|
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-061-10/+10
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-0618-18/+18
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)return \([^()]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *);/\1return \2 == \3;/' \{\} \;
* UniString::CreateFromInt32 -> rtl::OUString::valueOfCaolán McNamara2012-04-053-12/+12
|
* removed duplicate includes in avmedia / basic / canvas / chart2 / comphelperTakeshi Abe2012-03-282-3/+0
|
* removed duplicate includes in basic / canvas / chart2 / comphelperTakeshi Abe2012-03-261-1/+0
|
* compile these with exceptions againLuboš Luňák2012-03-171-1/+1
| | | | | a13a88bd2c673d059b60e339dcf3b8fabf991f18 changes them to build without exceptions by mistake, causing a boost problem
* Add missing component file for canvas.Thorsten Behrens2012-03-161-0/+36
|
* Cleanup formatting in cairocanvasThorsten Behrens2012-03-1619-589/+649
| | | | | White-space changes - code was in parts unreadable after tab/spaces conversion. While at it, removed a few lines of commented-out code.
* Add COMPHELPER_SERVICEDECL_EXPORTS* back in, after libmerge changesThorsten Behrens2012-03-167-55/+10
| | | | Did I mention I hate boilerplate copied all over the place? ;)
* Use transparency for gradients fdo#45219Thorsten Behrens2012-03-162-41/+42
| | | | | vclcanvas has 1bpp alpha - so cut-off transparency at 98% This looks for all practical cases close enough to full alpha.
* Return proper transparency value even for ignore_color.Thorsten Behrens2012-03-161-12/+12
| | | | | Rather unexpectedly, calling setupOutDevState() with IGNORE_COLOR does not return a proper transparency, but null. Fixed now.
* Make sure mask is rendered opaque in vclcanvas.Thorsten Behrens2012-03-161-0/+1
|
* Remove nasty xor hack for non-Mac vclcanvasThorsten Behrens2012-03-161-52/+0
| | | | This nowadays really is a pessimization.
* Another partial fix for fdo#45219Thorsten Behrens2012-03-161-17/+11
| | | | | Make sure transparent polygons really only cover the polygonal area, not the whole bounding box for sprites.
* Consistent use of alpha in cairocanvasThorsten Behrens2012-03-161-4/+4
| | | | | Use GetIndex() instead of GetBlue() (does the same, but more self-documenting); use opaque when no alpha channel consistently.
* fdo#47246: canvas: split out static library directxcanvasMichael Stahl2012-03-144-30/+71
|
* Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann2012-03-145-0/+15
| | | | | | | | | | | | | | ...which has the necessary features to support it. Change a lot of classes to either contain a protected non-virtual dtor (which is backwards compatible, so even works for cppumaker-generated UNO headers) or a public virtual one. cppuhelper/propertysetmixin.hxx still needs to disable the warning, as the relevant class has a non-virtual dtor but friends, which would still cause GCC to warn. Includes a patch for libcmis, intended to be upstreamed.
* gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan2012-03-106-6/+6
|
* Remove unused codeElton Chung2012-02-252-172/+0
|
* Fix fdo#45219 wrong transparency for animated objects.Thorsten Behrens2012-02-223-5/+4
| | | | | | With the attachement from said bug, and cairocanvas, sprites are displayed multiple times above each other (which, for semi- transparent sprites, lead to incorrect overall transparency)
* Fix typos in commentsElton Chung2012-02-182-2/+2
|
* mark parameter as unusedDavid Tardon2012-02-171-3/+1
|
* remove unused variableDavid Tardon2012-02-171-2/+0
|
* Remove unused codeElton Chung2012-02-132-50/+0
|
* Removing one obsolte GNUC check for GCC < 4.0.1Carsten Niehaus2012-02-101-6/+0
| | | | See https://bugs.freedesktop.org/show_bug.cgi?id=45131
* Added (and improved) READMEs for modules which used to be in libs-guiJosh Heidenreich2012-02-081-5/+5
|
* Remove obsolete quirk for text rotation.Thorsten Behrens2012-02-071-9/+0
| | | | | With 800806ba850c7fd03e37acb011fa993e08cb8fc8 matrix decompose returns the correct angle right away, no need to catch it here.
* switch to include-based build rather than sourced-based buildNorbert Thiebaud2012-02-051-35/+2
|
* Eliminate un-used DIRECTX5Norbert Thiebaud2012-02-054-2426/+0
|
* remove duplicate includeDavid Tardon2012-02-011-2/+0
|
* the depth argument must be >= 0David Tardon2012-02-011-1/+2
|
* transparency gradient effect fade in is wrong (fdo#45219)David Tardon2012-01-251-1/+2
|
* make slide transitions workDavid Tardon2012-01-241-1/+2
|
* WaE: unused iCaolán McNamara2012-01-131-1/+0
|
* Kill unused macro in canvas.Thorsten Behrens2012-01-091-2/+0
|
* Avoid pointless const_cast, use getConstArray in all cases.Thorsten Behrens2012-01-092-4/+4
| | | | | | Another code-review follow-up fix from fdo#44533 - don't use Sequence::getArray, that tends to create a new copy everytime you call.
* Fix more incorrect iterator re-use.Thorsten Behrens2012-01-091-9/+7
| | | | | Follow-up fix for 540963d879296ef81f883305057e63465b2ff586 std::algos use iterator arguments by value, and may change them.
* Fix crash when play particular presentation with soundjulien24122012-01-091-7/+8
| | | | This fixes fdo#44533.
* canvas: work around NOMINMAX windows breakageMichael Stahl2012-01-043-0/+7
|
* unusedcode: remove various unused classesMatúš Kukan2011-12-223-3/+0
|
* remove some unused codeCaolán McNamara2011-12-224-154/+0
|
* Removed extra semicolonsJesse2011-12-151-1/+1
|
* regpathhelper: unused, so we've got to have two of themCaolán McNamara2011-12-141-1/+0
|
* in modules, when we have a env we are in stage gbuildBjoern Michaelsen2011-12-071-0/+1
|
* fix annoying debugging-mode crashCaolán McNamara2011-12-061-1/+3
|
* typo fix: explicitely -> explicitlyLior Kaplan2011-12-0113-15/+15
|
* catch by constant referenceTakeshi Abe2011-11-304-8/+8
|
* move reconfigure into gbuildBjoern Michaelsen2011-11-291-1/+1
|
* remove precompiled_xxx.hxx/cxxNorbert Thiebaud2011-11-272-63/+0
|