Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
4aa2c81d
Commit
4aa2c81d
authored
Jun 24, 2002
by
Huw D M Davies
Committed by
Alexandre Julliard
Jun 24, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get rid of a few thousand useless TRACE lines.
parent
eee03b0e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
afm.c
dlls/wineps/afm.c
+4
-0
glyphlist.c
dlls/wineps/glyphlist.c
+6
-3
No files found.
dlls/wineps/afm.c
View file @
4aa2c81d
...
...
@@ -163,7 +163,9 @@ static void PSDRV_DumpFontList(void)
TRACE
(
"Family '%s'
\n
"
,
family
->
FamilyName
);
for
(
afmle
=
family
->
afmlist
;
afmle
;
afmle
=
afmle
->
next
)
{
#if 0
INT i;
#endif
TRACE
(
"
\t
FontName '%s' (%i glyphs) - '%s' encoding:
\n
"
,
afmle
->
afm
->
FontName
,
afmle
->
afm
->
NumofMetrics
,
...
...
@@ -173,11 +175,13 @@ static void PSDRV_DumpFontList(void)
/* PSDRV_AFM2C(afmle->afm); */
#if 0
for (i = 0; i < afmle->afm->NumofMetrics; ++i)
{
TRACE("\t\tU+%.4lX; C %i; N '%s'\n", afmle->afm->Metrics[i].UV,
afmle->afm->Metrics[i].C, afmle->afm->Metrics[i].N->sz);
}
#endif
}
}
return
;
...
...
dlls/wineps/glyphlist.c
View file @
4aa2c81d
...
...
@@ -124,9 +124,10 @@ inline static INT GlyphListInsert(LPCSTR szName, INT index)
++
glyphListSize
;
glyphNamesIndexed
=
FALSE
;
#if 0
TRACE("Added '%s' at glyphList[%i] (glyphListSize now %i)\n",
glyphList[index]->sz, index, glyphListSize);
#endif
return
index
;
}
...
...
@@ -153,8 +154,10 @@ static INT GlyphListSearch(LPCSTR szName, INT loIndex, INT hiIndex)
if
(
cmpResult
==
0
)
{
#if 0
TRACE("Found '%s' at glyphList[%i]\n", glyphList[midIndex]->sz,
midIndex);
#endif
return
midIndex
;
}
...
...
@@ -176,8 +179,6 @@ const GLYPHNAME *PSDRV_GlyphName(LPCSTR szName)
{
INT
index
;
TRACE
(
"'%s'
\n
"
,
szName
);
index
=
GlyphListSearch
(
szName
,
0
,
glyphListSize
-
1
);
if
(
index
<
0
)
return
NULL
;
...
...
@@ -203,7 +204,9 @@ VOID PSDRV_IndexGlyphList()
for
(
i
=
0
;
i
<
glyphListSize
;
++
i
)
{
glyphList
[
i
]
->
index
=
i
;
#if 0
TRACE(" glyphList[%i] -> '%s'\n", i, glyphList[i]->sz);
#endif
}
glyphNamesIndexed
=
TRUE
;
...
...
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