[cairo-commit] cairo/src cairo_color.c,1.9,1.10
Oeyvind Kolaas
commit at pdx.freedesktop.org
Tue Jan 11 13:50:15 PST 2005
- Previous message: [cairo-commit] cairo ChangeLog,1.295,1.296
- Next message: [cairo-commit] cairo-demo/cairo_snippets ChangeLog, 1.20,
1.21 Makefile, 1.11, 1.12 arc.cairo, 1.2,
1.3 arc_negative.cairo, 1.1, 1.2 cairo_snippets_gtk.c, 1.3,
1.4 cairo_snippets_pdf.c, 1.3, 1.4 cairo_snippets_png.c, 1.5,
1.6 cairo_snippets_ps.c, 1.1, 1.2 clip.cairo, 1.1,
1.2 clip_image.cairo, 1.1, 1.2 curve_rectangle.cairo, 1.1,
1.2 curve_to.cairo, 1.1, 1.2 fill_and_stroke.cairo, 1.1,
1.2 fill_and_stroke2.cairo, 1.1, 1.2 gradient.cairo, 1.2,
1.3 image.cairo, 1.1, 1.2 imagepattern.cairo, 1.1,
1.2 index.html_template, 1.1, 1.2 libsvg.cairo, 1.1,
1.2 operator_add.cairo, 1.3, 1.4 operator_atop.cairo, 1.3,
1.4 operator_atop_reverse.cairo, 1.3, 1.4 operator_in.cairo,
1.3, 1.4 operator_in_reverse.cairo, 1.3,
1.4 operator_out.cairo, 1.3, 1.4 operator_out_reverse.cairo,
1.3, 1.4 operator_over.cairo, 1.3,
1.4 operator_over_reverse.cairo, 1.3,
1.4 operator_saturate.cairo, 1.3, 1.4 operator_xor.cairo, 1.3,
1.4 path.cairo, 1.1, 1.2 prepare_snippets.c, 1.5,
1.6 set_line_cap.cairo, 1.1, 1.2 set_line_join.cairo, 1.1,
1.2 snippets.h, 1.3, 1.4 text.cairo, 1.2,
1.3 text_align_center.cairo, 1.1, 1.2 text_extents.cairo, 1.1,
1.2 xxx_clip_rectangle.cairo, 1.1, 1.2 xxx_dash.cairo, 1.2,
1.3 xxx_long_lines.cairo, 1.1,
1.2 xxx_multi_segment_caps.cairo, 1.1,
1.2 xxx_self_intersect.cairo, 1.2, 1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: pippin
Update of /cvs/cairo/cairo/src
In directory gabe:/tmp/cvs-serv26539/src
Modified Files:
cairo_color.c
Log Message:
renamed CAIRO_COLOR_DEFAULT to CAIRO_COLOR_WHITE
Index: cairo_color.c
===================================================================
RCS file: /cvs/cairo/cairo/src/cairo_color.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- cairo_color.c 11 Jan 2005 21:28:51 -0000 1.9
+++ cairo_color.c 11 Jan 2005 21:50:13 -0000 1.10
@@ -36,9 +36,9 @@
#include "cairoint.h"
-static cairo_color_t const CAIRO_COLOR_DEFAULT = {
- 0.0, 0.0, 0.0, 1.0,
- 0x0000, 0x0000, 0x0000, 0xffff
+static cairo_color_t const CAIRO_COLOR_WHITE = {
+ 1.0, 1.0, 1.0, 1.0,
+ 0xffff, 0xffff, 0xffff, 0xffff
};
static void
@@ -47,7 +47,7 @@
void
_cairo_color_init (cairo_color_t *color)
{
- *color = CAIRO_COLOR_DEFAULT;
+ *color = CAIRO_COLOR_WHITE;
}
void
- Previous message: [cairo-commit] cairo ChangeLog,1.295,1.296
- Next message: [cairo-commit] cairo-demo/cairo_snippets ChangeLog, 1.20,
1.21 Makefile, 1.11, 1.12 arc.cairo, 1.2,
1.3 arc_negative.cairo, 1.1, 1.2 cairo_snippets_gtk.c, 1.3,
1.4 cairo_snippets_pdf.c, 1.3, 1.4 cairo_snippets_png.c, 1.5,
1.6 cairo_snippets_ps.c, 1.1, 1.2 clip.cairo, 1.1,
1.2 clip_image.cairo, 1.1, 1.2 curve_rectangle.cairo, 1.1,
1.2 curve_to.cairo, 1.1, 1.2 fill_and_stroke.cairo, 1.1,
1.2 fill_and_stroke2.cairo, 1.1, 1.2 gradient.cairo, 1.2,
1.3 image.cairo, 1.1, 1.2 imagepattern.cairo, 1.1,
1.2 index.html_template, 1.1, 1.2 libsvg.cairo, 1.1,
1.2 operator_add.cairo, 1.3, 1.4 operator_atop.cairo, 1.3,
1.4 operator_atop_reverse.cairo, 1.3, 1.4 operator_in.cairo,
1.3, 1.4 operator_in_reverse.cairo, 1.3,
1.4 operator_out.cairo, 1.3, 1.4 operator_out_reverse.cairo,
1.3, 1.4 operator_over.cairo, 1.3,
1.4 operator_over_reverse.cairo, 1.3,
1.4 operator_saturate.cairo, 1.3, 1.4 operator_xor.cairo, 1.3,
1.4 path.cairo, 1.1, 1.2 prepare_snippets.c, 1.5,
1.6 set_line_cap.cairo, 1.1, 1.2 set_line_join.cairo, 1.1,
1.2 snippets.h, 1.3, 1.4 text.cairo, 1.2,
1.3 text_align_center.cairo, 1.1, 1.2 text_extents.cairo, 1.1,
1.2 xxx_clip_rectangle.cairo, 1.1, 1.2 xxx_dash.cairo, 1.2,
1.3 xxx_long_lines.cairo, 1.1,
1.2 xxx_multi_segment_caps.cairo, 1.1,
1.2 xxx_self_intersect.cairo, 1.2, 1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cairo-commit
mailing list