summaryrefslogtreecommitdiff
path: root/source/fitz/separation.c
AgeCommit message (Collapse)Author
2016-10-12Remove superfluous context null checks.Tor Andersson
Code MUST pass a non-null context to all functions. Checking ctx for null and failing silently is no more useful than segfaulting. fz_keep_imp and fz_drop_imp handle NULL pointers safely, so the NULL checks for this can also be dropped at the same time.
2016-07-08Use fz_keep_imp and fz_drop_imp for all reference counting.Tor Andersson
2015-07-20Fix leak in separations code.Robin Watts
Include code to free the list of separation names.
2015-06-29Add Separation class to fitz.Robin Watts
Simple set of functions for managing sets of separations. Separations have names, equivalent rgb/cmyk colors, and can be enabled/disabled.