summaryrefslogtreecommitdiff
path: root/src/cairo-xlib-xrender.h
Commit message (Collapse)AuthorAgeFilesLines
* Update FSF addressAndrea Canciani2010-04-271-1/+1
| | | | | | | | | | | I updated the Free Software Foundation address using the following script. for i in $(git grep Temple | cut -d: -f1 ) do sed -e 's/59 Temple Place[, -]* Suite 330, Boston, MA *02111-1307[, ]* USA/51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA/' -i "$i" done Fixes http://bugs.freedesktop.org/show_bug.cgi?id=21356
* Use #include "cairo-*." instead of #include <cairo-*.h>Behdad Esfahbod2008-06-231-1/+1
| | | | | The rule is simple: <x.h> for system / other project includes, "x.h" for local includes.
* Add new API cairo_xlib_surface_get_render_formatCarl Worth2008-01-281-0/+3
|
* [cairo-xlib] Fixup --disable-xlib-xrenderChris Wilson2008-01-151-4/+4
| | | | | Fixup the headers and boilerplate to compile and run correctly when configured with --disable-xlib-xrender.
* Add include of X11/Xlib.h to cairo-xlib-xrender.hCarl Worth2007-06-081-0/+1
| | | | | | This makes this header file self-sufficient. Thanks to Sam Sirlin <samuel.w.sirlin@jpl.nasa.gov> for pointing this out.
* Remove initial, final, and duplicate blank lines.Carl Worth2006-06-061-1/+0
| | | | | | This patch was produced by running git-stripspace on all *.[ch] files within cairo. Note that this script would have also created all the changes from the previous commits to remove trailing whitespace.
* Give cairo_public an empty definition by default.Carl Worth2005-09-071-1/+1
| | | | Add new cairo_public macro before every public function call prototype.
* Add Screen* arguments to:Keith Packard2005-07-201-0/+1
| | | | | | | cairo_xlib_surface_create_with_xrender_format cairo_xlib_surface_create_for_bitmap Required to correctly identify when two Xlib surfaces are compatible with Core and Render rendering requests. cairo_xlib_surface_create can determine the screen given the required Visual * reviewed by: otaylor
* Rework of cairo_xlib_surface create functions by Keith Packard:Carl Worth2005-05-171-0/+62
Add cairo_xlib_surface_create_with_render_format. Reduce Xlib constructors down to two simple forms. Add width, height to constructors and eliminate any synchronous size queries from the implementation. Update to match new cairo_xlib_surface_t create functions.