d3d10core: Keep a reference to the wined3d device in the d3d10 device.
[wine/hacks.git] / dlls / d3d10core / d3d10core_private.h
blob263c22def02bcf3820777d9693ba878b5823b3c2
1 /*
2 * Copyright 2008 Henri Verbeet for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef __WINE_D3D10CORE_PRIVATE_H
20 #define __WINE_D3D10CORE_PRIVATE_H
22 #include "wine/debug.h"
24 #define COBJMACROS
25 #include "winbase.h"
26 #include "wingdi.h"
27 #include "winuser.h"
28 #include "objbase.h"
30 #include "d3d10.h"
31 #ifdef D3D10CORE_INIT_GUID
32 #include "initguid.h"
33 #endif
34 #include "wine/wined3d.h"
35 #include "wine/winedxgi.h"
37 /* TRACE helper functions */
38 const char *debug_d3d10_primitive_topology(D3D10_PRIMITIVE_TOPOLOGY topology);
39 const char *debug_dxgi_format(DXGI_FORMAT format);
41 DXGI_FORMAT dxgi_format_from_wined3dformat(WINED3DFORMAT format);
42 WINED3DFORMAT wined3dformat_from_dxgi_format(DXGI_FORMAT format);
44 /* IDirect3D10Device */
45 extern const struct ID3D10DeviceVtbl d3d10_device_vtbl;
46 extern const struct IUnknownVtbl d3d10_device_inner_unknown_vtbl;
47 extern const struct IWineD3DDeviceParentVtbl d3d10_wined3d_device_parent_vtbl;
48 struct d3d10_device
50 const struct ID3D10DeviceVtbl *vtbl;
51 const struct IUnknownVtbl *inner_unknown_vtbl;
52 const struct IWineD3DDeviceParentVtbl *device_parent_vtbl;
53 IUnknown *outer_unknown;
54 LONG refcount;
56 IWineD3DDevice *wined3d_device;
59 /* ID3D10Texture2D */
60 extern const struct ID3D10Texture2DVtbl d3d10_texture2d_vtbl;
61 struct d3d10_texture2d
63 const struct ID3D10Texture2DVtbl *vtbl;
64 LONG refcount;
66 IUnknown *dxgi_surface;
67 IWineD3DSurface *wined3d_surface;
68 D3D10_TEXTURE2D_DESC desc;
71 /* ID3D10Buffer */
72 extern const struct ID3D10BufferVtbl d3d10_buffer_vtbl;
73 struct d3d10_buffer
75 const struct ID3D10BufferVtbl *vtbl;
76 LONG refcount;
79 /* ID3D10RenderTargetView */
80 extern const struct ID3D10RenderTargetViewVtbl d3d10_rendertarget_view_vtbl;
81 struct d3d10_rendertarget_view
83 const struct ID3D10RenderTargetViewVtbl *vtbl;
84 LONG refcount;
86 ID3D10Resource *resource;
87 D3D10_RENDER_TARGET_VIEW_DESC desc;
90 /* Layered device */
91 enum dxgi_device_layer_id
93 DXGI_DEVICE_LAYER_DEBUG1 = 0x8,
94 DXGI_DEVICE_LAYER_THREAD_SAFE = 0x10,
95 DXGI_DEVICE_LAYER_DEBUG2 = 0x20,
96 DXGI_DEVICE_LAYER_SWITCH_TO_REF = 0x30,
97 DXGI_DEVICE_LAYER_D3D10_DEVICE = 0xffffffff,
100 struct layer_get_size_args
102 DWORD unknown0;
103 DWORD unknown1;
104 DWORD *unknown2;
105 DWORD *unknown3;
106 IDXGIAdapter *adapter;
107 WORD interface_major;
108 WORD interface_minor;
109 WORD version_build;
110 WORD version_revision;
113 struct dxgi_device_layer
115 enum dxgi_device_layer_id id;
116 HRESULT (WINAPI *init)(enum dxgi_device_layer_id id, DWORD *count, DWORD *values);
117 UINT (WINAPI *get_size)(enum dxgi_device_layer_id id, struct layer_get_size_args *args, DWORD unknown0);
118 HRESULT (WINAPI *create)(enum dxgi_device_layer_id id, void **layer_base, DWORD unknown0,
119 void *device_object, REFIID riid, void **device_layer);
122 HRESULT WINAPI DXGID3D10CreateDevice(HMODULE d3d10core, IDXGIFactory *factory, IDXGIAdapter *adapter,
123 UINT flags, DWORD unknown0, void **device);
124 HRESULT WINAPI DXGID3D10RegisterLayers(const struct dxgi_device_layer *layers, UINT layer_count);
126 #endif /* __WINE_D3D10CORE_PRIVATE_H */