[cairo-commit] cairo/doc/reference/xml cairo_set_target_image.xml,NONE,1.1 cairo_arc.xml,1.1,1.2 cairo_arc_negative.xml,1.1,1.2 cairo_current_font.xml,1.1,1.2 cairo_current_font_extents.xml,1.1,1.2 cairo_curve_to.xml,1.1,1.2 cairo_rectangle.xml,1.1,1.2 cairo_rel_curve_to.xml,1.1,1.2 cairo_set_font.xml,1.1,1.2 cairo_set_target_surface.xml,1.3,1.4 cairo_show_glyphs.xml,1.1,1.2 cairo_show_text.xml,1.3,1.4 cairo_transform_font.xml,1.1,1.2
Thomas Hunger
commit at pdx.freedesktop.org
Mon Aug 15 11:12:59 PDT 2005
- Previous message: [cairo-commit] libglc/src glc.c,1.17,1.18 glc.h,1.12,1.13 glc_agl_extension.c,1.3,1.4 glc_agl_info.c,1.5,1.6 glc_agl_surface.c,1.7,1.8 glc_glx_context.c,1.10,1.11 glc_glx_extension.c,1.9,1.10 glc_glx_info.c,1.10,1.11 glc_glx_surface.c,1.15,1.16 glc_matrix.c,1.2,1.3 glc_program.c,1.2,1.3 glc_surface.c,1.16,1.17 glc_util.c,1.8,1.9 glcint.h,1.17,1.18
- Next message: [cairo-commit] libglc ChangeLog,1.33,1.34 TODO,1.10,1.11
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: tom
Update of /cvs/cairo/cairo/doc/reference/xml
In directory pdx:/tmp/cvs-serv15474/xml
Modified Files:
cairo_arc.xml cairo_arc_negative.xml cairo_current_font.xml
cairo_current_font_extents.xml cairo_curve_to.xml
cairo_rectangle.xml cairo_rel_curve_to.xml cairo_set_font.xml
cairo_set_target_surface.xml cairo_show_glyphs.xml
cairo_show_text.xml cairo_transform_font.xml
Added Files:
cairo_set_target_image.xml
Log Message:
added missing xml/cairo_set_target_image.xml
--- NEW FILE: cairo_set_target_image.xml ---
<refentry id="cairo_set_target_image">
<refmeta>
<refentrytitle>cairo_set_target_image</refentrytitle>
<manvolnum>3</manvolnum>
</refmeta>
<refnamediv>
<refname>cairo_set_target_image</refname>
<refpurpose>set image for painting operations </refpurpose>
</refnamediv>
<refsynopsisdiv>
<programlisting>
void cairo_set_target_image (<link linkend="cairo_t">cairo_t</link> *cr,char *data, <link linkend="cairo_format_t">cairo_format_t</link> format, int width, int height, int stride)</programlisting>
<variablelist role="params">
<varlistentry>
<term><parameter>cr</parameter> :</term>
<listitem>
<simpara>a <link linkend="cairo_t">cairo_t</link></simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>data</parameter> :</term>
<listitem>
<simpara>pointer to an user-allocated buffer of appropriate size</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>format</parameter> :</term>
<listitem>
<simpara>select color-format of image</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>width, height</parameter></term>
<listitem>
<simpara>width and height describe the visibles image size.</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>stride</parameter></term>
<listitem>
<simpara>stride is the actual with of the image and can be larger than with. It is requiered even if stride is equal to with.</simpara>
</listitem>
</varlistentry>
</variablelist>
</refsynopsisdiv>
<refsect1>
<title>Description</title>
<para>
<indexterm>
<primary>functions</primary>
<secondary>cairo_set_target_image</secondary>
</indexterm>
<indexterm>
<primary/>
</indexterm>
</para>
</refsect1>
</refentry>
Index: cairo_arc.xml
===================================================================
RCS file: /cvs/cairo/cairo/doc/reference/xml/cairo_arc.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** a/cairo_arc.xml 23 Jan 2004 22:13:20 -0000 1.1
--- b/cairo_arc.xml 20 Feb 2004 22:23:17 -0000 1.2
***************
*** 10,19 ****
<refsynopsisdiv>
<programlisting>
! void cairo_arc (cairo_t *cr, double xc, double yc, double radius, double angle1, double angle2);</programlisting>
<variablelist role="params">
<varlistentry>
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a cairo_t</simpara>
</listitem>
</varlistentry>
--- 10,19 ----
<refsynopsisdiv>
<programlisting>
! void cairo_arc (<link linkend="cairo_t">cairo_t</link> *cr, double xc, double yc, double radius, double angle1, double angle2);</programlisting>
<variablelist role="params">
<varlistentry>
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a <link linkend="cairo_t">cairo_t</link></simpara>
</listitem>
</varlistentry>
Index: cairo_arc_negative.xml
===================================================================
RCS file: /cvs/cairo/cairo/doc/reference/xml/cairo_arc_negative.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** a/cairo_arc_negative.xml 23 Jan 2004 22:13:20 -0000 1.1
--- b/cairo_arc_negative.xml 20 Feb 2004 22:23:17 -0000 1.2
***************
*** 10,19 ****
<refsynopsisdiv>
<programlisting>
! void cairo_arc_negative (cairo_t *cr, double xc, double yc, double radius, double angle1, double angle2);</programlisting>
<variablelist role="params">
<varlistentry>
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a cairo_t</simpara>
</listitem>
</varlistentry>
--- 10,19 ----
<refsynopsisdiv>
<programlisting>
! void cairo_arc_negative (<link linkend="cairo_t">cairo_t</link> *cr, double xc, double yc, double radius, double angle1, double angle2);</programlisting>
<variablelist role="params">
<varlistentry>
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a <link linkend="cairo_t">cairo_t</link></simpara>
</listitem>
</varlistentry>
Index: cairo_current_font.xml
===================================================================
RCS file: /cvs/cairo/cairo/doc/reference/xml/cairo_current_font.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** a/cairo_current_font.xml 23 Jan 2004 22:13:20 -0000 1.1
--- b/cairo_current_font.xml 20 Feb 2004 22:23:17 -0000 1.2
***************
*** 17,21 ****
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a cairo_t</simpara>
</listitem>
</varlistentry>
--- 17,21 ----
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a <link linkend="cairo_t">cairo_t</link></simpara>
</listitem>
</varlistentry>
***************
*** 32,36 ****
<primary/>
</indexterm>
! returns pointer to the current cairo_font_t object in the cairo_t
</para>
</refsect1>
--- 32,36 ----
<primary/>
</indexterm>
! returns pointer to the current cairo_font_t object in the <link linkend="cairo_t">cairo_t</link>
</para>
</refsect1>
Index: cairo_current_font_extents.xml
===================================================================
RCS file: /cvs/cairo/cairo/doc/reference/xml/cairo_current_font_extents.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** a/cairo_current_font_extents.xml 23 Jan 2004 22:13:20 -0000 1.1
--- b/cairo_current_font_extents.xml 20 Feb 2004 22:23:17 -0000 1.2
***************
*** 15,19 ****
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a cairo_t</simpara>
</listitem>
</varlistentry>
--- 15,19 ----
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a <link linkend="cairo_t">cairo_t</link></simpara>
</listitem>
</varlistentry>
Index: cairo_curve_to.xml
===================================================================
RCS file: /cvs/cairo/cairo/doc/reference/xml/cairo_curve_to.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** a/cairo_curve_to.xml 23 Jan 2004 22:13:20 -0000 1.1
--- b/cairo_curve_to.xml 20 Feb 2004 22:23:17 -0000 1.2
***************
*** 10,14 ****
<refsynopsisdiv>
<programlisting>
! void cairo_curve_to (cairo_t *cr, double x1, double y1, double x2, double y2, double x3, double y3);</programlisting>
<variablelist role="params">
<varlistentry>
--- 10,14 ----
<refsynopsisdiv>
<programlisting>
! void cairo_curve_to (<link linkend="cairo_t">cairo_t</link> *cr, double x1, double y1, double x2, double y2, double x3, double y3);</programlisting>
<variablelist role="params">
<varlistentry>
Index: cairo_rectangle.xml
===================================================================
RCS file: /cvs/cairo/cairo/doc/reference/xml/cairo_rectangle.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** a/cairo_rectangle.xml 23 Jan 2004 22:13:20 -0000 1.1
--- b/cairo_rectangle.xml 20 Feb 2004 22:23:17 -0000 1.2
***************
*** 10,19 ****
<refsynopsisdiv>
<programlisting>
! void cairo_rectangle (cairo_t *cr, double x, double y, double width, double height);</programlisting>
<variablelist role="params">
<varlistentry>
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a cairo_t</simpara>
</listitem>
</varlistentry>
--- 10,19 ----
<refsynopsisdiv>
<programlisting>
! void cairo_rectangle (<link linkend="cairo_t">cairo_t</link> *cr, double x, double y, double width, double height);</programlisting>
<variablelist role="params">
<varlistentry>
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a <link linkend="cairo_t">cairo_t</link></simpara>
</listitem>
</varlistentry>
Index: cairo_rel_curve_to.xml
===================================================================
RCS file: /cvs/cairo/cairo/doc/reference/xml/cairo_rel_curve_to.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** a/cairo_rel_curve_to.xml 23 Jan 2004 22:13:20 -0000 1.1
--- b/cairo_rel_curve_to.xml 20 Feb 2004 22:23:17 -0000 1.2
***************
*** 1,19 ****
<refentry id="cairo_curve_to">
<refmeta>
! <refentrytitle>cairo_curve_to</refentrytitle>
<manvolnum>3</manvolnum>
</refmeta>
<refnamediv>
! <refname>cairo_curve_to</refname>
<refpurpose>some description</refpurpose>
</refnamediv>
<refsynopsisdiv>
<programlisting>
! void cairo_curve_to (cairo_t *cr, double dx1, double dy1, double dx2, double dy2, double dx3, double dy3);</programlisting>
<variablelist role="params">
<varlistentry>
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a cairo_t</simpara>
</listitem>
</varlistentry>
--- 1,19 ----
<refentry id="cairo_curve_to">
<refmeta>
! <refentrytitle><link linkend="cairo_curve_to">cairo_curve_to</link></refentrytitle>
<manvolnum>3</manvolnum>
</refmeta>
<refnamediv>
! <refname><link linkend="cairo_curve_to">cairo_curve_to</link></refname>
<refpurpose>some description</refpurpose>
</refnamediv>
<refsynopsisdiv>
<programlisting>
! void <link linkend="cairo_curve_to">cairo_curve_to</link> (<link linkend="cairo_t">cairo_t</link> *cr, double dx1, double dy1, double dx2, double dy2, double dx3, double dy3);</programlisting>
<variablelist role="params">
<varlistentry>
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a <link linkend="cairo_t">cairo_t</link></simpara>
</listitem>
</varlistentry>
***************
*** 61,65 ****
<indexterm>
<primary>functions</primary>
! <secondary>cairo_curve_to</secondary>
</indexterm>
<indexterm>
--- 61,65 ----
<indexterm>
<primary>functions</primary>
! <secondary><link linkend="cairo_curve_to">cairo_curve_to</link></secondary>
</indexterm>
<indexterm>
Index: cairo_set_font.xml
===================================================================
RCS file: /cvs/cairo/cairo/doc/reference/xml/cairo_set_font.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** a/cairo_set_font.xml 23 Jan 2004 22:13:20 -0000 1.1
--- b/cairo_set_font.xml 20 Feb 2004 22:23:17 -0000 1.2
***************
*** 15,19 ****
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a cairo_t</simpara>
</listitem>
</varlistentry>
--- 15,19 ----
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a <link linkend="cairo_t">cairo_t</link></simpara>
</listitem>
</varlistentry>
***************
*** 21,25 ****
<term><parameter>font</parameter> :</term>
<listitem>
! <simpara>replaces the current cairo_font_t object in the cairo_t with font. The replaced font in the cairo_t will be destroyed if there are no other references to it.</simpara>
</listitem>
</varlistentry>
--- 21,25 ----
<term><parameter>font</parameter> :</term>
<listitem>
! <simpara>replaces the current cairo_font_t object in the <link linkend="cairo_t">cairo_t</link> with font. The replaced font in the <link linkend="cairo_t">cairo_t</link> will be destroyed if there are no other references to it.</simpara>
</listitem>
</varlistentry>
Index: cairo_set_target_surface.xml
===================================================================
RCS file: /cvs/cairo/cairo/doc/reference/xml/cairo_set_target_surface.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** a/cairo_set_target_surface.xml 16 Oct 2003 17:54:34 -0000 1.3
--- b/cairo_set_target_surface.xml 20 Feb 2004 22:23:17 -0000 1.4
***************
*** 36,40 ****
<primary/>
</indexterm>
! Selects <varname>surfacee</varname> as the surface to draw on. If there already is a surface set, it will be substituted by <varname>surface</varname>. It references <varname>surface</varname>e to ensure that it will be calid at least until another surface was selected or the <link linkend="cairo_t">cairo_t</link> is destroyed.
</para>
</refsect1>
--- 36,40 ----
<primary/>
</indexterm>
! Selects <varname>surfacee</varname> as the surface to draw on. If there already is a surface set, it will be substituted by <varname>surface</varname>. It references <varname>surface</varname>e to ensure that it will be valid at least until another surface was selected or the <link linkend="cairo_t">cairo_t</link> is destroyed.
</para>
</refsect1>
Index: cairo_show_glyphs.xml
===================================================================
RCS file: /cvs/cairo/cairo/doc/reference/xml/cairo_show_glyphs.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** a/cairo_show_glyphs.xml 23 Jan 2004 22:13:20 -0000 1.1
--- b/cairo_show_glyphs.xml 20 Feb 2004 22:23:17 -0000 1.2
***************
*** 15,19 ****
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a cairo_t</simpara>
</listitem>
</varlistentry>
--- 15,19 ----
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a <link linkend="cairo_t">cairo_t</link></simpara>
</listitem>
</varlistentry>
Index: cairo_show_text.xml
===================================================================
RCS file: /cvs/cairo/cairo/doc/reference/xml/cairo_show_text.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** a/cairo_show_text.xml 23 Jan 2004 22:13:20 -0000 1.3
--- b/cairo_show_text.xml 20 Feb 2004 22:23:17 -0000 1.4
***************
*** 16,20 ****
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a cairo_t</simpara>
</listitem>
</varlistentry>
--- 16,20 ----
<term><parameter>cr</parameter> :</term>
<listitem>
! <simpara>a <link linkend="cairo_t">cairo_t</link></simpara>
</listitem>
</varlistentry>
Index: cairo_transform_font.xml
===================================================================
RCS file: /cvs/cairo/cairo/doc/reference/xml/cairo_transform_font.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** a/cairo_transform_font.xml 23 Jan 2004 22:13:20 -0000 1.1
--- b/cairo_transform_font.xml 20 Feb 2004 22:23:17 -0000 1.2
***************
*** 11,15 ****
<refsynopsisdiv>
<programlisting>
! void cairo_transform_font (<link linkend="cairo_t">cairo_t</link> *cr, cairo_matrix_t *matrix);</programlisting>
<variablelist role="params">
<varlistentry>
--- 11,15 ----
<refsynopsisdiv>
<programlisting>
! void cairo_transform_font (<link linkend="cairo_t">cairo_t</link> *cr, <link linkend="cairo_matrix_t">cairo_matrix_t</link> *matrix);</programlisting>
<variablelist role="params">
<varlistentry>
- Previous message: [cairo-commit] libglc/src glc.c,1.17,1.18 glc.h,1.12,1.13 glc_agl_extension.c,1.3,1.4 glc_agl_info.c,1.5,1.6 glc_agl_surface.c,1.7,1.8 glc_glx_context.c,1.10,1.11 glc_glx_extension.c,1.9,1.10 glc_glx_info.c,1.10,1.11 glc_glx_surface.c,1.15,1.16 glc_matrix.c,1.2,1.3 glc_program.c,1.2,1.3 glc_surface.c,1.16,1.17 glc_util.c,1.8,1.9 glcint.h,1.17,1.18
- Next message: [cairo-commit] libglc ChangeLog,1.33,1.34 TODO,1.10,1.11
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cairo-commit
mailing list