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
2d13e0f1
Commit
2d13e0f1
authored
Aug 21, 2015
by
Józef Kucia
Committed by
Alexandre Julliard
Aug 21, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d11: Add ID3D11Device stub interface.
parent
fb01bc04
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
1 deletion
+3
-1
d3d10core_private.h
dlls/d3d10core/d3d10core_private.h
+2
-0
device.c
dlls/d3d10core/device.c
+0
-0
device.c
dlls/dxgi/tests/device.c
+1
-1
No files found.
dlls/d3d10core/d3d10core_private.h
View file @
2d13e0f1
...
...
@@ -30,6 +30,7 @@
#include "objbase.h"
#include "d3d10_1.h"
#include "d3d11_1.h"
#ifdef D3D10CORE_INIT_GUID
#include "initguid.h"
#endif
...
...
@@ -331,6 +332,7 @@ struct d3d10_query *unsafe_impl_from_ID3D10Query(ID3D10Query *iface) DECLSPEC_HI
struct
d3d10_device
{
IUnknown
IUnknown_inner
;
ID3D11Device
ID3D11Device_iface
;
ID3D10Device1
ID3D10Device1_iface
;
ID3D10Multithread
ID3D10Multithread_iface
;
IWineDXGIDeviceParent
IWineDXGIDeviceParent_iface
;
...
...
dlls/d3d10core/device.c
View file @
2d13e0f1
This diff is collapsed.
Click to expand it.
dlls/dxgi/tests/device.c
View file @
2d13e0f1
...
...
@@ -92,7 +92,7 @@ static void test_device_interfaces(void)
if
(
SUCCEEDED
(
hr
=
IDXGIDevice_QueryInterface
(
device
,
&
IID_ID3D11Device
,
(
void
**
)
&
iface
)))
IUnknown_Release
(
iface
);
todo_wine
ok
(
SUCCEEDED
(
hr
)
||
broken
(
hr
==
E_NOINTERFACE
)
/* Not available on all Windows versions. */
,
ok
(
SUCCEEDED
(
hr
)
||
broken
(
hr
==
E_NOINTERFACE
)
/* Not available on all Windows versions. */
,
"Failed to query ID3D11Device interface, hr %#x.
\n
"
,
hr
);
refcount
=
IDXGIDevice_Release
(
device
);
...
...
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