summaryrefslogtreecommitdiffstats
path: root/src/display/drawing-context.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-10-04Add minor comments to file.Tavmjong Bah1-0/+3
2018-11-08Clarify licensesMax Gaukler1-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
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-2/+2
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-05-04Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin1-1/+1
This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
2018-04-29Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin1-1/+1
2018-01-23Minor include file cleanup.Tavmjong Bah1-1/+0
2017-11-07Misc. typosUnknown1-1/+1
Found using `codespell -q 3 -w --skip="*.svg,*.po,*.ts,./share/tutorials,./src/libavoid,./packaging/win32/languages,./man,./src/2geom" -I ../inkscape-whitelist.txt` whereby whitelist file contained: ``` dum iff glight substract te upto ```
2014-02-08DrawingContext: change variable names ct to dc (bug #1272073)David Mathog1-11/+11
Fixed bugs: - https://launchpad.net/bugs/1272073 (bzr r13009)
2011-10-02Removing redundant doxygen @brief tag.Jon A. Cruz1-5/+8
(bzr r10656)
2011-07-28Per-item render cache.Krzysztof Kosi??ski1-0/+17
Cache some offscreen data to facilitate smoother navigation. (bzr r10347.1.20)
2011-07-22Replace direct use of Cairo contexts and surfaces in the rendering treeKrzysztof Kosi??ski1-0/+135
with wrappers which keep some extra information about the surface, amd NRRect and NRRectL use with Geom::Rect and Geom::IntRect. Should simplify implementing filter primitive subregions. (bzr r10347.1.17)