[pango] CoreText: stricter handling of FontSymbolic traits
- From: Kristian Rietveld <kristian src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pango] CoreText: stricter handling of FontSymbolic traits
- Date: Mon, 14 Nov 2011 09:56:42 +0000 (UTC)
commit cce4c9f84350bb53371323ab96ccf9245e014f75
Author: Kristian Rietveld <kris lanedo com>
Date: Mon Nov 14 10:48:53 2011 +0100
CoreText: stricter handling of FontSymbolic traits
It turns out that getting this value as "Int" is incorrect and resulted
in font traits not being returned in some cases. Without traits, an
italic trait is not set, which caused synthetic oblique fonts to be
created when not necessary.
Also use CTFontSymbolicTraits type in the PangoCoreTextFace structure
and do a stricter bit mask check for certainty.
pango/pangocoretext-fontmap.c | 16 +++++++++++-----
1 files changed, 11 insertions(+), 5 deletions(-)
---
diff --git a/pango/pangocoretext-fontmap.c b/pango/pangocoretext-fontmap.c
index 542665e..9f67acb 100644
--- a/pango/pangocoretext-fontmap.c
+++ b/pango/pangocoretext-fontmap.c
@@ -78,7 +78,7 @@ struct _PangoCoreTextFace
char *style_name;
PangoWeight weight;
- int traits;
+ CTFontSymbolicTraits traits;
guint synthetic_italic : 1;
};
@@ -195,7 +195,7 @@ pango_core_text_face_is_oblique (PangoCoreTextFace *face)
static inline PangoCoreTextFace *
pango_core_text_face_from_ct_font_descriptor (CTFontDescriptorRef desc)
{
- int font_traits;
+ SInt64 font_traits;
char *buffer;
CFStringRef str;
CFNumberRef number;
@@ -250,8 +250,14 @@ pango_core_text_face_from_ct_font_descriptor (CTFontDescriptorRef desc)
else
face->weight = PANGO_WEIGHT_NORMAL;
+ /* This is interesting, the value stored is a CTFontSymbolicTraits which
+ * is defined as uint32_t. CFNumber does not have an obvious type which
+ * deals with unsigned values. Upon inspection with CFNumberGetType,
+ * it turns out this value is stored as SInt64, so we use that to
+ * obtain the value from the CFNumber.
+ */
number = (CFNumberRef)CFDictionaryGetValue (dict, kCTFontSymbolicTrait);
- if (CFNumberGetValue (number, kCFNumberIntType, &font_traits))
+ if (CFNumberGetValue (number, kCFNumberSInt64Type, &font_traits))
{
face->traits = font_traits;
}
@@ -327,8 +333,8 @@ pango_core_text_family_list_faces (PangoFontFamily *family,
faces = g_list_prepend (faces, face);
- if (face->traits & kCTFontItalicTrait
- || pango_core_text_face_is_oblique (face))
+ if ((face->traits & kCTFontItalicTrait) == kCTFontItalicTrait ||
+ pango_core_text_face_is_oblique (face))
g_hash_table_insert (italic_faces,
GINT_TO_POINTER ((gint)face->weight),
face);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]