summaryrefslogtreecommitdiff
path: root/src/cairo-surface.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2006-08-02 11:18:14 -0400
committerCarl Worth <cworth@cworth.org>2006-08-07 23:47:46 -0700
commit02b54ca6200b3e5a914b293dd4a0d56f432a5a9b (patch)
treeaaa530a4955bc332bbf7f973e95d75ed066074b6 /src/cairo-surface.c
parent9136c217703d1d6aab1742f522aa0279517fb36a (diff)
Improve docs for cairo_surface_create_similar()
Diffstat (limited to 'src/cairo-surface.c')
-rw-r--r--src/cairo-surface.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/cairo-surface.c b/src/cairo-surface.c
index cad5a33c8..8e24773e4 100644
--- a/src/cairo-surface.c
+++ b/src/cairo-surface.c
@@ -276,11 +276,12 @@ _cairo_surface_create_similar_scratch (cairo_surface_t *other,
* @height: height of the new surface (in device-space units)
*
* Create a new surface that is as compatible as possible with an
- * existing surface. The new surface will use the same backend as
- * @other unless that is not possible for some reason. However, the
- * created surface will have same fallback resolution and font options
- * as the existing surface. The type of the returned surface may be
- * examined with cairo_surface_get_type().
+ * existing surface. For example the new surface will have the same
+ * fallback resolution and font options as @other. Generally, the new
+ * surface will also use the same backend as @other, unless that is
+ * not possible for some reason. The type of the returned surface may
+ * be examined with cairo_surface_get_type().
+ *
* Initially the surface contents are all 0 (transparent if contents
* have transparency, black otherwise.)
*