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
c0a14564
Commit
c0a14564
authored
Sep 10, 2013
by
Stefan Dösinger
Committed by
Alexandre Julliard
Sep 10, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9/tests: Actually accept r500 results.
parent
ff14c24d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
visual.c
dlls/d3d9/tests/visual.c
+4
-3
No files found.
dlls/d3d9/tests/visual.c
View file @
c0a14564
...
...
@@ -12728,11 +12728,12 @@ static void fp_special_test(IDirect3DDevice9 *device)
ok
(
SUCCEEDED
(
hr
),
"EndScene failed, hr %#x.
\n
"
,
hr
);
color
=
getPixelColor
(
device
,
320
,
240
);
ok
(
color_match
(
color
,
vs_body
[
i
].
r600
,
1
)
ok
(
color_match
(
color
,
vs_body
[
i
].
r500
,
1
)
||
color_match
(
color
,
vs_body
[
i
].
r600
,
1
)
||
color_match
(
color
,
vs_body
[
i
].
nv40
,
1
)
||
color_match
(
color
,
vs_body
[
i
].
nv50
,
1
),
"Expected color 0x%08x, 0x%08x or 0x%08x for instruction
\"
%s
\"
, got 0x%08x.
\n
"
,
vs_body
[
i
].
r600
,
vs_body
[
i
].
nv40
,
vs_body
[
i
].
nv50
,
vs_body
[
i
].
name
,
color
);
"Expected color 0x%08x, 0x%08x
, 0x%08x
or 0x%08x for instruction
\"
%s
\"
, got 0x%08x.
\n
"
,
vs_body
[
i
].
r
500
,
vs_body
[
i
].
r
600
,
vs_body
[
i
].
nv40
,
vs_body
[
i
].
nv50
,
vs_body
[
i
].
name
,
color
);
hr
=
IDirect3DDevice9_Present
(
device
,
NULL
,
NULL
,
NULL
,
NULL
);
ok
(
SUCCEEDED
(
hr
),
"Present failed, hr %#x.
\n
"
,
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