summaryrefslogtreecommitdiff
path: root/src/cairo-xlib-private.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove extraneous whitespace from "blank" lines.Carl Worth2006-06-061-2/+2
| | | | | | | | This patch was produced with the following (GNU) sed script: sed -i -r -e 's/^[ \t]+$//' run on all *.[ch] files within cairo.
* src/cairo-xlib-private.h src/cairo-xlib-screen.c: Switch to using Screen * ↵Owen Taylor2005-07-231-2/+2
| | | | | | not screen number to match surface code. Get the screen info for the right screen for the surface.
* src/cairo-font-options.c src/cairo.h src/cairoint.h src/Makefile.am: Add an ↵Owen Taylor2005-07-211-0/+54
opaque cairo_font_options_t structure. src/cairo-font.c src/cairo.h src/cairoint.h: Add a cairo_font_options_t object to cairo_scaled_font_create(). src/cairo-surface.c src/cairoint.h: Add virtualized cairo_surface_get_font_options() to get the font options for a surface. Adapt to cairo_scaled_font_create() change. Add an implementation of get_font_options() that turns off metrics hinting. src/cairo-xlib-screen.c src/cairo-xlib-private.h: Add a "screen info" structure that holds (for now) information about the default font options for the screen. Implement get_font_options() src/cairo-ft-font.c src/cairo-ft.h: Add functions to apply a cairo_font_options_t to a FcPattern or get the load flags for a cairo_font_options_t. Adapt to font options additions. Add support for non-antialiased rendering of scalable fonts. Add support for turning off metrics hinting. Adapt to font options additions. doc/public/Makefile.am doc/public/cairo-sections.txt: Update. reviewed by: cworth