summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2003-12-12Add conditionals for ps_surface functions, etc.Carl Worth3-3/+17
2003-12-12Add missing definitions from slim_import.h.Carl Worth1-3/+7
2003-12-11Rename surface->ic_image to surface->pixman_image.Carl Worth3-161/+161
2003-12-11Directly fold in slim stuff rather than depending on it from an external pack...Carl Worth7-132/+159
2003-12-11cairo_select_font: _cairo_font_create: _cairo_gstate_select_font: cairo_ft_fo...Andrew Chant9-10/+10
2003-12-11Replace mysterious image->depth == 32 ? 24 : image->depth with simply image->...Carl Worth2-2/+2
2003-12-11Fix to use shifts and masks for endianness-correct PS image generation. Renam...Carl Worth2-28/+26
2003-12-08Track change in cairo_path_callbacks interface.Carl Worth2-32/+60
2003-12-08Clean up cairo_path_callbacks to have move_to, line_to, curve_to, abd close_p...Carl Worth11-420/+538
2003-12-05Don't include obsolete cairo-xlib.h.Carl Worth2-2/+0
2003-12-05Bump version to 0.1.15 for new CAIRO_HAS_XLIB_SURFACE macro.Carl Worth4-8/+10
2003-12-03Bumped version to 0.1.14 to indicate dropped cairo-xlib.h and new cairo-confi...Carl Worth5-47/+43
2003-11-21Use 0 and 1 not False and True, (to avoid false dependency on X headers).Carl Worth4-6/+6
2003-11-18Fix build for new freetype header include mechanism, (thanks to Christof Peti...Carl Worth1-1/+2
2003-11-17Remove infinite looping when stroking with a line width at or close to 0.0. T...Carl Worth5-0/+18
2003-11-06Bumped version to 0.1.12 for new cairo_in_stroke and cairo_in_fill functions.Carl Worth9-26/+268
2003-11-06Move declaration to beginning of function to avoid requiring a C99-compatible...Carl Worth1-1/+2
2003-11-06Add comment pondering memory management semantics of cairo_current_target_sur...Carl Worth7-2/+22
2003-11-04Enable cairo_set_target_surface (cr, NULL) to work. This can be useful to for...Carl Worth2-0/+14
2003-11-03Add support for cairo_copy_page. Fixes so PS output can be more than one page...Carl Worth13-72/+231
2003-11-03Add several missing checks for out of memoryCarl Worth4-12/+48
2003-11-03Added __external_linkage to a few functions that were missing it.Carl Worth1-5/+5
2003-10-31Fix misplacement of PS origin, (was translating vertically by width instead o...Carl Worth2-2/+2
2003-10-31Implemented preliminary PostScript output support. Added cairo_show_page. Bum...Carl Worth14-15/+912
2003-10-31Do nothing when radius <= 0.0, (which is much better than the current infinit...Carl Worth2-0/+12
2003-10-31Moved all libic-related drawing into cairo_image_surface.cCarl Worth15-1076/+1932
2003-10-30Fixed a few memory leaksCarl Worth2-12/+68
2003-10-30A set of changes to eliminate the static FT_Library field, (which could intro...Carl Worth3-55/+71
2003-10-30A few cleanups to eliminate a memory leak.Carl Worth7-89/+23
2003-10-28Rename gstate->ppm to gstate->pixels_per_inch. Add new pixels_per_inch to the...Carl Worth7-22/+50
2003-10-28Drop cairo_surface_create_similar_solidCarl Worth6-113/+105
2003-10-28Fix bug from previous commit. Must check for NULL backend function pointers b...Carl Worth2-40/+52
2003-10-27Cleanup of surface->backend interface. Better type-safety and more consistent...Carl Worth5-160/+245
2003-10-27Default to normal slant/weight on out-of-range values. Add missing include of...Carl Worth2-12/+18
2003-10-24A HORRIBLE KLUDGE to repad glyph images from freetype to meet libic requireme...Keith Packard2-4/+72
2003-10-24Fixes to eliminate a few compiler warnings. Bump version to 0.1.8 for recent ...Carl Worth6-49/+20
2003-10-24Create a font by default. Remove bogus NULL_POINTER status errors leaking to ...Carl Worth5-128/+52
2003-10-23missing file from commitGraydon Hoare2-0/+1148
2003-10-23New file.Graydon Hoare10-797/+1311
2003-10-23Fixed copyright attribution to refer to "University of Southern CaliforniaCarl Worth36-36/+36
2003-10-11Add extern "C" stuff to cairo-xlib.hCarl Worth1-5/+14
2003-10-09Stub out NULL_POINTER error so drawing to off-screen memory still works even ...Carl Worth2-14/+14
2003-10-04Generate convex hull of pen before stroking.Carl Worth10-179/+526
2003-10-04Remove abbreviation of "point" as "pt". Fix cairo_destrot, cairo_set_target_s...Carl Worth20-401/+404
2003-10-01Fix to gracefully handle a NULL pointer for gstate->fontCarl Worth5-36/+93
2003-09-30Virtualized the font and surface backend implementations.Jamey Sharp13-1148/+1874
2003-09-30Don't copy a gstate if src->status != 0Carl Worth1-1/+3
2003-09-30Fixed horribly botched implementation of cairo_copy.Carl Worth4-5/+51
2003-09-30Changed cairo_copy to copy graphics state from one cairo_t to another rather ...Carl Worth2-22/+14
2003-09-30Fix to delay XFreePixmap until cairo_surface_destroy.Carl Worth3-2/+13