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
ec3f8a76
Commit
ec3f8a76
authored
Jun 17, 2014
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32/tests: Silence some noisy traces.
parent
c7eacd9e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
12 deletions
+0
-12
metafile.c
dlls/gdi32/tests/metafile.c
+0
-12
No files found.
dlls/gdi32/tests/metafile.c
View file @
ec3f8a76
...
...
@@ -84,9 +84,6 @@ static int CALLBACK eto_emf_enum_proc(HDC hdc, HANDLETABLE *handle_table,
LOGFONTA
device_lf
;
INT
ret
;
trace
(
"hdc %p, emr->iType %d, emr->nSize %d, param %p
\n
"
,
hdc
,
emr
->
iType
,
emr
->
nSize
,
(
void
*
)
param
);
if
(
!
hdc
)
return
1
;
PlayEnhMetaFileRecord
(
hdc
,
handle_table
,
emr
,
n_objs
);
...
...
@@ -299,10 +296,6 @@ static int CALLBACK eto_scale_enum_proc(HDC hdc, HANDLETABLE *handle_table,
if
(
emr
->
iType
==
EMR_EXTTEXTOUTW
)
{
const
EMREXTTEXTOUTW
*
pExtTextOutW
=
(
const
EMREXTTEXTOUTW
*
)
emr
;
trace
(
"gm %d, mm %d, scale %f, %f, expected %f, %f
\n
"
,
test
->
graphics_mode
,
test
->
map_mode
,
pExtTextOutW
->
exScale
,
pExtTextOutW
->
eyScale
,
test
->
ex_scale
,
test
->
ey_scale
);
ok
(
fabs
(
test
->
ex_scale
-
pExtTextOutW
->
exScale
)
<
0
.
001
,
"Got exScale %f, expected %f
\n
"
,
pExtTextOutW
->
exScale
,
test
->
ex_scale
);
ok
(
fabs
(
test
->
ey_scale
-
pExtTextOutW
->
eyScale
)
<
0
.
001
,
...
...
@@ -488,7 +481,6 @@ static int CALLBACK savedc_emf_enum_proc(HDC hdc, HANDLETABLE *handle_table,
trace
(
"hdc %p, emr->iType %d, emr->nSize %d, param %p
\n
"
,
hdc
,
emr
->
iType
,
emr
->
nSize
,
(
void
*
)
param
);
trace
(
"BEFORE:
\n
"
);
SetLastError
(
0xdeadbeef
);
ret
=
GetWorldTransform
(
hdc
,
&
xform
);
if
(
!
ret
&&
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
...
...
@@ -610,7 +602,6 @@ static int CALLBACK savedc_emf_enum_proc(HDC hdc, HANDLETABLE *handle_table,
break
;
}
trace
(
"AFTER:
\n
"
);
SetLastError
(
0xdeadbeef
);
ret
=
GetWorldTransform
(
hdc
,
&
xform
);
if
(
!
ret
&&
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
...
...
@@ -3222,11 +3213,8 @@ static void test_GetWinMetaFileBits(void)
for
(
mode
=
MM_MIN
;
mode
<=
MM_MAX
;
mode
++
)
{
RECT
*
rc
;
trace
(
"mode %d
\n
"
,
mode
);
for
(
rc
=
frames
;
rc
->
right
-
rc
->
left
>
0
;
rc
++
)
{
trace
(
"frame %d,%d - %d,%d
\n
"
,
rc
->
left
,
rc
->
top
,
rc
->
right
,
rc
->
bottom
);
getwinmetafilebits
(
mode
,
1
,
rc
);
getwinmetafilebits
(
mode
,
2
,
rc
);
}
...
...
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