From 158b338fb2817996c5191332951b6957416c2e77 Mon Sep 17 00:00:00 2001 From: Owen Taylor Date: Sat, 6 Aug 2005 10:22:07 +0000 Subject: [PATCH] Remove a non-sensical XXX that crept in at some point; for a solid color, there is no difference between premultiplied and non-premultiplied colors. --- ChangeLog | 7 +++++++ src/cairo-win32-font.c | 1 - 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2a9e0b0f6..8974d6580 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2005-08-06 Owen Taylor + + * src/cairo-win32-font.c (_cairo_win32_scaled_font_show_glyphs): + Remove a non-sensical XXX that crept in at some point; for + a solid color, there is no difference between premultiplied + and non-premultiplied colors. + 2005-08-06 Carl Worth * src/cairo-ft-font.c: (_cairo_ft_scaled_font_create), diff --git a/src/cairo-win32-font.c b/src/cairo-win32-font.c index 51dab1b75..4867fc0f9 100644 --- a/src/cairo-win32-font.c +++ b/src/cairo-win32-font.c @@ -1056,7 +1056,6 @@ _cairo_win32_scaled_font_show_glyphs (void *abstract_font, */ COLORREF new_color; - /* XXX Use the unpremultiplied or premultiplied color? */ new_color = RGB (((int)solid_pattern->color.red_short) >> 8, ((int)solid_pattern->color.green_short) >> 8, ((int)solid_pattern->color.blue_short) >> 8);