dwrite: Print missing table message as a trace.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2017-07-20 19:47:32 +03:00 committed by Alexandre Julliard
parent b1e0f75972
commit d06443d659
1 changed files with 2 additions and 2 deletions

View File

@ -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: