diff options
author | M Joonas Pihlaja <jpihlaja@cc.helsinki.fi> | 2009-11-29 15:56:26 +0200 |
---|---|---|
committer | M Joonas Pihlaja <jpihlaja@cc.helsinki.fi> | 2009-11-29 15:56:26 +0200 |
commit | e2d75203c515f9740a8e0e9779391de0a1a54b07 (patch) | |
tree | 60d9b25345d64f62d129df5c67fb426f1046da49 /boilerplate | |
parent | b76565d2f4a2510aabada4cef968b9b597bbef09 (diff) |
[dirty] Add more missing surface dirtying notifications.
Now that the image surface actually cares about
cairo_surface_mark_dirty() we're hitting cases where
we've forgotten to mark surfaces dirty.
Diffstat (limited to 'boilerplate')
-rw-r--r-- | boilerplate/cairo-boilerplate.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/boilerplate/cairo-boilerplate.c b/boilerplate/cairo-boilerplate.c index 2036a0e4..401e613d 100644 --- a/boilerplate/cairo-boilerplate.c +++ b/boilerplate/cairo-boilerplate.c @@ -777,6 +777,7 @@ cairo_boilerplate_image_surface_create_from_ppm_stream (FILE *file) break; } } + cairo_surface_mark_dirty (image); return image; |