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"
31 #include "wine/wined3d.h"
35 #include "dxgi_private_interface.h"
37 extern CRITICAL_SECTION dxgi_cs
;
39 /* TRACE helper functions */
40 const char *debug_dxgi_format(DXGI_FORMAT format
);
43 extern const struct IWineDXGIFactoryVtbl dxgi_factory_vtbl
;
46 const struct IWineDXGIFactoryVtbl
*vtbl
;
50 IDXGIAdapter
**adapters
;
54 extern const struct IDXGIDeviceVtbl dxgi_device_vtbl
;
57 const struct IDXGIDeviceVtbl
*vtbl
;
58 IUnknown
*child_layer
;
60 IWineD3DDevice
*wined3d_device
;
61 IWineDXGIFactory
*factory
;
65 extern const struct IWineDXGIAdapterVtbl dxgi_adapter_vtbl
;
68 const struct IWineDXGIAdapterVtbl
*vtbl
;
75 extern const struct IDXGISwapChainVtbl dxgi_swapchain_vtbl
;
78 const struct IDXGISwapChainVtbl
*vtbl
;
83 enum dxgi_device_layer_id
85 DXGI_DEVICE_LAYER_DEBUG1
= 0x8,
86 DXGI_DEVICE_LAYER_THREAD_SAFE
= 0x10,
87 DXGI_DEVICE_LAYER_DEBUG2
= 0x20,
88 DXGI_DEVICE_LAYER_SWITCH_TO_REF
= 0x30,
89 DXGI_DEVICE_LAYER_D3D10_DEVICE
= 0xffffffff,
92 struct layer_get_size_args
98 IDXGIAdapter
*adapter
;
100 WORD interface_minor
;
102 WORD version_revision
;
105 struct dxgi_device_layer
107 enum dxgi_device_layer_id id
;
108 HRESULT (WINAPI
*init
)(enum dxgi_device_layer_id id
, DWORD
*count
, DWORD
*values
);
109 UINT (WINAPI
*get_size
)(enum dxgi_device_layer_id id
, struct layer_get_size_args
*args
, DWORD unknown0
);
110 HRESULT (WINAPI
*create
)(enum dxgi_device_layer_id id
, void **layer_base
, DWORD unknown0
,
111 void *device_object
, REFIID riid
, void **device_layer
);
114 #endif /* __WINE_DXGI_PRIVATE_H */