wined3d: Return a texture from wined3d_swapchain_get_back_buffer.
[wine.git] / dlls / d3d9 / swapchain.c
blobb26a4826ddbc5d6448976a3f5d06f27053e81283
1 /*
2 * IDirect3DSwapChain9 implementation
4 * Copyright 2002-2003 Jason Edmeades
5 * Raphael Junqueira
6 * Copyright 2005 Oliver Stieber
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "config.h"
24 #include "d3d9_private.h"
26 WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
28 static inline struct d3d9_swapchain *impl_from_IDirect3DSwapChain9Ex(IDirect3DSwapChain9Ex *iface)
30 return CONTAINING_RECORD(iface, struct d3d9_swapchain, IDirect3DSwapChain9Ex_iface);
33 static HRESULT WINAPI d3d9_swapchain_QueryInterface(IDirect3DSwapChain9Ex *iface, REFIID riid, void **out)
35 TRACE("iface %p, riid %s, out %p.\n", iface, debugstr_guid(riid), out);
37 if (IsEqualGUID(riid, &IID_IDirect3DSwapChain9)
38 || IsEqualGUID(riid, &IID_IUnknown))
40 IDirect3DSwapChain9Ex_AddRef(iface);
41 *out = iface;
42 return S_OK;
45 if (IsEqualGUID(riid, &IID_IDirect3DSwapChain9Ex))
47 struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
48 struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(swapchain->parent_device);
50 /* Find out if the creating d3d9 interface was created with Direct3DCreate9Ex.
51 * It doesn't matter with which function the device was created. */
52 if (!device->d3d_parent->extended)
54 WARN("IDirect3D9 instance wasn't created with CreateDirect3D9Ex, returning E_NOINTERFACE.\n");
55 *out = NULL;
56 return E_NOINTERFACE;
59 IDirect3DSwapChain9Ex_AddRef(iface);
60 *out = iface;
61 return S_OK;
64 WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
66 *out = NULL;
67 return E_NOINTERFACE;
70 static ULONG WINAPI d3d9_swapchain_AddRef(IDirect3DSwapChain9Ex *iface)
72 struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
73 ULONG refcount = InterlockedIncrement(&swapchain->refcount);
75 TRACE("%p increasing refcount to %u.\n", iface, refcount);
77 if (refcount == 1)
79 if (swapchain->parent_device)
80 IDirect3DDevice9Ex_AddRef(swapchain->parent_device);
82 wined3d_mutex_lock();
83 wined3d_swapchain_incref(swapchain->wined3d_swapchain);
84 wined3d_mutex_unlock();
87 return refcount;
90 static ULONG WINAPI d3d9_swapchain_Release(IDirect3DSwapChain9Ex *iface)
92 struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
93 ULONG refcount = InterlockedDecrement(&swapchain->refcount);
95 TRACE("%p decreasing refcount to %u.\n", iface, refcount);
97 if (!refcount)
99 IDirect3DDevice9Ex *parent_device = swapchain->parent_device;
101 wined3d_mutex_lock();
102 wined3d_swapchain_decref(swapchain->wined3d_swapchain);
103 wined3d_mutex_unlock();
105 /* Release the device last, as it may cause the device to be destroyed. */
106 if (parent_device)
107 IDirect3DDevice9Ex_Release(parent_device);
110 return refcount;
113 static HRESULT WINAPI DECLSPEC_HOTPATCH d3d9_swapchain_Present(IDirect3DSwapChain9Ex *iface,
114 const RECT *src_rect, const RECT *dst_rect, HWND dst_window_override,
115 const RGNDATA *dirty_region, DWORD flags)
117 struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
118 struct d3d9_device *device = impl_from_IDirect3DDevice9Ex(swapchain->parent_device);
119 HRESULT hr;
121 TRACE("iface %p, src_rect %s, dst_rect %s, dst_window_override %p, dirty_region %p, flags %#x.\n",
122 iface, wine_dbgstr_rect(src_rect), wine_dbgstr_rect(dst_rect),
123 dst_window_override, dirty_region, flags);
125 if (device->device_state != D3D9_DEVICE_STATE_OK)
126 return device->d3d_parent->extended ? S_PRESENT_OCCLUDED : D3DERR_DEVICELOST;
128 wined3d_mutex_lock();
129 hr = wined3d_swapchain_present(swapchain->wined3d_swapchain, src_rect,
130 dst_rect, dst_window_override, dirty_region, flags);
131 wined3d_mutex_unlock();
133 return hr;
136 static HRESULT WINAPI d3d9_swapchain_GetFrontBufferData(IDirect3DSwapChain9Ex *iface, IDirect3DSurface9 *surface)
138 struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
139 struct d3d9_surface *dst = unsafe_impl_from_IDirect3DSurface9(surface);
140 HRESULT hr;
142 TRACE("iface %p, surface %p.\n", iface, surface);
144 wined3d_mutex_lock();
145 hr = wined3d_swapchain_get_front_buffer_data(swapchain->wined3d_swapchain, dst->wined3d_surface);
146 wined3d_mutex_unlock();
148 return hr;
151 static HRESULT WINAPI d3d9_swapchain_GetBackBuffer(IDirect3DSwapChain9Ex *iface,
152 UINT backbuffer_idx, D3DBACKBUFFER_TYPE backbuffer_type, IDirect3DSurface9 **backbuffer)
154 struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
155 struct wined3d_resource *wined3d_resource;
156 struct wined3d_texture *wined3d_texture;
157 struct d3d9_surface *surface_impl;
158 HRESULT hr = D3D_OK;
160 TRACE("iface %p, backbuffer_idx %u, backbuffer_type %#x, backbuffer %p.\n",
161 iface, backbuffer_idx, backbuffer_type, backbuffer);
163 if (!backbuffer)
165 WARN("The output pointer is NULL, returning D3DERR_INVALIDCALL.\n");
166 return D3DERR_INVALIDCALL;
169 wined3d_mutex_lock();
170 if ((wined3d_texture = wined3d_swapchain_get_back_buffer(swapchain->wined3d_swapchain,
171 backbuffer_idx, (enum wined3d_backbuffer_type)backbuffer_type)))
173 wined3d_resource = wined3d_texture_get_sub_resource(wined3d_texture, 0);
174 surface_impl = wined3d_resource_get_parent(wined3d_resource);
175 *backbuffer = &surface_impl->IDirect3DSurface9_iface;
176 IDirect3DSurface9_AddRef(*backbuffer);
178 else
180 /* Do not set *backbuffer = NULL, see tests/device.c, test_swapchain(). */
181 hr = D3DERR_INVALIDCALL;
183 wined3d_mutex_unlock();
185 return hr;
188 static HRESULT WINAPI d3d9_swapchain_GetRasterStatus(IDirect3DSwapChain9Ex *iface, D3DRASTER_STATUS *raster_status)
190 struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
191 HRESULT hr;
193 TRACE("iface %p, raster_status %p.\n", iface, raster_status);
195 wined3d_mutex_lock();
196 hr = wined3d_swapchain_get_raster_status(swapchain->wined3d_swapchain,
197 (struct wined3d_raster_status *)raster_status);
198 wined3d_mutex_unlock();
200 return hr;
203 static HRESULT WINAPI d3d9_swapchain_GetDisplayMode(IDirect3DSwapChain9Ex *iface, D3DDISPLAYMODE *mode)
205 struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
206 struct wined3d_display_mode wined3d_mode;
207 HRESULT hr;
209 TRACE("iface %p, mode %p.\n", iface, mode);
211 wined3d_mutex_lock();
212 hr = wined3d_swapchain_get_display_mode(swapchain->wined3d_swapchain, &wined3d_mode, NULL);
213 wined3d_mutex_unlock();
215 if (SUCCEEDED(hr))
217 mode->Width = wined3d_mode.width;
218 mode->Height = wined3d_mode.height;
219 mode->RefreshRate = wined3d_mode.refresh_rate;
220 mode->Format = d3dformat_from_wined3dformat(wined3d_mode.format_id);
223 return hr;
226 static HRESULT WINAPI d3d9_swapchain_GetDevice(IDirect3DSwapChain9Ex *iface, IDirect3DDevice9 **device)
228 struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
230 TRACE("iface %p, device %p.\n", iface, device);
232 *device = (IDirect3DDevice9 *)swapchain->parent_device;
233 IDirect3DDevice9_AddRef(*device);
235 TRACE("Returning device %p.\n", *device);
237 return D3D_OK;
240 static HRESULT WINAPI d3d9_swapchain_GetPresentParameters(IDirect3DSwapChain9Ex *iface,
241 D3DPRESENT_PARAMETERS *parameters)
243 struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
244 struct wined3d_swapchain_desc desc;
246 TRACE("iface %p, parameters %p.\n", iface, parameters);
248 wined3d_mutex_lock();
249 wined3d_swapchain_get_desc(swapchain->wined3d_swapchain, &desc);
250 wined3d_mutex_unlock();
251 present_parameters_from_wined3d_swapchain_desc(parameters, &desc);
253 return D3D_OK;
256 static HRESULT WINAPI d3d9_swapchain_GetLastPresentCount(IDirect3DSwapChain9Ex *iface,
257 UINT *last_present_count)
259 FIXME("iface %p, last_present_count %p, stub!\n", iface, last_present_count);
261 if (last_present_count)
262 *last_present_count = 0;
264 return D3D_OK;
267 static HRESULT WINAPI d3d9_swapchain_GetPresentStatistics(IDirect3DSwapChain9Ex *iface,
268 D3DPRESENTSTATS *present_stats)
270 FIXME("iface %p, present_stats %p, stub!\n", iface, present_stats);
272 if (present_stats)
273 memset(present_stats, 0, sizeof(*present_stats));
275 return D3D_OK;
278 static HRESULT WINAPI d3d9_swapchain_GetDisplayModeEx(IDirect3DSwapChain9Ex *iface,
279 D3DDISPLAYMODEEX *mode, D3DDISPLAYROTATION *rotation)
281 struct d3d9_swapchain *swapchain = impl_from_IDirect3DSwapChain9Ex(iface);
282 struct wined3d_display_mode wined3d_mode;
283 HRESULT hr;
285 TRACE("iface %p, mode %p, rotation %p.\n", iface, mode, rotation);
287 if (mode->Size != sizeof(*mode))
288 return D3DERR_INVALIDCALL;
290 wined3d_mutex_lock();
291 hr = wined3d_swapchain_get_display_mode(swapchain->wined3d_swapchain, &wined3d_mode,
292 (enum wined3d_display_rotation *)rotation);
293 wined3d_mutex_unlock();
295 if (SUCCEEDED(hr))
297 mode->Width = wined3d_mode.width;
298 mode->Height = wined3d_mode.height;
299 mode->RefreshRate = wined3d_mode.refresh_rate;
300 mode->Format = d3dformat_from_wined3dformat(wined3d_mode.format_id);
301 mode->ScanLineOrdering = wined3d_mode.scanline_ordering;
304 return hr;
307 static const struct IDirect3DSwapChain9ExVtbl d3d9_swapchain_vtbl =
309 /* IUnknown */
310 d3d9_swapchain_QueryInterface,
311 d3d9_swapchain_AddRef,
312 d3d9_swapchain_Release,
313 /* IDirect3DSwapChain9 */
314 d3d9_swapchain_Present,
315 d3d9_swapchain_GetFrontBufferData,
316 d3d9_swapchain_GetBackBuffer,
317 d3d9_swapchain_GetRasterStatus,
318 d3d9_swapchain_GetDisplayMode,
319 d3d9_swapchain_GetDevice,
320 d3d9_swapchain_GetPresentParameters,
321 /* IDirect3DSwapChain9Ex */
322 d3d9_swapchain_GetLastPresentCount,
323 d3d9_swapchain_GetPresentStatistics,
324 d3d9_swapchain_GetDisplayModeEx
327 static void STDMETHODCALLTYPE d3d9_swapchain_wined3d_object_released(void *parent)
329 HeapFree(GetProcessHeap(), 0, parent);
332 static const struct wined3d_parent_ops d3d9_swapchain_wined3d_parent_ops =
334 d3d9_swapchain_wined3d_object_released,
337 static HRESULT swapchain_init(struct d3d9_swapchain *swapchain, struct d3d9_device *device,
338 struct wined3d_swapchain_desc *desc)
340 HRESULT hr;
342 swapchain->refcount = 1;
343 swapchain->IDirect3DSwapChain9Ex_iface.lpVtbl = &d3d9_swapchain_vtbl;
345 wined3d_mutex_lock();
346 hr = wined3d_swapchain_create(device->wined3d_device, desc, swapchain,
347 &d3d9_swapchain_wined3d_parent_ops, &swapchain->wined3d_swapchain);
348 wined3d_mutex_unlock();
350 if (FAILED(hr))
352 WARN("Failed to create wined3d swapchain, hr %#x.\n", hr);
353 return hr;
356 swapchain->parent_device = &device->IDirect3DDevice9Ex_iface;
357 IDirect3DDevice9Ex_AddRef(swapchain->parent_device);
359 return D3D_OK;
362 HRESULT d3d9_swapchain_create(struct d3d9_device *device, struct wined3d_swapchain_desc *desc,
363 struct d3d9_swapchain **swapchain)
365 struct d3d9_swapchain *object;
366 HRESULT hr;
368 if (!(object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object))))
369 return E_OUTOFMEMORY;
371 if (FAILED(hr = swapchain_init(object, device, desc)))
373 WARN("Failed to initialize swapchain, hr %#x.\n", hr);
374 HeapFree(GetProcessHeap(), 0, object);
375 return hr;
378 TRACE("Created swapchain %p.\n", object);
379 *swapchain = object;
381 return D3D_OK;