[PATCH 2/2] dwrite: Recognize semi light weight patterns

Nikolay Sivov nsivov at codeweavers.com
Mon Aug 31 00:13:44 CDT 2015


---

-------------- next part --------------
>From e6f78c8b3bb2af1dc9d4159ba9edf7dd2430cf8e Mon Sep 17 00:00:00 2001
From: Nikolay Sivov <nsivov at codeweavers.com>
Date: Mon, 31 Aug 2015 08:10:41 +0300
Subject: [PATCH 2/2] dwrite: Recognize semi light weight patterns

---
 dlls/dwrite/font.c | 10 ++++++++++
 include/dwrite.idl |  1 +
 2 files changed, 11 insertions(+)

diff --git a/dlls/dwrite/font.c b/dlls/dwrite/font.c
index b1a3cae..63ad277 100644
--- a/dlls/dwrite/font.c
+++ b/dlls/dwrite/font.c
@@ -2236,6 +2236,11 @@ static DWRITE_FONT_WEIGHT font_extract_weight(struct list *tokens, DWRITE_FONT_W
         { NULL }
     };
 
+    static const struct name_pattern semilight_patterns[] = {
+        { semiW, lightW },
+        { NULL }
+    };
+
     static const struct name_pattern demibold_patterns[] = {
         { semiW, boldW },
         { demiW, boldW },
@@ -2302,6 +2307,9 @@ static DWRITE_FONT_WEIGHT font_extract_weight(struct list *tokens, DWRITE_FONT_W
     if (match_pattern_list(tokens, extralight_patterns, match))
         return DWRITE_FONT_WEIGHT_EXTRA_LIGHT;
 
+    if (match_pattern_list(tokens, semilight_patterns, match))
+        return DWRITE_FONT_WEIGHT_SEMI_LIGHT;
+
     if (match_pattern_list(tokens, demibold_patterns, match))
         return DWRITE_FONT_WEIGHT_DEMI_BOLD;
 
@@ -2362,6 +2370,7 @@ static int compare_knownweights(const void *a, const void* b)
 static BOOL is_known_weight_value(DWRITE_FONT_WEIGHT weight, WCHAR *nameW)
 {
     static const WCHAR extralightW[] = {'E','x','t','r','a',' ','L','i','g','h','t',0};
+    static const WCHAR semilightW[] = {'S','e','m','i',' ','L','i','g','h','t',0};
     static const WCHAR extrablackW[] = {'E','x','t','r','a',' ','B','l','a','c','k',0};
     static const WCHAR extraboldW[] = {'E','x','t','r','a',' ','B','o','l','d',0};
     static const WCHAR demiboldW[] = {'D','e','m','i',' ','B','o','l','d',0};
@@ -2371,6 +2380,7 @@ static BOOL is_known_weight_value(DWRITE_FONT_WEIGHT weight, WCHAR *nameW)
         { thinW,       DWRITE_FONT_WEIGHT_THIN },
         { extralightW, DWRITE_FONT_WEIGHT_EXTRA_LIGHT },
         { lightW,      DWRITE_FONT_WEIGHT_LIGHT },
+        { semilightW,  DWRITE_FONT_WEIGHT_SEMI_LIGHT },
         { mediumW,     DWRITE_FONT_WEIGHT_MEDIUM },
         { demiboldW,   DWRITE_FONT_WEIGHT_DEMI_BOLD },
         { boldW,       DWRITE_FONT_WEIGHT_BOLD },
diff --git a/include/dwrite.idl b/include/dwrite.idl
index f8644ba..9452e11 100644
--- a/include/dwrite.idl
+++ b/include/dwrite.idl
@@ -73,6 +73,7 @@ typedef enum DWRITE_FONT_WEIGHT
     DWRITE_FONT_WEIGHT_EXTRA_LIGHT = 200,
     DWRITE_FONT_WEIGHT_ULTRA_LIGHT = 200,
     DWRITE_FONT_WEIGHT_LIGHT = 300,
+    DWRITE_FONT_WEIGHT_SEMI_LIGHT = 350,
     DWRITE_FONT_WEIGHT_NORMAL = 400,
     DWRITE_FONT_WEIGHT_REGULAR = 400,
     DWRITE_FONT_WEIGHT_MEDIUM = 500,
-- 
2.1.4



More information about the wine-patches mailing list