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
c96092f8
Commit
c96092f8
authored
Nov 24, 2013
by
Stefan Dösinger
Committed by
Alexandre Julliard
Nov 25, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9/tests: Read the result before swapping in volume_v16u16_test.
parent
85730046
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
visual.c
dlls/d3d9/tests/visual.c
+3
-3
No files found.
dlls/d3d9/tests/visual.c
View file @
c96092f8
...
...
@@ -14759,9 +14759,6 @@ static void volume_v16u16_test(IDirect3DDevice9 *device)
hr
=
IDirect3DDevice9_EndScene
(
device
);
ok
(
SUCCEEDED
(
hr
),
"Failed to end scene, hr %#x.
\n
"
,
hr
);
hr
=
IDirect3DDevice9_Present
(
device
,
NULL
,
NULL
,
NULL
,
NULL
);
ok
(
SUCCEEDED
(
hr
),
"Failed to present, hr %#x.
\n
"
,
hr
);
color
=
getPixelColor
(
device
,
120
,
160
);
ok
(
color_match
(
color
,
0x000080ff
,
2
),
"Expected color 0x000080ff, got 0x%08x, V16U16 input -32768, 0.
\n
"
,
color
);
...
...
@@ -14775,6 +14772,9 @@ static void volume_v16u16_test(IDirect3DDevice9 *device)
ok
(
color_match
(
color
,
0x0040c0ff
,
2
),
"Expected color 0x0040c0ff, got 0x%08x, V16U16 input -16384, 16384.
\n
"
,
color
);
hr
=
IDirect3DDevice9_Present
(
device
,
NULL
,
NULL
,
NULL
,
NULL
);
ok
(
SUCCEEDED
(
hr
),
"Failed to present, hr %#x.
\n
"
,
hr
);
IDirect3DVolumeTexture9_Release
(
texture
);
}
...
...
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