| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Try to improve match of image-rendering values to cairo filters | Patrick Storz | 2019-09-22 | 1 | -14/+13 |
| | | | | | | | | | Specifically image-rendering="crisp-edges" should use a scaling algorithm that does *not* blur edges. Unfortunately this only leaves CAIRO_FILTER_NEAREST, but seems to be the most suitable choice. | ||||
| * | Crashfix when importing/selecting large png | Nathan Lee | 2019-07-02 | 1 | -1/+1 |
| | | | | | | Uses size_t as per Thomas Holder's suggestion. Fixes gitlab.com/inkscape/inkscape/issues/192. | ||||
| * | Fix coding style | Jabier Arraiza | 2018-12-01 | 1 | -1/+1 |
| | | |||||
| * | Improve spliter and add outline mode functionality | Jabier Arraiza | 2018-12-01 | 1 | -1/+1 |
| | | |||||
| * | Clarify licenses | Max Gaukler | 2018-11-08 | 1 | -1/+2 |
| | | | | | | | - add license headers to everything - convert a few files from public domain or LGPL2.1+ to GPL2+ - some archaeology to clarify which files are from which library | ||||
| * | Fix bug #167900 | Yuki Hoshino | 2018-08-30 | 1 | -0/+1 |
| | | | | | | | | | | https://bugs.launchpad.net/inkscape/+bug/167900 - Tiled imported bitmap textures have errors, also exported By the default extend mode CAIRO_EXTEND_NONE, draw white on a pattern image edge with CAIRO_FILTER_GOOD. Draw an image with CAIRO_EXTEND_PAD. | ||||
| * | Run clang-tidy’s modernize-use-nullptr pass. | Emmanuel Gil Peyrot | 2018-06-18 | 1 | -6/+6 |
| | | | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer. | ||||
| * | Revert "Fix include order with clang-tidy check llvm-include-order" | Marc Jeanmougin | 2018-05-04 | 1 | -1/+1 |
| | | | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60. | ||||
| * | Fix include order with clang-tidy check llvm-include-order | Marc Jeanmougin | 2018-04-29 | 1 | -1/+1 |
| | | |||||
| * | Move classes derived from SPObject to own directory. | Tavmjong Bah | 2018-01-30 | 1 | -1/+0 |
| | | | | | A lot of header clean-up. | ||||
| * | Update for CSS 3 'image-rendering'. | Tavmjong Bah | 2017-05-29 | 1 | -2/+8 |
| | | | | (bzr r15714) | ||||
| * | Correct enumeration names. | Tavmjong Bah | 2016-04-22 | 1 | -3/+3 |
| | | | | (bzr r14862) | ||||
| * | Fixes doubled transparency computation on bitmaps for some reason | Marc Jeanmougin | 2015-08-16 | 1 | -1/+1 |
| | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1434122 (bzr r14306) | ||||
| * | 2Geom sync - initial commit | Krzysztof Kosi??ski | 2015-04-27 | 1 | -1/+1 |
| | | | | (bzr r14059.2.1) | ||||
| * | Code rearrangement to make it clearer what is happening. | Tavmjong Bah | 2014-12-16 | 1 | -11/+0 |
| | | | | (bzr r13803) | ||||
| * | Fix build (not pretty). | Liam P. White | 2014-08-18 | 1 | -1/+3 |
| | | | | (bzr r13341.1.146) | ||||
| * | Fix remaining issue with prefs updating | Martin Owens | 2014-04-19 | 1 | -1/+1 |
| | | | | (bzr r13291.1.2) | ||||
| * | Add image rendering option for outlines. Setup desktop preferences observer. | Martin Owens | 2014-04-18 | 1 | -2/+5 |
| | | | | (bzr r13291.1.1) | ||||
| * | Use CAIRO_FILTER_GOOD instead of CAIRO_FILTER_BEST in the interactive | Krzysztof Kosi??ski | 2014-03-07 | 1 | -1/+2 |
| | | | | | | renderer, since the latter uses Lanczos3 and is prohibitively slow. (bzr r13124) | ||||
| * | DrawingContext: change variable names ct to dc (bug #1272073) | David Mathog | 2014-02-08 | 1 | -26/+26 |
| | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1272073 (bzr r13009) | ||||
| * | Partial fix for blocker bug 1163449: "Imported bitmap appear blurry when ↵ | Tavmjong Bah | 2013-11-12 | 1 | -7/+18 |
| | | | | | | | | | zoomed in" Setting style to include "image-rendering:optimizeSpeed" will cause nearest neighbor filter to be used in downscaling. (bzr r12796) | ||||
| * | The downscaling fix is already in Cairo trunk. | Krzysztof Kosi??ski | 2013-09-26 | 1 | -117/+4 |
| | | | | | | Therefore, remove the image scaling hack from drawing-image.cpp. (bzr r12599) | ||||
| * | Encapsulate the shared memory hack for Cairo and GdkPixbuf in a class | Krzysztof Kosi??ski | 2013-09-19 | 1 | -32/+32 |
| | | | | | | called Inkscape::Pixbuf. Replace usage in the code as appropriate. (bzr r12531) | ||||
| * | Do not recompress images when embedding and generating PDFs. | Krzysztof Kosi??ski | 2013-09-14 | 1 | -2/+2 |
| | | | | | | | | | Fixes blocker bug #871563. Fixed bugs: - https://launchpad.net/bugs/871563 (bzr r12516) | ||||
| * | Improve the functions which create GdkPixbuf from Cairo surface | Krzysztof Kosi??ski | 2013-09-13 | 1 | -3/+2 |
| | | | | | | | | | and vice versa. Simplifies some code. Also introduce proper refcounting into svg_preview_cache.cpp and fix its users. (bzr r12512) | ||||
| * | Fix selection of images in outline mode. Fixes LP #1089702 | Krzysztof Kosi??ski | 2013-07-31 | 1 | -31/+15 |
| | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1089702 (bzr r12440) | ||||
| * | Implement read/write of image-rendering property. To be used to control scaling. | Tavmjong Bah | 2013-04-08 | 1 | -0/+7 |
| | | | | (bzr r12272) | ||||
| * | Fix more clang warnings | Alex Valavanis | 2013-03-23 | 1 | -1/+1 |
| | | | | (bzr r12235) | ||||
| * | Clarified choice of downsampling routine. | Jasper van de Gronde | 2013-03-21 | 1 | -1/+3 |
| | | | | (bzr r12228) | ||||
| * | Handle bitmap downsampling ourselves, see bug #804162 in launchpad. | Jasper van de Gronde | 2013-03-21 | 1 | -12/+112 |
| | | | | (bzr r12227) | ||||
| * | Removing redundant doxygen @brief tag. | Jon A. Cruz | 2011-10-02 | 1 | -1/+1 |
| | | | | (bzr r10656) | ||||
| * | Warning cleanup. | Jon A. Cruz | 2011-10-02 | 1 | -2/+1 |
| | | | | (bzr r10655) | ||||
| * | Filter background rendering now matches the SVG specification. | Krzysztof Kosi??ski | 2011-08-21 | 1 | -3/+4 |
| | | | | (bzr r10347.1.37) | ||||
| * | More generic handling of child type in DrawingItem. | Krzysztof Kosi??ski | 2011-08-13 | 1 | -1/+1 |
| | | | | | | | | | Fix clip object selection bug (LP #365458). Fixed bugs: - https://launchpad.net/bugs/365458 (bzr r10347.1.31) | ||||
| * | Rewrite NRArena -> Inkscape::Drawing. Call render and update | Krzysztof Kosi??ski | 2011-08-07 | 1 | -4/+4 |
| | | | | | | methods on the Drawing rather than on the root DrawingItem. (bzr r10347.1.25) | ||||
| * | Document things figured out during the rewriting | Krzysztof Kosi??ski | 2011-08-06 | 1 | -1/+1 |
| | | | | (bzr r10347.1.22) | ||||
| * | Rewrite NRArenaItem hierarchy into C++ | Krzysztof Kosi??ski | 2011-08-06 | 1 | -0/+263 |
| (bzr r10347.1.21) | |||||
