From df18a971435c35963bb8ea94efc0d5326ad66ff0 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Fri, 30 Dec 2011 00:58:35 +0000 Subject: Change GTK plotting to use cairo surfaces throughout svn path=/trunk/netsurf/; revision=13354 --- content/content.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'content') diff --git a/content/content.h b/content/content.h index 580b2dacb..bdeeae48b 100644 --- a/content/content.h +++ b/content/content.h @@ -112,25 +112,25 @@ union content_msg_data { struct content_rfc5988_link *rfc5988_link; }; - +/** parameters to content redraw */ struct content_redraw_data { - int x; /** coordinate for top-left of redraw */ - int y; /** coordinate for top-left of redraw */ + int x; /**< coordinate for top-left of redraw */ + int y; /**< coordinate for top-left of redraw */ /** dimensions to render content at * (for scaling contents with intrinsic dimensions) */ - int width; /* horizontal */ - int height; /* vertical */ + int width; /**< horizontal dimension */ + int height; /**< vertical dimension */ - /** the background colour */ + /** The background colour */ colour background_colour; /** Scale for redraw * (for scaling contents without intrinsic dimensions) */ - float scale; /* scale factor */ + float scale; /**< Scale factor for redraw */ - bool repeat_x; /* whether content is tiled in x direction */ - bool repeat_y; /* whether content is tiled in y direction */ + bool repeat_x; /**< whether content is tiled in x direction */ + bool repeat_y; /**< whether content is tiled in y direction */ }; /* The following are for hlcache */ -- cgit v1.2.3