diff options
author | Benjamin Otte <otte@redhat.com> | 2010-10-08 21:50:18 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-10-30 01:49:58 +0800 |
commit | 6c5699c895af9b0211ab0b3d83be57b49336ac29 (patch) | |
tree | 2ec75eba10af53987b3997157f638ae842c4023c /libgnomecanvas/gnome-canvas.h | |
parent | bac4bdb7a564c248b6a09e417da8098455ecdb62 (diff) | |
download | gsoc2013-evolution-6c5699c895af9b0211ab0b3d83be57b49336ac29.tar.gz gsoc2013-evolution-6c5699c895af9b0211ab0b3d83be57b49336ac29.tar.zst gsoc2013-evolution-6c5699c895af9b0211ab0b3d83be57b49336ac29.zip |
gnome-canvas: Remove GnomeCanvasBuf
It's not used anymore.
Diffstat (limited to 'libgnomecanvas/gnome-canvas.h')
-rw-r--r-- | libgnomecanvas/gnome-canvas.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/libgnomecanvas/gnome-canvas.h b/libgnomecanvas/gnome-canvas.h index d6b35f0f55..fa51400073 100644 --- a/libgnomecanvas/gnome-canvas.h +++ b/libgnomecanvas/gnome-canvas.h @@ -107,29 +107,6 @@ enum { GNOME_CANVAS_UPDATE_IS_VISIBLE = 1 << 4 /* Deprecated. FIXME: remove this */ }; -/* Data for rendering in antialiased mode */ -typedef struct { - /* 24-bit RGB buffer for rendering */ - guchar *buf; - - /* Rectangle describing the rendering area */ - ArtIRect rect; - - /* Rowstride for the buffer */ - gint buf_rowstride; - - /* Background color, given as 0xrrggbb */ - guint32 bg_color; - - /* Invariant: at least one of the following flags is true. */ - - /* Set when the render rectangle area is the solid color bg_color */ - guint is_bg : 1; - - /* Set when the render rectangle area is represented by the buf */ - guint is_buf : 1; -} GnomeCanvasBuf; - #define GNOME_TYPE_CANVAS_ITEM (gnome_canvas_item_get_type ()) #define GNOME_CANVAS_ITEM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GNOME_TYPE_CANVAS_ITEM, GnomeCanvasItem)) #define GNOME_CANVAS_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GNOME_TYPE_CANVAS_ITEM, GnomeCanvasItemClass)) |