mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-21 08:20:39 +01:00
Add a long description.
Fix a typo. Document the return value of cairo_scaled_font_reference(). Document the width and height parameters of cairo_xlib_surface_set_drawable().
This commit is contained in:
parent
86889a55de
commit
0b616d20dd
5 changed files with 19 additions and 3 deletions
|
|
@ -1,3 +1,12 @@
|
|||
2005-08-23 Billy Biggs <vektor@dumbterm.net>
|
||||
|
||||
* doc/public/tmpl/cairo-image.sgml: Add a long description.
|
||||
* doc/public/tmpl/cairo.sgml: Fix a typo.
|
||||
* src/cairo-font.c: Document the return value of
|
||||
cairo_scaled_font_reference().
|
||||
* src/cairo-xlib-surface.c: Document the width and height
|
||||
parameters of cairo_xlib_surface_set_drawable().
|
||||
|
||||
2005-08-23 Billy Biggs <vektor@dumbterm.net>
|
||||
|
||||
* src/cairo.c: Document the rest of the path functions (except the
|
||||
|
|
|
|||
|
|
@ -7,9 +7,12 @@
|
|||
Rendering to memory buffers
|
||||
|
||||
<!-- ##### SECTION Long_Description ##### -->
|
||||
<para>
|
||||
|
||||
</para>
|
||||
<para>
|
||||
Image surfaces provide the ability to render to memory buffers
|
||||
either allocated by cairo or by the calling code. The supported
|
||||
image formats are those defined in #cairo_format_t.
|
||||
</para>
|
||||
|
||||
<!-- ##### SECTION See_Also ##### -->
|
||||
<para>
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
draw with Cairo, you create a #cairo_t, set the target surface,
|
||||
and drawing options for the #cairo_t, create shapes with
|
||||
functions like cairo_move_to() and cairo_line_to(), and then
|
||||
draw ships with cairo_stroke() or cairo_fill().
|
||||
draw shapes with cairo_stroke() or cairo_fill().
|
||||
</para>
|
||||
<para>
|
||||
#cairo_t<!-- -->'s can be pushed to a stack via cairo_save().
|
||||
|
|
|
|||
|
|
@ -756,6 +756,8 @@ UNWIND:
|
|||
* Increases the reference count on @scaled_font by one. This prevents
|
||||
* @scaled_font from being destroyed until a matching call to
|
||||
* cairo_scaled_font_destroy() is made.
|
||||
*
|
||||
* Returns: the referenced #cairo_scaled_font_t
|
||||
**/
|
||||
cairo_scaled_font_t *
|
||||
cairo_scaled_font_reference (cairo_scaled_font_t *scaled_font)
|
||||
|
|
|
|||
|
|
@ -1830,6 +1830,8 @@ cairo_xlib_surface_set_size (cairo_surface_t *surface,
|
|||
* cairo_xlib_surface_set_drawable:
|
||||
* @surface: a #cairo_surface_t for the XLib backend
|
||||
* @drawable: the new drawable for the surface
|
||||
* @width: the width of the new drawable
|
||||
* @height: the height of the new drawable
|
||||
*
|
||||
* Informs cairo of a new X Drawable underlying the
|
||||
* surface. The drawable must match the display, screen
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue