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
9a847b3a
Commit
9a847b3a
authored
Jan 06, 2009
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 06, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
usp10: Improve some traces.
parent
83f66d02
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
usp10.c
dlls/usp10/usp10.c
+5
-3
No files found.
dlls/usp10/usp10.c
View file @
9a847b3a
...
...
@@ -1287,7 +1287,9 @@ HRESULT WINAPI ScriptShape(HDC hdc, SCRIPT_CACHE *psc, const WCHAR *pwcChars,
HRESULT
hr
;
unsigned
int
i
;
TRACE
(
"(%p, %p, %p, %d, %d, %p)
\n
"
,
hdc
,
psc
,
pwcChars
,
cChars
,
cMaxGlyphs
,
psa
);
TRACE
(
"(%p, %p, %s, %d, %d, %p, %p, %p, %p, %p)
\n
"
,
hdc
,
psc
,
debugstr_wn
(
pwcChars
,
cChars
),
cChars
,
cMaxGlyphs
,
psa
,
pwOutGlyphs
,
pwLogClust
,
psva
,
pcGlyphs
);
if
(
psa
)
TRACE
(
"psa values: %d, %d, %d, %d, %d, %d, %d
\n
"
,
psa
->
eScript
,
psa
->
fRTL
,
psa
->
fLayoutRTL
,
psa
->
fLinkBefore
,
psa
->
fLinkAfter
,
psa
->
fLogicalOrder
,
psa
->
fNoGlyphIndex
);
...
...
@@ -1362,8 +1364,8 @@ HRESULT WINAPI ScriptPlace(HDC hdc, SCRIPT_CACHE *psc, const WORD *pwGlyphs,
HRESULT
hr
;
int
i
;
TRACE
(
"(%p, %p, %p, %
s, %d, %p, %p, %p)
\n
"
,
hdc
,
psc
,
pwGlyphs
,
debugstr_wn
(
pwGlyphs
,
cGlyphs
),
cGlyphs
,
psva
,
psa
,
piAdvance
);
TRACE
(
"(%p, %p, %p, %
d, %p, %p, %p, %p, %p)
\n
"
,
hdc
,
psc
,
pwGlyphs
,
cGlyphs
,
psva
,
psa
,
piAdvance
,
pGoffset
,
pABC
);
if
(
!
psva
)
return
E_INVALIDARG
;
if
((
hr
=
init_script_cache
(
hdc
,
psc
))
!=
S_OK
)
return
hr
;
...
...
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