Commit c7899cb9 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

d3d10: Add a stub implementation of ID3D10Device.

parent 0271be18
......@@ -8,6 +8,7 @@ IMPORTS = dxguid uuid wined3d kernel32
C_SRCS = \
d3d10_main.c \
device.c \
utils.c
RC_SRCS = version.rc
......
......@@ -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 */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment