diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2008-10-30 14:35:49 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2008-10-30 17:04:53 +0000 |
commit | cf072c7203dfce989ee60e56352f548329d3d616 (patch) | |
tree | 19a9009f6ffda1244e4d7e53f0ae0ca5d6e79046 /src/cairo.h | |
parent | 31ada1ea15d14c0a843728b105340c270e4e4613 (diff) |
[sdl] Add new backend.
Add a new backend to allow easy interoperability with the Simple
DirectMedia Layer.
Diffstat (limited to 'src/cairo.h')
-rw-r--r-- | src/cairo.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cairo.h b/src/cairo.h index cf4bc05b..97d9455a 100644 --- a/src/cairo.h +++ b/src/cairo.h @@ -1875,6 +1875,7 @@ cairo_surface_status (cairo_surface_t *surface); * @CAIRO_SURFACE_TYPE_OS2: The surface is of type os2 * @CAIRO_SURFACE_TYPE_WIN32_PRINTING: The surface is a win32 printing surface * @CAIRO_SURFACE_TYPE_QUARTZ_IMAGE: The surface is of type quartz_image + * @CAIRO_SURFACE_TYPE_SDL: The surface is of type SDL, since 1.10 * * #cairo_surface_type_t is used to describe the type of a given * surface. The surface types are also known as "backends" or "surface @@ -1913,7 +1914,8 @@ typedef enum _cairo_surface_type { CAIRO_SURFACE_TYPE_SVG, CAIRO_SURFACE_TYPE_OS2, CAIRO_SURFACE_TYPE_WIN32_PRINTING, - CAIRO_SURFACE_TYPE_QUARTZ_IMAGE + CAIRO_SURFACE_TYPE_QUARTZ_IMAGE, + CAIRO_SURFACE_TYPE_SDL } cairo_surface_type_t; cairo_public cairo_surface_type_t |