summaryrefslogtreecommitdiffstats
path: root/src/extension/internal/cairo-render-context.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix Cairo export of masked objects.Tavmjong Bah2010-11-211-6/+19
| | | (bzr r9913)
* Super duper mega (fun!) commit: replaced encoding=utf-8 with ↵Chris Morgan2010-11-171-1/+1
| | | | | | | | | | | | | | | fileencoding=utf-8 in all 1074 Vim modelines. The reason for this is that (a) setting the encoding isn't nice, and (b) Vim 7.3 (with modeline enabled) disallows it and pops up an error whenever you open any file with it ("invalid modeline"). Also corrected five deviant modestrings: * src/ui/widget/dock.cpp and src/ui/widget/dock.h: missing colon at the end * src/ui/dialog/tile.cpp: removed gratuitous second colon at the end * src/helper/units-test.h: removed gratuitous space before a colon * share/extensions/export_gimp_palette.py: missing textwidth=99 That's my geekiest commit yet. (bzr r9900)
* Add code to fix bug #380501 in the future...Johan B. C. Engelen2010-10-261-0/+7
| | | (bzr r9856)
* fix copy errorJohan B. C. Engelen2010-10-261-1/+1
| | | (bzr r9855)
* fix crash bug: PDF export: crash in 'CairoRenderContext::_showGlyphs'Johan B. C. Engelen2010-10-231-4/+5
| | | | | | Fixed bugs: - https://launchpad.net/bugs/564442 (bzr r9842)
* PDF export. Fix for Bug #664335 (pdf export with cairo 1.10 defaults to ↵Nicolas Dufour2010-10-221-3/+6
| | | | | | | | version PDF-1.5). Fixed bugs: - https://launchpad.net/bugs/664335 (bzr r9841)
* Partial C++-ification of SPGradientJon A. Cruz2010-06-281-5/+5
| | | (bzr r9542)
* remove debug text from cairo-render-context.cppJohan B. C. Engelen2010-04-031-3/+3
| | | (bzr r9289)
* Fixes crash of bug #537457, but export is incorrect.Johan B. C. Engelen2010-03-141-3/+8
| | | | | | Fixed bugs: - https://launchpad.net/bugs/537457 (bzr r9187)
* Patch by Adib for 271695Josh Andler2009-11-091-12/+32
| | | (bzr r8829)
* regression patch from 388257bulia byak2009-11-091-4/+2
| | | (bzr r8826)
* Krzysztof's patch for 388257bulia byak2009-11-081-14/+19
| | | (bzr r8821)
* revert the PS rotation part of Adrian's patch for 437550, see discussion in ↵bulia byak2009-11-071-9/+1
| | | | | the bug (bzr r8820)
* Patch from Adrian for 437550.Josh Andler2009-09-271-3/+13
| | | (bzr r8658)
* patch by Adib for 406470bulia byak2009-09-051-2/+10
| | | (bzr r8562)
* Revert recent refactoring changes by johnce because they break the build, ↵Maximilian Albert2009-08-061-1/+1
| | | | | which cannot be fixed easily. (bzr r8422)
* SPDocument->Documentjohnce2009-08-051-1/+1
| | | (bzr r8408)
* fix obvious typo, patch 340311bulia byak2009-06-221-1/+1
| | | (bzr r8145)
* imitate black fill for objects with unset fill on exportbulia byak2009-06-051-1/+6
| | | (bzr r8009)
* BUG 284680 convert text to paths on cairo outputtheAdib2009-05-121-3/+9
| | | (bzr r7872)
* apply printing w32 patch ↵Adib Taraben2009-04-241-3/+5
| | | | | https://bugs.launchpad.net/inkscape/+bug/179988/comments/174 (bzr r7767)
* Merge from trunkTed Gould2008-10-311-5/+9
| | | (bzr r6887)
* Merging from trunkTed Gould2008-10-111-9/+31
| | | (bzr r6884)
* Fixes for clipping and masking:Tavmjong Bah2008-09-141-17/+31
| | | | | | Transformations. For masking, must convert RGBA mask to A for Cairo. (bzr r6810)
* Fix clipping for Cairo generated PNG's.Tavmjong Bah2008-09-101-2/+5
| | | (bzr r6787)
* finally got the pattern transform rightbulia byak2008-09-061-19/+10
| | | (bzr r6771)
* use smaller subpixel scaling; large values take more memory and sometimes ↵bulia byak2008-09-011-1/+1
| | | | | fail for too large patter tiles (bzr r6753)
* fix assert when exporting bug 171849 file, make sure small patterns are ↵bulia byak2008-09-011-2/+6
| | | | | exported properly by scaling them up (to use integer width/height) and then down (bzr r6750)
* enable EPS export via cairo, use it instead of the old native onebulia byak2008-09-011-0/+7
| | | (bzr r6743)
* cairo-render-context extension implementation converted to 2geomJohan B. C. Engelen2008-08-311-61/+12
| | | (bzr r6736)
* Fix patterns when scaled.Tavmjong Bah2008-08-311-6/+10
| | | | | Avoid pattern size change due to rounding errors in ceil(). (bzr r6734)
* Fixed crash due to use of uninitialized pointerJon A. Cruz2008-08-281-3/+3
| | | (bzr r6718)
* NR:: to Geom:: for most of src/extension/Johan B. C. Engelen2008-08-121-24/+24
| | | (bzr r6612)
* add CairoRenderContext::renderPathVectorJohan B. C. Engelen2008-06-261-0/+13
| | | (bzr r6074)
* patch 181692bulia byak2008-06-121-1/+6
| | | (bzr r5893)
* complete adding const to have only NArtBpath const * get_bpath() const; for ↵Johan B. C. Engelen2008-05-091-1/+1
| | | | | accessing the protected member of SPCurve. Nowhere in Inkscape source is the path data changed of SPCurve, except within SPCurve's own methods ! So removed the non-const NArtBpath* get_bpath. (bzr r5642)
* fix include pathsJohan B. C. Engelen2008-04-151-1/+1
| | | (bzr r5446)
* fix compilebulia byak2008-03-281-1/+1
| | | (bzr r5215)
* Fixing as per discussion in LP # 179988Mike Pittman2008-03-281-13/+32
| | | (bzr r5212)
* No more NRMatrix or NRPoint.Jasper van de Gronde2008-03-211-22/+19
| | | (bzr r5149)
* now act on settings in dialogueAdib Taraben2008-01-161-0/+21
| | | (bzr r4529)
* Enable text output for Cairo renderer if Cairo has FreeType support enabledmiklosh2008-01-031-2/+2
| | | (bzr r4375)
* Purged fill type enummiklosh2008-01-031-2/+2
| | | (bzr r4374)
* Fixed messed up transformations because of a missing cairo_restore() and ↵miklosh2008-01-031-5/+3
| | | | | removed some debug stuff (bzr r4373)
* error checks on surface return valuesAdib Taraben2008-01-021-0/+10
| | | (bzr r4372)
* check for cairo versionAdib Taraben2007-12-261-1/+1
| | | (bzr r4312)
* check for cairo versionAdib Taraben2007-12-261-1/+1
| | | (bzr r4309)
* more on cairo ps/pdf optionsAdib Taraben2007-12-261-1/+30
| | | (bzr r4304)
* Implement cross-architecture print dialog using cairo and PNG backends.Kees Cook2007-12-101-2/+7
| | | (bzr r4199)
* always build cairo backend; add interface for setting cairo surface to rendererKees Cook2007-12-101-4/+18
| | | (bzr r4198)