index
:
cairo
1.0
1.10
1.12
1.14
1.16
1.2
1.4
1.6
1.8
carlosgc/polygon-intersect-crash
master
wip/otte/xlib-overflow
cairo's central repository (mirrored from https://gitlab.freedesktop.org/cairo/cairo)
cworth
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
cairo.h
Age
Commit message (
Expand
)
Author
Files
Lines
2005-08-08
Add a new API for disabling antialiasing of shapes drawn by cairo. This is a ...
Billy Biggs
1
-20
/
+26
2005-08-04
Change *_reference() functions to return the object being referenced.
Kristian Høgsberg
1
-5
/
+5
2005-08-01
New public header file.
Carl Worth
1
-8
/
+0
2005-08-01
src/cairo.h src/cairoint.h src/cairo-surface.c: Add cairo_mark_dirty[_rectang...
Owen Taylor
1
-0
/
+13
2005-07-28
Fix so that one of three different error status values will be returned:
Carl Worth
1
-1
/
+3
2005-07-28
src/cairo-font.c src/cairoint.h: Define _cairo_font_face_nil. (cairo_font_fac...
Owen Taylor
1
-0
/
+3
2005-07-27
Add CAIRO_STATUS_INVALID_CONTENT, CAIRO_STATUS_INVALID_FORMAT, and CAIRO_STAT...
Carl Worth
1
-1
/
+13
2005-07-25
src/cairo.[ch] src/cairo-gstate-private.h src/cairo-gstate.c src/cairoint.c: ...
Owen Taylor
1
-0
/
+8
2005-07-23
Slight change to previous commit based on feedback from cworth.
Malcolm Tredinnick
1
-7
/
+12
2005-07-23
Add some missing parameters for API docs.
Malcolm Tredinnick
1
-6
/
+27
2005-07-21
src/cairo-font-options.c src/cairo.h src/cairoint.h src/Makefile.am: Add an o...
Owen Taylor
1
-4
/
+150
2005-07-20
Fix macro to not consider CAIRO_FORMAT_ARGB32 (==0) as a valid cairo_content_t.
Carl Worth
1
-3
/
+5
2005-07-08
Give enum tags an underscore prefix to match the style of the struct tags. Ad...
Carl Worth
1
-39
/
+64
2005-07-06
Remove CAIRO_STATUS_NO_TARGET_SURFAC and add CAIRO_STATUS_INVALID_STATUS.
Carl Worth
1
-13
/
+14
2005-06-28
New functions to create a cairo_pattern_t corresponding to a solid color and ...
Kristian Høgsberg
1
-0
/
+8
2005-06-20
Rip out cairo_set_error_notfiy function as it is clear that it is not the rig...
Carl Worth
1
-14
/
+0
2005-06-16
Reorder fields of cairo_private_t to match initialization order.
Carl Worth
1
-0
/
+14
2005-06-15
Remove cairo_status_string function which can now be replaced by:
Carl Worth
1
-4
/
+2
2005-06-14
Remove comment suggesting ambiguity of whether cairo_get_target references th...
Carl Worth
1
-2
/
+0
2005-06-13
No longer need to check for NULL after creating a pattern.
Carl Worth
1
-6
/
+10
2005-06-13
Originally 2005-06-02 Carl Worth <cworth@cworth.org>:
Carl Worth
1
-0
/
+1
2005-06-10
Pull the enum out from inside cairo_path_data_t and give it a name of cairo_p...
Carl Worth
1
-6
/
+8
2005-06-09
Remove trailing comma from enum values which gcc 4.0 does not want to see (Lu...
Carl Worth
1
-1
/
+1
2005-05-31
Add new function cairo_status_to_string an reimplement cairo_status_string in...
Carl Worth
1
-0
/
+3
2005-05-26
Replace nesting-only surface clipping with gstate contained serial-number tra...
Keith Packard
1
-6
/
+1
2005-05-17
Fix more deprecation macros
Carl Worth
1
-4
/
+4
2005-05-17
Add a few more REPLACED_BY and DEPRECATED_BY definitions.
Carl Worth
1
-1
/
+16
2005-05-10
Fix cairo_get_font_matrix to actually use its out-parameter. And change the r...
Carl Worth
1
-2
/
+3
2005-05-09
Fix deprecation macro to point to the right function, (thanks to John Ellson).
Carl Worth
1
-1
/
+1
2005-05-09
Push cairo_matrix_t const-correctness down through the entire implmentation, ...
Carl Worth
1
-13
/
+17
2005-05-06
Point to both cairo_set_source_rgba and cairo_paint_with_alpha in deprecation...
Carl Worth
1
-1
/
+1
2005-05-06
Change definitions of everything in cairo-features.h to prefer #if over #ifdef.
Carl Worth
1
-2
/
+2
2005-05-06
Remove deprecated cairo_get_rgb_color that was accidentally missed in the rec...
Carl Worth
1
-3
/
+0
2005-05-06
Eliminate the following deprecated functions from cairo's interface:
Carl Worth
1
-189
/
+76
2005-05-06
Rename and re-order the cairo_operator_t enum to names that abbreviate less a...
Carl Worth
1
-7
/
+10
2005-05-06
Remove cairo_set_target_surface and all other backend-specific cairo_set_targ...
Carl Worth
1
-53
/
+33
2005-05-06
src/cairo.[ch] doc/public/cairo-sections.txt: Add cairo_paint_with_alpha().
Owen Taylor
1
-0
/
+4
2005-05-03
Originally 2005-04-20 Carl Worth <cworth@cworth.org>
Carl Worth
1
-14
/
+6
2005-05-02
Changes the sign of extents->descent to match win32 backend and the conventio...
Owen Taylor
1
-3
/
+44
2005-05-02
src/cairo-surface.c src/cairoint.h: Add _cairo_surface_begin/end to save and ...
Owen Taylor
1
-1
/
+28
2005-05-02
src/cairo.[ch] src/cairo-gstate.c: Add cairo_mask() and cairo_mask_surface().
Owen Taylor
1
-0
/
+10
2005-04-26
Updated.
Owen Taylor
1
-1
/
+1
2005-04-26
Originally: 2005-04-19 Carl Worth <cworth@cworth.org>
Carl Worth
1
-1
/
+9
2005-04-25
Renamed from cairo_surface_write_png_to_stream() for consistency. (cairo_surf...
Kristian Høgsberg
1
-3
/
+3
2005-04-25
Factor out bulk of the code into a new callback based function, write_png(). ...
Kristian Høgsberg
1
-16
/
+52
2005-04-22
Only check PNG signature if we read all the bytes. Don't fclose() the FILE ar...
Kristian Høgsberg
1
-0
/
+11
2005-04-19
Add new cairo_paint function.
Carl Worth
1
-0
/
+3
2005-04-14
and delete:
Carl Worth
1
-25
/
+30
2005-04-11
src/cairo.h doc/public/cairo-sections.txt src/cairo-matrix.c: Update.
Owen Taylor
1
-4
/
+4
2005-04-08
Move include of pixman.h from cairo.h to cairoint.h since libpixman isn't par...
Carl Worth
1
-1
/
+0
[next]