mciqtz32: Add stubbed mciqtz32.dll (part of DirectShow).
[wine.git] / dlls / d3d10core / d3d10core_private.h
bloba05f773edf3dace3c8af4609618dcd92c26ff340
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;
78 IWineD3DBuffer *wined3d_buffer;
81 /* ID3D10RenderTargetView */
82 extern const struct ID3D10RenderTargetViewVtbl d3d10_rendertarget_view_vtbl;
83 struct d3d10_rendertarget_view
85 const struct ID3D10RenderTargetViewVtbl *vtbl;
86 LONG refcount;
88 IWineD3DRendertargetView *wined3d_view;
89 D3D10_RENDER_TARGET_VIEW_DESC desc;
92 /* Layered device */
93 enum dxgi_device_layer_id
95 DXGI_DEVICE_LAYER_DEBUG1 = 0x8,
96 DXGI_DEVICE_LAYER_THREAD_SAFE = 0x10,
97 DXGI_DEVICE_LAYER_DEBUG2 = 0x20,
98 DXGI_DEVICE_LAYER_SWITCH_TO_REF = 0x30,
99 DXGI_DEVICE_LAYER_D3D10_DEVICE = 0xffffffff,
102 struct layer_get_size_args
104 DWORD unknown0;
105 DWORD unknown1;
106 DWORD *unknown2;
107 DWORD *unknown3;
108 IDXGIAdapter *adapter;
109 WORD interface_major;
110 WORD interface_minor;
111 WORD version_build;
112 WORD version_revision;
115 struct dxgi_device_layer
117 enum dxgi_device_layer_id id;
118 HRESULT (WINAPI *init)(enum dxgi_device_layer_id id, DWORD *count, DWORD *values);
119 UINT (WINAPI *get_size)(enum dxgi_device_layer_id id, struct layer_get_size_args *args, DWORD unknown0);
120 HRESULT (WINAPI *create)(enum dxgi_device_layer_id id, void **layer_base, DWORD unknown0,
121 void *device_object, REFIID riid, void **device_layer);
124 HRESULT WINAPI DXGID3D10CreateDevice(HMODULE d3d10core, IDXGIFactory *factory, IDXGIAdapter *adapter,
125 UINT flags, DWORD unknown0, void **device);
126 HRESULT WINAPI DXGID3D10RegisterLayers(const struct dxgi_device_layer *layers, UINT layer_count);
128 #endif /* __WINE_D3D10CORE_PRIVATE_H */