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
bdc29f83
Commit
bdc29f83
authored
Jun 21, 2010
by
Andrew Nguyen
Committed by
Alexandre Julliard
Jun 22, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw/tests: Add an observation regarding device color model criteria for IDirect3D3::FindDevice.
parent
eb922701
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
d3d.c
dlls/ddraw/tests/d3d.c
+11
-0
No files found.
dlls/ddraw/tests/d3d.c
View file @
bdc29f83
...
...
@@ -3487,6 +3487,17 @@ static void FindDevice(void)
"[%d] Expected IDirect3D1::FindDevice to return D3D_OK, got 0x%08x
\n
"
,
i
,
hr
);
}
}
/* Curiously the color model criteria seem to be ignored. */
search
.
dwSize
=
sizeof
(
search
);
search
.
dwFlags
=
D3DFDS_COLORMODEL
;
search
.
dcmColorModel
=
0xdeadbeef
;
result
.
dwSize
=
sizeof
(
result
);
hr
=
IDirect3D_FindDevice
(
Direct3D1
,
&
search
,
&
result
);
todo_wine
ok
(
hr
==
D3D_OK
,
"Expected IDirect3D1::FindDevice to return D3D_OK, got 0x%08x
\n
"
,
hr
);
}
START_TEST
(
d3d
)
...
...
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