summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2013-05-29Add some documentation about naming and reference counting schemes.Tor Andersson
2013-05-29Add "thirdparty.txt"Chris Liddell
a list of third party libraries, their function, license and version shipped with mupdf
2013-05-21Remove useless -lpng from doc/example.c and doc/multi-threaded.cTor Andersson
2013-05-16Add colorspace context.Tor Andersson
To prepare for color management, we have to make the device colorspaces per-context and able to be overridden by users.
2013-02-19Fix whitespace.Tor Andersson
2013-02-13Update doc/multi-threaded.c for passing rect/matrix by reference.Tor Andersson
2013-02-13Update doc/example.c for passing rect/matrix by reference.Tor Andersson
2013-02-06Rename bbox to irect.Tor Andersson
2013-01-30Rename fz_irect back to fz_bbox.Tor Andersson
2013-01-30Introduce fz_irect where the old fz_bbox was useful.Tor Andersson
Inside the renderer we often deal with integer sized areas, for pixmaps and scissoring regions. Use a new fz_irect type in these places.
2013-01-30Eliminate fz_bbox in favor of fz_rect everywhere.Tor Andersson
2012-12-13Bug 693487: fix error handling in doc/multi-threaded.cRobin Watts
A user (av1474) points out that pthread error codes are non zero, not negative; hence fix the example code to test for these correctly.
2012-03-16Update multi-threaded documentation in light of bug 692925.Robin Watts
State that contexts are baked into devices, and devices used with document should share the same context.
2012-03-15Add multi-threading example based on pthreads.Sebastian Rasmussen
Also update example code compilation instructions.
2012-03-14Update doc/overview.txt with details of multi-thread operation.Robin Watts
Basic instructions on how to safely build and use a mupdf based app that makes use of multiple threads efficiently.
2012-03-13Rename some functions and accessors to be more consistent.Tor Andersson
Debug printing functions: debug -> print. Accessors: get noun attribute -> noun attribute. Find -> lookup when the returned value is not reference counted. pixmap_with_rect -> pixmap_with_bbox. We are reserving the word "find" to mean lookups that give ownership of objects to the caller. Lookup is used in other places where the ownership is not transferred, or simple values are returned. The rename is done by the sed script in scripts/rename3.sed
2012-02-26Continued documentation improvements.Sebastian Rasmussen
More changes still to come.
2012-02-26Add working example of how to render a PDF to a PNG.Sebastian Rasmussen
2012-02-26Add introductory MuPDF documentation.Sebastian Rasmussen