summaryrefslogtreecommitdiffstats
path: root/src/libnr/nr-pixblock.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-01-17remove memory boundries on bitmap renderer, optimize memory usageAdib Taraben1-8/+16
Fixed bugs: - https://launchpad.net/bugs/494115 (bzr r10009)
2010-11-17Super duper mega (fun!) commit: replaced encoding=utf-8 with ↵Chris Morgan1-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)
2010-08-14Completely remove NRPixBlockKrzysztof Kosi??ski1-457/+0
(bzr r9508.1.67)
2008-12-28Makes sure a Gaussian filter is applied to premultiplied data.Jasper van de Gronde1-1/+30
(bzr r7028)
2008-01-31Applying fixes for gcc 4.3 build issues (closes LP: #169115)Bryce Harrington1-0/+3
(bzr r4629)
2006-10-14gracefully fail if unable to allocate memory or if more than 100Mb buffer ↵bulia byak1-1/+14
requested (an arbitrary limit to prevent huge allocations that will bob the system down) (bzr r1799)
2006-05-28replace nr_new() with g_new(), and try to converge on using the glib ↵MenTaLguY1-17/+18
allocator a little more instead of the others (aside from libgc) (bzr r1044)
2006-04-19Rendering optimisation, which gives best results for zoomed in drawings with ↵Andrius Ramanauskas1-12/+12
complex (multi-node) paths. Optimisation focus - eliminating cubicTo and LineTo nodes outside of visible area, so no unneeded calculations is needed and less memory is consumed (this avoids crashes which were occurring previously if zooming into a complex drawing) (bzr r541)