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
48029733
Commit
48029733
authored
May 16, 2008
by
Dan Kegel
Committed by
Alexandre Julliard
May 19, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9/tests: Add missing skip().
parent
e1b88983
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
visual.c
dlls/d3d9/tests/visual.c
+4
-4
No files found.
dlls/d3d9/tests/visual.c
View file @
48029733
...
@@ -9117,7 +9117,7 @@ START_TEST(visual)
...
@@ -9117,7 +9117,7 @@ START_TEST(visual)
hr
=
IDirect3DDevice9_Clear
(
device_ptr
,
0
,
NULL
,
D3DCLEAR_TARGET
,
0xffff0000
,
0
.
0
,
0
);
hr
=
IDirect3DDevice9_Clear
(
device_ptr
,
0
,
NULL
,
D3DCLEAR_TARGET
,
0xffff0000
,
0
.
0
,
0
);
if
(
FAILED
(
hr
))
if
(
FAILED
(
hr
))
{
{
trace
(
"Clear failed, can't assure correctness of the test results, skipping
\n
"
);
skip
(
"Clear failed, can't assure correctness of the test results, skipping
\n
"
);
goto
cleanup
;
goto
cleanup
;
}
}
IDirect3DDevice9_Present
(
device_ptr
,
NULL
,
NULL
,
NULL
,
NULL
);
IDirect3DDevice9_Present
(
device_ptr
,
NULL
,
NULL
,
NULL
,
NULL
);
...
@@ -9125,14 +9125,14 @@ START_TEST(visual)
...
@@ -9125,14 +9125,14 @@ START_TEST(visual)
color
=
getPixelColor
(
device_ptr
,
1
,
1
);
color
=
getPixelColor
(
device_ptr
,
1
,
1
);
if
(
color
!=
0x00ff0000
)
if
(
color
!=
0x00ff0000
)
{
{
trace
(
"Sanity check returned an incorrect color(%08x), can't assure the correctness of the tests, skipping
\n
"
,
color
);
skip
(
"Sanity check returned an incorrect color(%08x), can't assure the correctness of the tests, skipping
\n
"
,
color
);
goto
cleanup
;
goto
cleanup
;
}
}
hr
=
IDirect3DDevice9_Clear
(
device_ptr
,
0
,
NULL
,
D3DCLEAR_TARGET
,
0xff00ddee
,
0
.
0
,
0
);
hr
=
IDirect3DDevice9_Clear
(
device_ptr
,
0
,
NULL
,
D3DCLEAR_TARGET
,
0xff00ddee
,
0
.
0
,
0
);
if
(
FAILED
(
hr
))
if
(
FAILED
(
hr
))
{
{
trace
(
"Clear failed, can't assure correctness of the test results, skipping
\n
"
);
skip
(
"Clear failed, can't assure correctness of the test results, skipping
\n
"
);
goto
cleanup
;
goto
cleanup
;
}
}
IDirect3DDevice9_Present
(
device_ptr
,
NULL
,
NULL
,
NULL
,
NULL
);
IDirect3DDevice9_Present
(
device_ptr
,
NULL
,
NULL
,
NULL
,
NULL
);
...
@@ -9140,7 +9140,7 @@ START_TEST(visual)
...
@@ -9140,7 +9140,7 @@ START_TEST(visual)
color
=
getPixelColor
(
device_ptr
,
639
,
479
);
color
=
getPixelColor
(
device_ptr
,
639
,
479
);
if
(
color
!=
0x0000ddee
)
if
(
color
!=
0x0000ddee
)
{
{
trace
(
"Sanity check returned an incorrect color(%08x), can't assure the correctness of the tests, skipping
\n
"
,
color
);
skip
(
"Sanity check returned an incorrect color(%08x), can't assure the correctness of the tests, skipping
\n
"
,
color
);
goto
cleanup
;
goto
cleanup
;
}
}
...
...
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