push 43f03fe87c2254c6df67b2de3c08b5b20fd64327
[wine/hacks.git] / dlls / d3d10core / d3d10core_private.h
blobc48a72cd831b70a72a1c68c4c1d1490007b83dc7
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;
57 /* ID3D10Texture2D */
58 extern const struct ID3D10Texture2DVtbl d3d10_texture2d_vtbl;
59 struct d3d10_texture2d
61 const struct ID3D10Texture2DVtbl *vtbl;
62 LONG refcount;
64 IUnknown *dxgi_surface;
65 IWineD3DSurface *wined3d_surface;
66 D3D10_TEXTURE2D_DESC desc;
69 /* ID3D10Buffer */
70 extern const struct ID3D10BufferVtbl d3d10_buffer_vtbl;
71 struct d3d10_buffer
73 const struct ID3D10BufferVtbl *vtbl;
74 LONG refcount;
77 /* ID3D10RenderTargetView */
78 extern const struct ID3D10RenderTargetViewVtbl d3d10_rendertarget_view_vtbl;
79 struct d3d10_rendertarget_view
81 const struct ID3D10RenderTargetViewVtbl *vtbl;
82 LONG refcount;
84 ID3D10Resource *resource;
85 D3D10_RENDER_TARGET_VIEW_DESC desc;
88 /* Layered device */
89 enum dxgi_device_layer_id
91 DXGI_DEVICE_LAYER_DEBUG1 = 0x8,
92 DXGI_DEVICE_LAYER_THREAD_SAFE = 0x10,
93 DXGI_DEVICE_LAYER_DEBUG2 = 0x20,
94 DXGI_DEVICE_LAYER_SWITCH_TO_REF = 0x30,
95 DXGI_DEVICE_LAYER_D3D10_DEVICE = 0xffffffff,
98 struct layer_get_size_args
100 DWORD unknown0;
101 DWORD unknown1;
102 DWORD *unknown2;
103 DWORD *unknown3;
104 IDXGIAdapter *adapter;
105 WORD interface_major;
106 WORD interface_minor;
107 WORD version_build;
108 WORD version_revision;
111 struct dxgi_device_layer
113 enum dxgi_device_layer_id id;
114 HRESULT (WINAPI *init)(enum dxgi_device_layer_id id, DWORD *count, DWORD *values);
115 UINT (WINAPI *get_size)(enum dxgi_device_layer_id id, struct layer_get_size_args *args, DWORD unknown0);
116 HRESULT (WINAPI *create)(enum dxgi_device_layer_id id, void **layer_base, DWORD unknown0,
117 void *device_object, REFIID riid, void **device_layer);
120 HRESULT WINAPI DXGID3D10CreateDevice(HMODULE d3d10core, IDXGIFactory *factory, IDXGIAdapter *adapter,
121 UINT flags, DWORD unknown0, void **device);
122 HRESULT WINAPI DXGID3D10RegisterLayers(const struct dxgi_device_layer *layers, UINT layer_count);
124 #endif /* __WINE_D3D10CORE_PRIVATE_H */