Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
d06443d6
Commit
d06443d6
authored
Jul 20, 2017
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jul 20, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwrite: Print missing table message as a trace.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b1e0f759
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
font.c
dlls/dwrite/font.c
+2
-2
No files found.
dlls/dwrite/font.c
View file @
d06443d6
...
...
@@ -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
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment