summaryrefslogtreecommitdiffstats
path: root/src/display/drawing-context.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add minor comments to file.Tavmjong Bah2019-10-041-0/+3
|
* Clarify licensesMax Gaukler2018-11-081-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
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-181-2/+2
| | | | | 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 Jeanmougin2018-05-041-1/+1
| | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
* Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin2018-04-291-1/+1
|
* Minor include file cleanup.Tavmjong Bah2018-01-231-1/+0
|
* Misc. typosUnknown2017-11-071-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 ```
* DrawingContext: change variable names ct to dc (bug #1272073)David Mathog2014-02-081-11/+11
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1272073 (bzr r13009)
* Removing redundant doxygen @brief tag.Jon A. Cruz2011-10-021-5/+8
| | | (bzr r10656)
* Per-item render cache.Krzysztof Kosi??ski2011-07-281-0/+17
| | | | | Cache some offscreen data to facilitate smoother navigation. (bzr r10347.1.20)
* Replace direct use of Cairo contexts and surfaces in the rendering treeKrzysztof Kosi??ski2011-07-221-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)