From 652e5d209a60d0f63f2787588e658fb6527d540a Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Wed, 15 Jul 2009 08:24:38 +0000 Subject: [PATCH] (nsfont_draw): Remove code for stippling, which actually does tiling. --- src/nsfont.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/nsfont.m b/src/nsfont.m index 7241af3048c..5a1154bf5b0 100644 --- a/src/nsfont.m +++ b/src/nsfont.m @@ -1095,15 +1095,19 @@ nsfont_draw (struct glyph_string *s, int from, int to, int x, int y, br.size.width -= 2*correction; } +#if 0 if (!s->face->stipple) +#endif [(NS_FACE_BACKGROUND (face) != 0 ? ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), s->f) : FRAME_BACKGROUND_COLOR (s->f)) set]; +#if 0 /* This is tiling, not stippling. */ else { struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (s->f); [[dpyinfo->bitmaps[face->stipple-1].img stippleMask] set]; } +#endif NSRectFill (br); } -- 2.39.2