Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-05-16 | remove unneeded include of boost/bind.hpp | Caolán McNamara | |
Change-Id: I5a254459a491b9547530d8e312260dceed21f25c | |||
2012-05-09 | Related: fdo#48961 don't crash on silly pixmap sizes | Caolán McNamara | |
Change-Id: I43dbe846160d19b203ad6bed06e807d4fbf7ce56 | |||
2012-05-03 | Remove unused method canvas::tools::clipBlit | Jordi Mallach | |
2012-05-01 | rework callcatcher makefile to build subsequentcheck tests | Caolán McNamara | |
Change-Id: Idda0262e62e42817b8c0502a38ee16913495233c | |||
2012-04-30 | Some removing in cairocanvas | Julien Nabet | |
Change-Id: Idd08fd733670f4410349a45de882710b19a31f67 | |||
2012-04-29 | make gbuild the default assumption of build.pl | Bjoern Michaelsen | |
this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b | |||
2012-04-26 | Updated canvas readme to contemporary state of things. | Thorsten Behrens | |
2012-04-26 | Add trolling comments | Tor Lillqvist | |
2012-04-26 | WaE: msvc2008 unused formal parameter | Caolán McNamara | |
2012-04-23 | bomb out compilation of cairo canvas for mac or windows | Michael Meeks | |
This is to avoid unintended regressions based on configure options. | |||
2012-04-15 | Nah, don't obscure the right type with void* | Tor Lillqvist | |
2012-04-15 | Copy and adapt current state of Norbert's CoreText work for iOS | Tor Lillqvist | |
Compiles, but I obviously have no idea how it works yet. Yes, eventually we should factor out common parts from the iOS and MacOSX code. | |||
2012-04-12 | unusedcode.easy: remove various methods | Thomas Arnhold | |
2012-04-12 | add .5 to control points coordinates after transformation | Radek Doulik | |
- otherwise we might end up with wrong coordinates - fixes fdo#38580 | |||
2012-04-10 | Remove unused constructor for ParametricPolyPolygon | Gábor Stefanik | |
2012-04-09 | Remove canvas::tools::calcRectToRectTransform | Julien Nabet | |
2012-04-08 | Replaced a few equal calls with == | Szabolcs Dezsi | |
2012-04-08 | LinkTarget.mk: remove gb_LinkTarget_add_package_headers | Michael Stahl | |
2012-04-08 | gbuild: "use" vs. "add": | Michael Stahl | |
Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target) | |||
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \; | |||
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | |
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)return \([^()]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *);/\1return \2 == \3;/' \{\} \; | |||
2012-04-05 | UniString::CreateFromInt32 -> rtl::OUString::valueOf | Caolán McNamara | |
2012-03-28 | removed duplicate includes in avmedia / basic / canvas / chart2 / comphelper | Takeshi Abe | |
2012-03-26 | removed duplicate includes in basic / canvas / chart2 / comphelper | Takeshi Abe | |
2012-03-17 | compile these with exceptions again | Luboš Luňák | |
a13a88bd2c673d059b60e339dcf3b8fabf991f18 changes them to build without exceptions by mistake, causing a boost problem | |||
2012-03-16 | Add missing component file for canvas. | Thorsten Behrens | |
2012-03-16 | Cleanup formatting in cairocanvas | Thorsten Behrens | |
White-space changes - code was in parts unreadable after tab/spaces conversion. While at it, removed a few lines of commented-out code. | |||
2012-03-16 | Add COMPHELPER_SERVICEDECL_EXPORTS* back in, after libmerge changes | Thorsten Behrens | |
Did I mention I hate boilerplate copied all over the place? ;) | |||
2012-03-16 | Use transparency for gradients fdo#45219 | Thorsten Behrens | |
vclcanvas has 1bpp alpha - so cut-off transparency at 98% This looks for all practical cases close enough to full alpha. | |||
2012-03-16 | Return proper transparency value even for ignore_color. | Thorsten Behrens | |
Rather unexpectedly, calling setupOutDevState() with IGNORE_COLOR does not return a proper transparency, but null. Fixed now. | |||
2012-03-16 | Make sure mask is rendered opaque in vclcanvas. | Thorsten Behrens | |
2012-03-16 | Remove nasty xor hack for non-Mac vclcanvas | Thorsten Behrens | |
This nowadays really is a pessimization. | |||
2012-03-16 | Another partial fix for fdo#45219 | Thorsten Behrens | |
Make sure transparent polygons really only cover the polygonal area, not the whole bounding box for sprites. | |||
2012-03-16 | Consistent use of alpha in cairocanvas | Thorsten Behrens | |
Use GetIndex() instead of GetBlue() (does the same, but more self-documenting); use opaque when no alpha channel consistently. | |||
2012-03-14 | fdo#47246: canvas: split out static library directxcanvas | Michael Stahl | |
2012-03-14 | Enable -Wnon-virtual-dtor for GCC 4.6 | Stephan Bergmann | |
...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. | |||
2012-03-10 | gbuild: get rid of realpath in gb_Foo_set_include | Matúš Kukan | |
2012-02-25 | Remove unused code | Elton Chung | |
2012-02-22 | Fix fdo#45219 wrong transparency for animated objects. | Thorsten Behrens | |
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) | |||
2012-02-18 | Fix typos in comments | Elton Chung | |
2012-02-17 | mark parameter as unused | David Tardon | |
2012-02-17 | remove unused variable | David Tardon | |
2012-02-13 | Remove unused code | Elton Chung | |
2012-02-10 | Removing one obsolte GNUC check for GCC < 4.0.1 | Carsten Niehaus | |
See https://bugs.freedesktop.org/show_bug.cgi?id=45131 | |||
2012-02-08 | Added (and improved) READMEs for modules which used to be in libs-gui | Josh Heidenreich | |
2012-02-07 | Remove obsolete quirk for text rotation. | Thorsten Behrens | |
With 800806ba850c7fd03e37acb011fa993e08cb8fc8 matrix decompose returns the correct angle right away, no need to catch it here. | |||
2012-02-05 | switch to include-based build rather than sourced-based build | Norbert Thiebaud | |
2012-02-05 | Eliminate un-used DIRECTX5 | Norbert Thiebaud | |
2012-02-01 | remove duplicate include | David Tardon | |