summaryrefslogtreecommitdiff
path: root/src/cairo-image-surface.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2012-02-12 12:32:49 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2012-02-15 14:21:00 +0000
commit8bea52bb0b55e2b041fbd43bc36221b5eb07b863 (patch)
tree846f9436ae94a6784c64c7929645514b73022550 /src/cairo-image-surface.c
parentc7d8ec72e6d14236d20b068a404d166496872a54 (diff)
downloadcairo-8bea52bb0b55e2b041fbd43bc36221b5eb07b863.tar.gz
Add preliminary damage tracking
This is initially based around the requirements for handling internal fallbacks to the image compositor and reducing the number of pixels required to be transferred. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/cairo-image-surface.c')
-rw-r--r--src/cairo-image-surface.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cairo-image-surface.c b/src/cairo-image-surface.c
index 05c99b778..fede14cd7 100644
--- a/src/cairo-image-surface.c
+++ b/src/cairo-image-surface.c
@@ -544,7 +544,7 @@ slim_hidden_def (cairo_image_surface_create_for_data);
*
* Since: 1.2
**/
- unsigned char *
+unsigned char *
cairo_image_surface_get_data (cairo_surface_t *surface)
{
cairo_image_surface_t *image_surface = (cairo_image_surface_t *) surface;
@@ -970,10 +970,10 @@ const cairo_surface_backend_t _cairo_image_surface_backend = {
NULL, /* show_page */
_cairo_image_surface_get_extents,
- _cairo_image_surface_get_font_options,
+ NULL,
NULL, /* flush */
- NULL, /* mark dirty */
+ NULL,
_cairo_image_surface_paint,
_cairo_image_surface_mask,