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
0e913c4a
Commit
0e913c4a
authored
Jun 16, 2016
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 17, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwrite: Trace script name in shaping methods.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7cfcd238
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
analyzer.c
dlls/dwrite/analyzer.c
+10
-8
No files found.
dlls/dwrite/analyzer.c
View file @
0e913c4a
...
...
@@ -966,9 +966,10 @@ static HRESULT WINAPI dwritetextanalyzer_GetGlyphs(IDWriteTextAnalyzer2 *iface,
HRESULT
hr
=
S_OK
;
UINT16
script
;
TRACE
(
"(%s:%u %p %d %d %p %s %p %p %p %u %u %p %p %p %p %p)
\n
"
,
debugstr_wn
(
text
,
length
),
length
,
fontface
,
is_sideways
,
is_rtl
,
analysis
,
debugstr_w
(
locale
),
substitution
,
features
,
feature_range_len
,
feature_ranges
,
max_glyph_count
,
clustermap
,
text_props
,
glyph_indices
,
glyph_props
,
actual_glyph_count
);
TRACE
(
"(%s:%u %p %d %d %s %s %p %p %p %u %u %p %p %p %p %p)
\n
"
,
debugstr_wn
(
text
,
length
),
length
,
fontface
,
is_sideways
,
is_rtl
,
debugstr_sa_script
(
analysis
->
script
),
debugstr_w
(
locale
),
substitution
,
features
,
feature_range_len
,
feature_ranges
,
max_glyph_count
,
clustermap
,
text_props
,
glyph_indices
,
glyph_props
,
actual_glyph_count
);
script
=
analysis
->
script
>
Script_LastId
?
Script_Unknown
:
analysis
->
script
;
...
...
@@ -1099,9 +1100,10 @@ static HRESULT WINAPI dwritetextanalyzer_GetGlyphPlacements(IDWriteTextAnalyzer2
HRESULT
hr
;
UINT32
i
;
TRACE
(
"(%s %p %p %u %p %p %u %p %.2f %d %d %
p
%s %p %p %u %p %p)
\n
"
,
debugstr_wn
(
text
,
text_len
),
TRACE
(
"(%s %p %p %u %p %p %u %p %.2f %d %d %
s
%s %p %p %u %p %p)
\n
"
,
debugstr_wn
(
text
,
text_len
),
clustermap
,
props
,
text_len
,
glyphs
,
glyph_props
,
glyph_count
,
fontface
,
emSize
,
is_sideways
,
is_rtl
,
analysis
,
debugstr_w
(
locale
),
features
,
feature_range_len
,
feature_ranges
,
advances
,
offsets
);
is_rtl
,
debugstr_sa_script
(
analysis
->
script
),
debugstr_w
(
locale
),
features
,
feature_range_len
,
feature_ranges
,
advances
,
offsets
);
if
(
glyph_count
==
0
)
return
S_OK
;
...
...
@@ -1147,10 +1149,10 @@ static HRESULT WINAPI dwritetextanalyzer_GetGdiCompatibleGlyphPlacements(IDWrite
HRESULT
hr
;
UINT32
i
;
TRACE
(
"(%s %p %p %u %p %p %u %p %.2f %.2f %p %d %d %d %
p
%s %p %p %u %p %p)
\n
"
,
debugstr_wn
(
text
,
text_len
),
TRACE
(
"(%s %p %p %u %p %p %u %p %.2f %.2f %p %d %d %d %
s
%s %p %p %u %p %p)
\n
"
,
debugstr_wn
(
text
,
text_len
),
clustermap
,
props
,
text_len
,
glyphs
,
glyph_props
,
glyph_count
,
fontface
,
emSize
,
ppdip
,
transform
,
use_gdi_natural
,
is_sideways
,
is_rtl
,
analysis
,
debugstr_w
(
locale
),
features
,
feature_range_lengths
,
feature_ranges
,
advances
,
offsets
);
transform
,
use_gdi_natural
,
is_sideways
,
is_rtl
,
debugstr_sa_script
(
analysis
->
script
),
debugstr_w
(
locale
)
,
feature
s
,
feature_range_lengths
,
feature
_ranges
,
advances
,
offsets
);
if
(
glyph_count
==
0
)
return
S_OK
;
...
...
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