summaryrefslogtreecommitdiff
path: root/source/fitz/draw-edgebuffer.c
AgeCommit message (Collapse)Author
2018-10-23Remove unnecessary exception handling.Sebastian Rasmussen
2018-10-23Remove extra blank lines.Tor Andersson
2018-06-22Don't pollute namespace with our 'restrict' macro. Use FZ_RESTRICT instead.Tor Andersson
2018-03-14Bug 699109: Fix overwrites with COP renderer.Robin Watts
2017-11-01Use int64_t for public file API offsets.Tor Andersson
Don't mess with conditional compilation with LARGEFILE -- always expose 64-bit file offsets in our public API.
2017-10-24Overprint support.Robin Watts
Introduce an fz_overprint bitmap (currently just a uint32_t, but it'll grow to be an array of them if FZ_MAX_COLOR is increased). Pointers to this are passed into all our painting routines. NULL means "Do what you've always done before, with no overprint". non NULL, means that every set bit means "don't ever alter this component". We therefore set the overprint bitmap up according to the input color/colorspace/colorparams before calling each routine.
2017-06-22Remove unused static functions.Tor Andersson
2017-06-13Add edgebuffer based rasterizerRobin Watts