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
20e61813
Commit
20e61813
authored
Sep 15, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Sep 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwrite: Print font table tag in string form in traces.
parent
edbd841d
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 @
20e61813
...
...
@@ -260,7 +260,7 @@ static inline struct dwrite_fontlist *impl_from_IDWriteFontList(IDWriteFontList
static
inline
const
char
*
debugstr_tag
(
UINT32
tag
)
{
return
wine_dbg_sprintf
(
"%c%c%c%c"
,
tag
&
0xff
,
(
tag
>>
8
)
&
0xff
,
(
tag
>>
16
)
&
0xff
,
tag
>>
2
4
);
return
debugstr_an
((
char
*
)
&
tag
,
4
);
}
static
HRESULT
get_cached_glyph_metrics
(
struct
dwrite_fontface
*
fontface
,
UINT16
glyph
,
DWRITE_GLYPH_METRICS
*
metrics
)
...
...
@@ -566,7 +566,7 @@ static HRESULT WINAPI dwritefontface_TryGetFontTable(IDWriteFontFace2 *iface, UI
{
struct
dwrite_fontface
*
This
=
impl_from_IDWriteFontFace2
(
iface
);
TRACE
(
"(%p)->(%
u %p %p %p %p)
\n
"
,
This
,
table_tag
,
table_data
,
table_size
,
context
,
exists
);
TRACE
(
"(%p)->(%
s %p %p %p %p)
\n
"
,
This
,
debugstr_tag
(
table_tag
)
,
table_data
,
table_size
,
context
,
exists
);
return
opentype_get_font_table
(
This
->
streams
[
0
],
This
->
type
,
This
->
index
,
table_tag
,
table_data
,
context
,
table_size
,
exists
);
}
...
...
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