wininet: Use return value of sprintf() instead of calling strlen() and simplify code.
[wine.git] / dlls / dxgi / dxgi_private.h
blob06892e2820c49fe5c1fa046a98ef22c8f2aed289
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_DXGI_PRIVATE_H
20 #define __WINE_DXGI_PRIVATE_H
22 #include "wine/debug.h"
24 #include <assert.h>
26 #define COBJMACROS
27 #include "winbase.h"
28 #include "wingdi.h"
29 #include "winuser.h"
30 #include "objbase.h"
31 #include "winnls.h"
33 #include "d3d10_1.h"
34 #ifdef DXGI_INIT_GUID
35 #include "initguid.h"
36 #endif
37 #include "wine/wined3d.h"
38 #include "wine/winedxgi.h"
40 enum dxgi_frame_latency
42 DXGI_FRAME_LATENCY_DEFAULT = 3,
43 DXGI_FRAME_LATENCY_MAX = 16,
46 /* Layered device */
47 enum dxgi_device_layer_id
49 DXGI_DEVICE_LAYER_DEBUG1 = 0x8,
50 DXGI_DEVICE_LAYER_THREAD_SAFE = 0x10,
51 DXGI_DEVICE_LAYER_DEBUG2 = 0x20,
52 DXGI_DEVICE_LAYER_SWITCH_TO_REF = 0x30,
53 DXGI_DEVICE_LAYER_D3D10_DEVICE = 0xffffffff,
56 struct layer_get_size_args
58 DWORD unknown0;
59 DWORD unknown1;
60 DWORD *unknown2;
61 DWORD *unknown3;
62 IDXGIAdapter *adapter;
63 WORD interface_major;
64 WORD interface_minor;
65 WORD version_build;
66 WORD version_revision;
69 struct dxgi_device_layer
71 enum dxgi_device_layer_id id;
72 HRESULT (WINAPI *init)(enum dxgi_device_layer_id id, DWORD *count, DWORD *values);
73 UINT (WINAPI *get_size)(enum dxgi_device_layer_id id, struct layer_get_size_args *args, DWORD unknown0);
74 HRESULT (WINAPI *create)(enum dxgi_device_layer_id id, void **layer_base, DWORD unknown0,
75 void *device_object, REFIID riid, void **device_layer);
76 void (WINAPI *set_feature_level)(enum dxgi_device_layer_id id, void *device,
77 D3D_FEATURE_LEVEL feature_level);
80 /* TRACE helper functions */
81 const char *debug_dxgi_format(DXGI_FORMAT format) DECLSPEC_HIDDEN;
82 const char *debug_dxgi_mode(const DXGI_MODE_DESC *desc) DECLSPEC_HIDDEN;
83 void dump_feature_levels(const D3D_FEATURE_LEVEL *feature_levels, unsigned int level_count) DECLSPEC_HIDDEN;
85 DXGI_FORMAT dxgi_format_from_wined3dformat(enum wined3d_format_id format) DECLSPEC_HIDDEN;
86 enum wined3d_format_id wined3dformat_from_dxgi_format(DXGI_FORMAT format) DECLSPEC_HIDDEN;
87 UINT dxgi_rational_to_uint(const DXGI_RATIONAL *rational) DECLSPEC_HIDDEN;
88 enum wined3d_scanline_ordering wined3d_scanline_ordering_from_dxgi(
89 DXGI_MODE_SCANLINE_ORDER scanline_order) DECLSPEC_HIDDEN;
90 void dxgi_sample_desc_from_wined3d(DXGI_SAMPLE_DESC *desc,
91 enum wined3d_multisample_type wined3d_type, unsigned int wined3d_quality) DECLSPEC_HIDDEN;
92 void wined3d_sample_desc_from_dxgi(enum wined3d_multisample_type *wined3d_type,
93 unsigned int *wined3d_quality, const DXGI_SAMPLE_DESC *dxgi_desc) DECLSPEC_HIDDEN;
94 void wined3d_display_mode_from_dxgi(struct wined3d_display_mode *wined3d_mode,
95 const DXGI_MODE_DESC *mode) DECLSPEC_HIDDEN;
96 unsigned int dxgi_swapchain_flags_from_wined3d(unsigned int wined3d_flags) DECLSPEC_HIDDEN;
97 unsigned int wined3d_swapchain_flags_from_dxgi(unsigned int flags) DECLSPEC_HIDDEN;
98 HRESULT dxgi_get_private_data(struct wined3d_private_store *store,
99 REFGUID guid, UINT *data_size, void *data) DECLSPEC_HIDDEN;
100 HRESULT dxgi_set_private_data(struct wined3d_private_store *store,
101 REFGUID guid, UINT data_size, const void *data) DECLSPEC_HIDDEN;
102 HRESULT dxgi_set_private_data_interface(struct wined3d_private_store *store,
103 REFGUID guid, const IUnknown *object) DECLSPEC_HIDDEN;
105 /* IDXGIFactory */
106 struct dxgi_factory
108 IDXGIFactory1 IDXGIFactory1_iface;
109 LONG refcount;
110 struct wined3d_private_store private_store;
111 struct wined3d *wined3d;
112 BOOL extended;
113 HWND device_window;
116 HRESULT dxgi_factory_create(REFIID riid, void **factory, BOOL extended) DECLSPEC_HIDDEN;
117 HWND dxgi_factory_get_device_window(struct dxgi_factory *factory) DECLSPEC_HIDDEN;
118 struct dxgi_factory *unsafe_impl_from_IDXGIFactory1(IDXGIFactory1 *iface) DECLSPEC_HIDDEN;
120 /* IDXGIDevice */
121 struct dxgi_device
123 IWineDXGIDevice IWineDXGIDevice_iface;
124 IUnknown *child_layer;
125 LONG refcount;
126 struct wined3d_private_store private_store;
127 struct wined3d_device *wined3d_device;
128 IDXGIAdapter1 *adapter;
131 HRESULT dxgi_device_init(struct dxgi_device *device, struct dxgi_device_layer *layer,
132 IDXGIFactory *factory, IDXGIAdapter *adapter,
133 const D3D_FEATURE_LEVEL *feature_levels, unsigned int level_count) DECLSPEC_HIDDEN;
135 /* IDXGIOutput */
136 struct dxgi_output
138 IDXGIOutput IDXGIOutput_iface;
139 LONG refcount;
140 struct wined3d_private_store private_store;
141 struct dxgi_adapter *adapter;
144 HRESULT dxgi_output_create(struct dxgi_adapter *adapter, struct dxgi_output **output) DECLSPEC_HIDDEN;
146 /* IDXGIAdapter */
147 struct dxgi_adapter
149 IDXGIAdapter1 IDXGIAdapter1_iface;
150 LONG refcount;
151 struct wined3d_private_store private_store;
152 UINT ordinal;
153 struct dxgi_factory *factory;
156 HRESULT dxgi_adapter_create(struct dxgi_factory *factory, UINT ordinal,
157 struct dxgi_adapter **adapter) DECLSPEC_HIDDEN;
158 struct dxgi_adapter *unsafe_impl_from_IDXGIAdapter1(IDXGIAdapter1 *iface) DECLSPEC_HIDDEN;
160 /* IDXGISwapChain */
161 struct dxgi_swapchain
163 IDXGISwapChain IDXGISwapChain_iface;
164 LONG refcount;
165 struct wined3d_private_store private_store;
166 struct wined3d_swapchain *wined3d_swapchain;
167 IWineDXGIDevice *device;
168 IDXGIFactory *factory;
170 BOOL fullscreen;
171 IDXGIOutput *target;
174 HRESULT dxgi_swapchain_init(struct dxgi_swapchain *swapchain, struct dxgi_device *device,
175 struct wined3d_swapchain_desc *desc, BOOL implicit) DECLSPEC_HIDDEN;
177 /* IDXGISurface */
178 struct dxgi_surface
180 IDXGISurface1 IDXGISurface1_iface;
181 IUnknown IUnknown_iface;
182 IUnknown *outer_unknown;
183 LONG refcount;
184 struct wined3d_private_store private_store;
185 IDXGIDevice *device;
186 struct wined3d_texture *wined3d_texture;
187 HDC dc;
190 HRESULT dxgi_surface_init(struct dxgi_surface *surface, IDXGIDevice *device,
191 IUnknown *outer, struct wined3d_texture *wined3d_texture) DECLSPEC_HIDDEN;
193 D3D_FEATURE_LEVEL dxgi_check_feature_level_support(struct dxgi_factory *factory, struct dxgi_adapter *adapter,
194 const D3D_FEATURE_LEVEL *feature_levels, unsigned int level_count) DECLSPEC_HIDDEN;
196 #endif /* __WINE_DXGI_PRIVATE_H */