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_DXGI_PRIVATE_H
20 #define __WINE_DXGI_PRIVATE_H
22 #include "wine/debug.h"
35 #include "wine/wined3d.h"
36 #include "wine/winedxgi.h"
38 extern CRITICAL_SECTION dxgi_cs DECLSPEC_HIDDEN;
41 enum dxgi_device_layer_id
43 DXGI_DEVICE_LAYER_DEBUG1 = 0x8,
44 DXGI_DEVICE_LAYER_THREAD_SAFE = 0x10,
45 DXGI_DEVICE_LAYER_DEBUG2 = 0x20,
46 DXGI_DEVICE_LAYER_SWITCH_TO_REF = 0x30,
47 DXGI_DEVICE_LAYER_D3D10_DEVICE = 0xffffffff,
50 struct layer_get_size_args
56 IDXGIAdapter *adapter;
60 WORD version_revision;
63 struct dxgi_device_layer
65 enum dxgi_device_layer_id id;
66 HRESULT (WINAPI *init)(enum dxgi_device_layer_id id, DWORD *count, DWORD *values);
67 UINT (WINAPI *get_size)(enum dxgi_device_layer_id id, struct layer_get_size_args *args, DWORD unknown0);
68 HRESULT (WINAPI *create)(enum dxgi_device_layer_id id, void **layer_base, DWORD unknown0,
69 void *device_object, REFIID riid, void **device_layer);
72 /* TRACE helper functions */
73 const char *debug_dxgi_format(DXGI_FORMAT format) DECLSPEC_HIDDEN;
75 WINED3DFORMAT wined3dformat_from_dxgi_format(DXGI_FORMAT format) DECLSPEC_HIDDEN;
80 const struct IWineDXGIFactoryVtbl *vtbl;
84 IDXGIAdapter **adapters;
87 HRESULT dxgi_factory_init(struct dxgi_factory *factory) DECLSPEC_HIDDEN;
92 const struct IWineDXGIDeviceVtbl *vtbl;
93 IUnknown *child_layer;
95 IWineD3DDevice *wined3d_device;
96 IWineDXGIFactory *factory;
99 HRESULT dxgi_device_init(struct dxgi_device *device, struct dxgi_device_layer *layer,
100 IDXGIFactory *factory, IDXGIAdapter *adapter) DECLSPEC_HIDDEN;
105 const struct IDXGIOutputVtbl *vtbl;
107 struct dxgi_adapter *adapter;
110 void dxgi_output_init(struct dxgi_output *output, struct dxgi_adapter *adapter) DECLSPEC_HIDDEN;
115 const struct IWineDXGIAdapterVtbl *vtbl;
116 IWineDXGIFactory *parent;
122 HRESULT dxgi_adapter_init(struct dxgi_adapter *adapter, IWineDXGIFactory *parent, UINT ordinal) DECLSPEC_HIDDEN;
125 struct dxgi_swapchain
127 const struct IDXGISwapChainVtbl *vtbl;
129 IWineD3DSwapChain *wined3d_swapchain;
132 HRESULT dxgi_swapchain_init(struct dxgi_swapchain *swapchain, struct dxgi_device *device,
133 WINED3DPRESENT_PARAMETERS *present_parameters) DECLSPEC_HIDDEN;
138 const struct IDXGISurfaceVtbl *vtbl;
139 const struct IUnknownVtbl *inner_unknown_vtbl;
140 IUnknown *outer_unknown;
145 HRESULT dxgi_surface_init(struct dxgi_surface *surface, IDXGIDevice *device, IUnknown *outer) DECLSPEC_HIDDEN;
147 #endif /* __WINE_DXGI_PRIVATE_H */