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
c7899cb9
Commit
c7899cb9
authored
Oct 20, 2008
by
Henri Verbeet
Committed by
Alexandre Julliard
Oct 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10: Add a stub implementation of ID3D10Device.
parent
0271be18
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
0 deletions
+10
-0
Makefile.in
dlls/d3d10/Makefile.in
+1
-0
d3d10_private.h
dlls/d3d10/d3d10_private.h
+9
-0
device.c
dlls/d3d10/device.c
+0
-0
No files found.
dlls/d3d10/Makefile.in
View file @
c7899cb9
...
...
@@ -8,6 +8,7 @@ IMPORTS = dxguid uuid wined3d kernel32
C_SRCS
=
\
d3d10_main.c
\
device.c
\
utils.c
RC_SRCS
=
version.rc
...
...
dlls/d3d10/d3d10_private.h
View file @
c7899cb9
...
...
@@ -21,6 +21,7 @@
#include "wine/debug.h"
#define COBJMACROS
#include "winbase.h"
#include "winuser.h"
#include "objbase.h"
...
...
@@ -32,4 +33,12 @@ const char *debug_d3d10_driver_type(D3D10_DRIVER_TYPE driver_type);
const
char
*
debug_d3d10_primitive_topology
(
D3D10_PRIMITIVE_TOPOLOGY
topology
);
const
char
*
debug_dxgi_format
(
DXGI_FORMAT
format
);
/* IDirect3D10Device */
extern
const
struct
ID3D10DeviceVtbl
d3d10_device_vtbl
;
struct
d3d10_device
{
const
struct
ID3D10DeviceVtbl
*
vtbl
;
LONG
refcount
;
};
#endif
/* __WINE_D3D10_PRIVATE_H */
dlls/d3d10/device.c
0 → 100644
View file @
c7899cb9
This diff is collapsed.
Click to expand it.
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