Nikolay Sivov : dwrite: Print missing table message as a trace.

Alexandre Julliard julliard at winehq.org
Thu Jul 20 16:20:35 CDT 2017


Module: wine
Branch: master
Commit: d06443d659d1a86f0111859711203bc426ef7b67
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=d06443d659d1a86f0111859711203bc426ef7b67

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Thu Jul 20 19:47:32 2017 +0300

dwrite: Print missing table message as a trace.

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/dwrite/font.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/dwrite/font.c b/dlls/dwrite/font.c
index 5e72aea..6862d7b 100644
--- a/dlls/dwrite/font.c
+++ b/dlls/dwrite/font.c
@@ -353,7 +353,7 @@ static void* get_fontface_table(IDWriteFontFace4 *fontface, UINT32 tag, struct d
     hr = IDWriteFontFace4_TryGetFontTable(fontface, tag, (const void**)&table->data, &table->size, &table->context,
         &table->exists);
     if (FAILED(hr) || !table->exists) {
-        WARN("Font does not have a %s table\n", debugstr_tag(tag));
+        TRACE("Font does not have %s table\n", debugstr_tag(tag));
         return NULL;
     }
 
@@ -5118,7 +5118,7 @@ static HRESULT WINAPI glyphrunanalysis_GetAlphaBlendParams(IDWriteGlyphRunAnalys
         break;
     }
     case DWRITE_RENDERING_MODE1_NATURAL_SYMMETRIC_DOWNSAMPLED:
-        WARN("Downsampled mode is ignored.\n");
+        WARN("NATURAL_SYMMETRIC_DOWNSAMPLED mode is ignored.\n");
         /* fallthrough */
     case DWRITE_RENDERING_MODE1_ALIASED:
     case DWRITE_RENDERING_MODE1_NATURAL:




More information about the wine-cvs mailing list