2005-06-23 13:05:24 +02:00
|
|
|
/*
|
2011-04-07 18:45:58 +02:00
|
|
|
* Copyright 2002-2003 Jason Edmeades
|
|
|
|
* Copyright 2002-2003 Raphael Junqueira
|
|
|
|
* Copyright 2005 Oliver Stieber
|
|
|
|
* Copyright 2007-2008 Stefan Dösinger for CodeWeavers
|
2011-04-13 19:14:31 +02:00
|
|
|
* Copyright 2011 Henri Verbeet for CodeWeavers
|
2005-06-23 13:05:24 +02:00
|
|
|
*
|
2011-04-07 18:45:58 +02:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2005-06-23 13:05:24 +02:00
|
|
|
*
|
2011-04-07 18:45:58 +02:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2005-06-23 13:05:24 +02:00
|
|
|
*
|
2011-04-07 18:45:58 +02:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-06-23 13:05:24 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2012-06-01 16:56:21 +02:00
|
|
|
#include "wine/port.h"
|
2005-06-23 13:05:24 +02:00
|
|
|
#include "wined3d_private.h"
|
|
|
|
|
2011-04-07 18:45:59 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d);
|
|
|
|
WINE_DECLARE_DEBUG_CHANNEL(fps);
|
2005-06-23 13:05:24 +02:00
|
|
|
|
2019-08-08 00:47:04 +02:00
|
|
|
void wined3d_swapchain_cleanup(struct wined3d_swapchain *swapchain)
|
2011-04-07 18:46:00 +02:00
|
|
|
{
|
2020-03-06 14:16:16 +01:00
|
|
|
struct wined3d_output *output;
|
|
|
|
HRESULT hr = E_FAIL;
|
2011-04-07 18:46:00 +02:00
|
|
|
UINT i;
|
|
|
|
|
2011-04-12 18:28:40 +02:00
|
|
|
TRACE("Destroying swapchain %p.\n", swapchain);
|
2011-04-07 18:46:00 +02:00
|
|
|
|
2019-07-01 23:40:35 +02:00
|
|
|
wined3d_unhook_swapchain(swapchain);
|
2011-04-13 19:14:31 +02:00
|
|
|
wined3d_swapchain_set_gamma_ramp(swapchain, 0, &swapchain->orig_gamma);
|
2011-04-07 18:46:00 +02:00
|
|
|
|
|
|
|
/* Release the swapchain's draw buffers. Make sure swapchain->back_buffers[0]
|
|
|
|
* is the last buffer to be destroyed, FindContext() depends on that. */
|
|
|
|
if (swapchain->front_buffer)
|
|
|
|
{
|
2014-08-20 13:20:02 +02:00
|
|
|
wined3d_texture_set_swapchain(swapchain->front_buffer, NULL);
|
|
|
|
if (wined3d_texture_decref(swapchain->front_buffer))
|
2011-04-07 18:46:00 +02:00
|
|
|
WARN("Something's still holding the front buffer (%p).\n", swapchain->front_buffer);
|
|
|
|
swapchain->front_buffer = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (swapchain->back_buffers)
|
|
|
|
{
|
2019-07-29 13:30:55 +02:00
|
|
|
i = swapchain->state.desc.backbuffer_count;
|
2011-04-07 18:46:00 +02:00
|
|
|
|
|
|
|
while (i--)
|
|
|
|
{
|
2014-08-20 13:20:03 +02:00
|
|
|
wined3d_texture_set_swapchain(swapchain->back_buffers[i], NULL);
|
|
|
|
if (wined3d_texture_decref(swapchain->back_buffers[i]))
|
2011-04-07 18:46:00 +02:00
|
|
|
WARN("Something's still holding back buffer %u (%p).\n", i, swapchain->back_buffers[i]);
|
|
|
|
}
|
2018-02-14 07:39:59 +01:00
|
|
|
heap_free(swapchain->back_buffers);
|
2011-04-07 18:46:00 +02:00
|
|
|
swapchain->back_buffers = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Restore the screen resolution if we rendered in fullscreen.
|
|
|
|
* This will restore the screen resolution to what it was before creating
|
|
|
|
* the swapchain. In case of d3d8 and d3d9 this will be the original
|
|
|
|
* desktop resolution. In case of d3d7 this will be a NOP because ddraw
|
|
|
|
* sets the resolution before starting up Direct3D, thus orig_width and
|
|
|
|
* orig_height will be equal to the modes in the presentation params. */
|
2019-07-29 13:30:55 +02:00
|
|
|
if (!swapchain->state.desc.windowed)
|
2011-04-07 18:46:00 +02:00
|
|
|
{
|
2019-07-29 13:30:55 +02:00
|
|
|
if (swapchain->state.desc.auto_restore_display_mode)
|
2019-07-29 13:30:52 +02:00
|
|
|
{
|
2020-03-06 14:16:16 +01:00
|
|
|
output = wined3d_swapchain_get_output(swapchain);
|
|
|
|
if (!output || FAILED(hr = wined3d_output_set_display_mode(output,
|
|
|
|
&swapchain->state.original_mode)))
|
2019-07-29 13:30:52 +02:00
|
|
|
ERR("Failed to restore display mode, hr %#x.\n", hr);
|
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
if (swapchain->state.desc.flags & WINED3D_SWAPCHAIN_RESTORE_WINDOW_RECT)
|
2019-07-29 13:30:52 +02:00
|
|
|
{
|
2019-07-31 22:29:45 +02:00
|
|
|
wined3d_swapchain_state_restore_from_fullscreen(&swapchain->state,
|
2019-07-31 22:29:49 +02:00
|
|
|
swapchain->state.device_window, &swapchain->state.original_window_rect);
|
2019-07-29 13:30:52 +02:00
|
|
|
wined3d_device_release_focus_window(swapchain->device);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2016-08-03 09:41:39 +02:00
|
|
|
{
|
2019-07-31 22:29:46 +02:00
|
|
|
wined3d_swapchain_state_restore_from_fullscreen(&swapchain->state, swapchain->state.device_window, NULL);
|
2016-08-03 09:41:39 +02:00
|
|
|
}
|
2011-04-07 18:46:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-13 10:31:39 +02:00
|
|
|
static void wined3d_swapchain_gl_destroy_object(void *object)
|
|
|
|
{
|
|
|
|
wined3d_swapchain_gl_destroy_contexts(object);
|
|
|
|
}
|
|
|
|
|
2019-08-13 10:31:37 +02:00
|
|
|
void wined3d_swapchain_gl_cleanup(struct wined3d_swapchain_gl *swapchain_gl)
|
|
|
|
{
|
2019-08-13 10:31:39 +02:00
|
|
|
struct wined3d_cs *cs = swapchain_gl->s.device->cs;
|
|
|
|
|
2019-08-13 10:31:37 +02:00
|
|
|
wined3d_swapchain_cleanup(&swapchain_gl->s);
|
2019-08-13 10:31:38 +02:00
|
|
|
|
2019-08-13 10:31:39 +02:00
|
|
|
wined3d_cs_destroy_object(cs, wined3d_swapchain_gl_destroy_object, swapchain_gl);
|
|
|
|
wined3d_cs_finish(cs, WINED3D_CS_QUEUE_DEFAULT);
|
|
|
|
|
2019-08-13 10:31:38 +02:00
|
|
|
if (swapchain_gl->backup_dc)
|
|
|
|
{
|
|
|
|
TRACE("Destroying backup wined3d window %p, dc %p.\n", swapchain_gl->backup_wnd, swapchain_gl->backup_dc);
|
|
|
|
|
|
|
|
wined3d_release_dc(swapchain_gl->backup_wnd, swapchain_gl->backup_dc);
|
|
|
|
DestroyWindow(swapchain_gl->backup_wnd);
|
|
|
|
}
|
2019-08-13 10:31:37 +02:00
|
|
|
}
|
|
|
|
|
2011-04-13 19:14:31 +02:00
|
|
|
ULONG CDECL wined3d_swapchain_incref(struct wined3d_swapchain *swapchain)
|
2011-04-07 18:45:59 +02:00
|
|
|
{
|
|
|
|
ULONG refcount = InterlockedIncrement(&swapchain->ref);
|
|
|
|
|
|
|
|
TRACE("%p increasing refcount to %u.\n", swapchain, refcount);
|
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
2011-04-13 19:14:31 +02:00
|
|
|
ULONG CDECL wined3d_swapchain_decref(struct wined3d_swapchain *swapchain)
|
2011-04-07 18:45:59 +02:00
|
|
|
{
|
|
|
|
ULONG refcount = InterlockedDecrement(&swapchain->ref);
|
|
|
|
|
|
|
|
TRACE("%p decreasing refcount to %u.\n", swapchain, refcount);
|
|
|
|
|
|
|
|
if (!refcount)
|
2011-04-12 18:28:40 +02:00
|
|
|
{
|
2019-04-12 14:50:47 +02:00
|
|
|
struct wined3d_device *device;
|
|
|
|
|
2018-11-29 14:33:45 +01:00
|
|
|
wined3d_mutex_lock();
|
2017-05-02 11:35:30 +02:00
|
|
|
|
2019-04-12 14:50:47 +02:00
|
|
|
device = swapchain->device;
|
|
|
|
if (device->swapchain_count && device->swapchains[0] == swapchain)
|
|
|
|
wined3d_device_uninit_3d(device);
|
|
|
|
wined3d_cs_finish(device->cs, WINED3D_CS_QUEUE_DEFAULT);
|
2017-05-02 11:35:30 +02:00
|
|
|
|
2011-04-12 18:28:40 +02:00
|
|
|
swapchain->parent_ops->wined3d_object_destroyed(swapchain->parent);
|
2019-08-08 00:47:04 +02:00
|
|
|
swapchain->device->adapter->adapter_ops->adapter_destroy_swapchain(swapchain);
|
2018-11-29 14:33:45 +01:00
|
|
|
|
|
|
|
wined3d_mutex_unlock();
|
2011-04-12 18:28:40 +02:00
|
|
|
}
|
2011-04-07 18:45:59 +02:00
|
|
|
|
|
|
|
return refcount;
|
|
|
|
}
|
|
|
|
|
2011-04-13 19:14:31 +02:00
|
|
|
void * CDECL wined3d_swapchain_get_parent(const struct wined3d_swapchain *swapchain)
|
2011-04-07 18:45:59 +02:00
|
|
|
{
|
2011-04-13 19:14:31 +02:00
|
|
|
TRACE("swapchain %p.\n", swapchain);
|
2011-04-07 18:45:59 +02:00
|
|
|
|
2011-04-13 19:14:31 +02:00
|
|
|
return swapchain->parent;
|
2011-04-07 18:45:59 +02:00
|
|
|
}
|
|
|
|
|
2012-10-02 22:15:39 +02:00
|
|
|
void CDECL wined3d_swapchain_set_window(struct wined3d_swapchain *swapchain, HWND window)
|
2011-04-12 18:28:41 +02:00
|
|
|
{
|
|
|
|
if (!window)
|
2019-07-31 22:29:46 +02:00
|
|
|
window = swapchain->state.device_window;
|
2011-04-12 18:28:41 +02:00
|
|
|
if (window == swapchain->win_handle)
|
2012-10-02 22:15:39 +02:00
|
|
|
return;
|
2011-04-12 18:28:41 +02:00
|
|
|
|
|
|
|
TRACE("Setting swapchain %p window from %p to %p.\n",
|
|
|
|
swapchain, swapchain->win_handle, window);
|
2018-06-11 12:05:06 +02:00
|
|
|
|
2018-11-29 14:33:47 +01:00
|
|
|
wined3d_cs_finish(swapchain->device->cs, WINED3D_CS_QUEUE_DEFAULT);
|
2018-06-11 12:05:06 +02:00
|
|
|
|
2011-04-12 18:28:41 +02:00
|
|
|
swapchain->win_handle = window;
|
|
|
|
}
|
|
|
|
|
2011-04-13 19:14:31 +02:00
|
|
|
HRESULT CDECL wined3d_swapchain_present(struct wined3d_swapchain *swapchain,
|
2018-03-22 08:48:31 +01:00
|
|
|
const RECT *src_rect, const RECT *dst_rect, HWND dst_window_override,
|
|
|
|
unsigned int swap_interval, DWORD flags)
|
2011-04-13 19:14:30 +02:00
|
|
|
{
|
2016-03-17 16:30:04 +01:00
|
|
|
RECT s, d;
|
|
|
|
|
2019-03-17 18:51:04 +01:00
|
|
|
TRACE("swapchain %p, src_rect %s, dst_rect %s, dst_window_override %p, swap_interval %u, flags %#x.\n",
|
2011-04-13 19:14:31 +02:00
|
|
|
swapchain, wine_dbgstr_rect(src_rect), wine_dbgstr_rect(dst_rect),
|
2019-03-17 18:51:04 +01:00
|
|
|
dst_window_override, swap_interval, flags);
|
2011-04-13 19:14:30 +02:00
|
|
|
|
2012-06-29 07:37:56 +02:00
|
|
|
if (flags)
|
|
|
|
FIXME("Ignoring flags %#x.\n", flags);
|
|
|
|
|
2018-12-03 14:41:05 +01:00
|
|
|
wined3d_mutex_lock();
|
|
|
|
|
2012-04-15 18:57:13 +02:00
|
|
|
if (!swapchain->back_buffers)
|
|
|
|
{
|
2018-03-22 08:48:31 +01:00
|
|
|
WARN("Swapchain doesn't have a backbuffer, returning WINED3DERR_INVALIDCALL.\n");
|
2018-12-03 14:41:05 +01:00
|
|
|
wined3d_mutex_unlock();
|
2012-04-15 18:57:13 +02:00
|
|
|
return WINED3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
2016-03-17 16:30:04 +01:00
|
|
|
if (!src_rect)
|
|
|
|
{
|
2019-07-29 13:30:55 +02:00
|
|
|
SetRect(&s, 0, 0, swapchain->state.desc.backbuffer_width,
|
|
|
|
swapchain->state.desc.backbuffer_height);
|
2016-03-17 16:30:04 +01:00
|
|
|
src_rect = &s;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dst_rect)
|
|
|
|
{
|
|
|
|
GetClientRect(swapchain->win_handle, &d);
|
|
|
|
dst_rect = &d;
|
|
|
|
}
|
|
|
|
|
2013-09-27 00:15:13 +02:00
|
|
|
wined3d_cs_emit_present(swapchain->device->cs, swapchain, src_rect,
|
2018-03-22 08:48:31 +01:00
|
|
|
dst_rect, dst_window_override, swap_interval, flags);
|
2012-04-15 18:57:13 +02:00
|
|
|
|
2018-12-03 14:41:05 +01:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2012-04-15 18:57:13 +02:00
|
|
|
return WINED3D_OK;
|
2011-04-13 19:14:30 +02:00
|
|
|
}
|
|
|
|
|
2011-04-13 19:14:31 +02:00
|
|
|
HRESULT CDECL wined3d_swapchain_get_front_buffer_data(const struct wined3d_swapchain *swapchain,
|
2015-10-16 13:59:17 +02:00
|
|
|
struct wined3d_texture *dst_texture, unsigned int sub_resource_idx)
|
2011-04-07 18:45:59 +02:00
|
|
|
{
|
2011-11-02 22:46:53 +01:00
|
|
|
RECT src_rect, dst_rect;
|
2011-04-07 18:45:59 +02:00
|
|
|
|
2015-10-16 13:59:17 +02:00
|
|
|
TRACE("swapchain %p, dst_texture %p, sub_resource_idx %u.\n", swapchain, dst_texture, sub_resource_idx);
|
2011-04-07 18:45:59 +02:00
|
|
|
|
2016-03-25 17:52:29 +01:00
|
|
|
SetRect(&src_rect, 0, 0, swapchain->front_buffer->resource.width, swapchain->front_buffer->resource.height);
|
2011-11-02 22:46:53 +01:00
|
|
|
dst_rect = src_rect;
|
2011-04-07 18:45:59 +02:00
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
if (swapchain->state.desc.windowed)
|
2011-11-02 22:46:53 +01:00
|
|
|
{
|
|
|
|
MapWindowPoints(swapchain->win_handle, NULL, (POINT *)&dst_rect, 2);
|
|
|
|
FIXME("Using destination rect %s in windowed mode, this is likely wrong.\n",
|
|
|
|
wine_dbgstr_rect(&dst_rect));
|
|
|
|
}
|
2011-04-07 18:45:59 +02:00
|
|
|
|
2016-03-25 17:52:29 +01:00
|
|
|
return wined3d_texture_blt(dst_texture, sub_resource_idx, &dst_rect,
|
|
|
|
swapchain->front_buffer, 0, &src_rect, 0, NULL, WINED3D_TEXF_POINT);
|
2011-04-07 18:45:59 +02:00
|
|
|
}
|
|
|
|
|
2015-09-03 12:52:52 +02:00
|
|
|
struct wined3d_texture * CDECL wined3d_swapchain_get_back_buffer(const struct wined3d_swapchain *swapchain,
|
2015-09-07 23:50:34 +02:00
|
|
|
UINT back_buffer_idx)
|
2011-04-07 18:45:59 +02:00
|
|
|
{
|
2015-09-07 23:50:34 +02:00
|
|
|
TRACE("swapchain %p, back_buffer_idx %u.\n",
|
|
|
|
swapchain, back_buffer_idx);
|
2011-04-07 18:45:59 +02:00
|
|
|
|
|
|
|
/* Return invalid if there is no backbuffer array, otherwise it will
|
|
|
|
* crash when ddraw is used (there swapchain->back_buffers is always
|
|
|
|
* NULL). We need this because this function is called from
|
|
|
|
* stateblock_init_default_state() to get the default scissorrect
|
|
|
|
* dimensions. */
|
2019-07-29 13:30:55 +02:00
|
|
|
if (!swapchain->back_buffers || back_buffer_idx >= swapchain->state.desc.backbuffer_count)
|
2011-04-07 18:45:59 +02:00
|
|
|
{
|
|
|
|
WARN("Invalid back buffer index.\n");
|
|
|
|
/* Native d3d9 doesn't set NULL here, just as wine's d3d9. But set it
|
|
|
|
* here in wined3d to avoid problems in other libs. */
|
2012-10-04 13:53:27 +02:00
|
|
|
return NULL;
|
2011-04-07 18:45:59 +02:00
|
|
|
}
|
|
|
|
|
2012-10-04 13:53:27 +02:00
|
|
|
TRACE("Returning back buffer %p.\n", swapchain->back_buffers[back_buffer_idx]);
|
2011-04-07 18:45:59 +02:00
|
|
|
|
2015-09-03 12:52:52 +02:00
|
|
|
return swapchain->back_buffers[back_buffer_idx];
|
2011-04-07 18:45:59 +02:00
|
|
|
}
|
|
|
|
|
2020-03-05 16:03:53 +01:00
|
|
|
static struct wined3d_output * get_output_from_window(const struct wined3d *wined3d, HWND hwnd)
|
|
|
|
{
|
|
|
|
unsigned int adapter_idx, output_idx;
|
|
|
|
struct wined3d_adapter *adapter;
|
|
|
|
MONITORINFOEXW monitor_info;
|
|
|
|
HMONITOR monitor;
|
|
|
|
|
|
|
|
TRACE("wined3d %p, hwnd %p.\n", wined3d, hwnd);
|
|
|
|
|
|
|
|
monitor = MonitorFromWindow(hwnd, MONITOR_DEFAULTTOPRIMARY);
|
|
|
|
monitor_info.cbSize = sizeof(monitor_info);
|
|
|
|
if (!GetMonitorInfoW(monitor, (MONITORINFO *)&monitor_info))
|
|
|
|
{
|
|
|
|
ERR("Failed to get monitor information.\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (adapter_idx = 0; adapter_idx < wined3d->adapter_count; ++adapter_idx)
|
|
|
|
{
|
|
|
|
adapter = wined3d->adapters[adapter_idx];
|
|
|
|
for (output_idx = 0; output_idx < adapter->output_count; ++output_idx)
|
|
|
|
{
|
|
|
|
if (!lstrcmpiW(adapter->outputs[output_idx].device_name, monitor_info.szDevice))
|
|
|
|
return &adapter->outputs[output_idx];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Because wined3d only supports one output right now. A window can be on non-primary outputs
|
|
|
|
* and thus fails to get its correct output. In this case, return the primary output for now */
|
|
|
|
return &wined3d->adapters[0]->outputs[0];
|
|
|
|
}
|
|
|
|
|
2020-03-05 16:04:29 +01:00
|
|
|
struct wined3d_output * wined3d_swapchain_get_output(const struct wined3d_swapchain *swapchain)
|
|
|
|
{
|
|
|
|
HWND hwnd;
|
|
|
|
|
|
|
|
TRACE("swapchain %p.\n", swapchain);
|
|
|
|
|
|
|
|
hwnd = swapchain->state.device_window;
|
|
|
|
if (!hwnd)
|
|
|
|
hwnd = swapchain->win_handle;
|
|
|
|
|
|
|
|
return get_output_from_window(swapchain->device->wined3d, hwnd);
|
|
|
|
}
|
|
|
|
|
2011-04-13 19:14:31 +02:00
|
|
|
HRESULT CDECL wined3d_swapchain_get_raster_status(const struct wined3d_swapchain *swapchain,
|
2011-12-02 08:15:53 +01:00
|
|
|
struct wined3d_raster_status *raster_status)
|
2011-04-07 18:45:59 +02:00
|
|
|
{
|
2020-03-09 08:40:21 +01:00
|
|
|
struct wined3d_output *output;
|
|
|
|
|
2012-07-18 21:32:30 +02:00
|
|
|
TRACE("swapchain %p, raster_status %p.\n", swapchain, raster_status);
|
2012-01-18 15:33:53 +01:00
|
|
|
|
2020-03-09 08:40:21 +01:00
|
|
|
output = wined3d_swapchain_get_output(swapchain);
|
|
|
|
if (!output)
|
|
|
|
{
|
|
|
|
ERR("Failed to get output from swapchain %p.\n", swapchain);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return wined3d_output_get_raster_status(output, raster_status);
|
2011-04-07 18:45:59 +02:00
|
|
|
}
|
|
|
|
|
2019-07-31 22:29:46 +02:00
|
|
|
struct wined3d_swapchain_state * CDECL wined3d_swapchain_get_state(struct wined3d_swapchain *swapchain)
|
|
|
|
{
|
|
|
|
return &swapchain->state;
|
|
|
|
}
|
|
|
|
|
2011-11-16 20:08:06 +01:00
|
|
|
HRESULT CDECL wined3d_swapchain_get_display_mode(const struct wined3d_swapchain *swapchain,
|
2012-06-27 19:02:29 +02:00
|
|
|
struct wined3d_display_mode *mode, enum wined3d_display_rotation *rotation)
|
2011-04-07 18:45:59 +02:00
|
|
|
{
|
2020-03-06 14:16:29 +01:00
|
|
|
struct wined3d_output *output;
|
2011-04-07 18:45:59 +02:00
|
|
|
HRESULT hr;
|
|
|
|
|
2012-06-27 19:02:29 +02:00
|
|
|
TRACE("swapchain %p, mode %p, rotation %p.\n", swapchain, mode, rotation);
|
2011-04-07 18:45:59 +02:00
|
|
|
|
2020-03-06 14:16:29 +01:00
|
|
|
if (!(output = wined3d_swapchain_get_output(swapchain)))
|
|
|
|
{
|
|
|
|
ERR("Failed to get output from swapchain %p.\n", swapchain);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = wined3d_output_get_display_mode(output, mode, rotation);
|
2011-04-07 18:45:59 +02:00
|
|
|
|
|
|
|
TRACE("Returning w %u, h %u, refresh rate %u, format %s.\n",
|
2011-11-16 20:08:06 +01:00
|
|
|
mode->width, mode->height, mode->refresh_rate, debug_d3dformat(mode->format_id));
|
2011-04-07 18:45:59 +02:00
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2011-05-16 23:01:23 +02:00
|
|
|
struct wined3d_device * CDECL wined3d_swapchain_get_device(const struct wined3d_swapchain *swapchain)
|
2011-04-07 18:45:59 +02:00
|
|
|
{
|
2011-04-13 19:14:31 +02:00
|
|
|
TRACE("swapchain %p.\n", swapchain);
|
2011-04-07 18:45:59 +02:00
|
|
|
|
2011-05-16 23:01:23 +02:00
|
|
|
return swapchain->device;
|
2011-04-07 18:45:59 +02:00
|
|
|
}
|
|
|
|
|
2012-10-04 13:53:28 +02:00
|
|
|
void CDECL wined3d_swapchain_get_desc(const struct wined3d_swapchain *swapchain,
|
2011-12-02 08:15:52 +01:00
|
|
|
struct wined3d_swapchain_desc *desc)
|
2011-04-07 18:45:59 +02:00
|
|
|
{
|
2011-12-02 08:15:52 +01:00
|
|
|
TRACE("swapchain %p, desc %p.\n", swapchain, desc);
|
2011-04-07 18:45:59 +02:00
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
*desc = swapchain->state.desc;
|
2011-04-07 18:45:59 +02:00
|
|
|
}
|
|
|
|
|
2011-04-13 19:14:31 +02:00
|
|
|
HRESULT CDECL wined3d_swapchain_set_gamma_ramp(const struct wined3d_swapchain *swapchain,
|
2011-11-21 18:48:41 +01:00
|
|
|
DWORD flags, const struct wined3d_gamma_ramp *ramp)
|
2011-04-07 18:45:59 +02:00
|
|
|
{
|
|
|
|
HDC dc;
|
|
|
|
|
2011-04-13 19:14:31 +02:00
|
|
|
TRACE("swapchain %p, flags %#x, ramp %p.\n", swapchain, flags, ramp);
|
2011-04-07 18:45:59 +02:00
|
|
|
|
|
|
|
if (flags)
|
|
|
|
FIXME("Ignoring flags %#x.\n", flags);
|
|
|
|
|
2019-07-31 22:29:46 +02:00
|
|
|
dc = GetDCEx(swapchain->state.device_window, 0, DCX_USESTYLE | DCX_CACHE);
|
2011-04-07 18:45:59 +02:00
|
|
|
SetDeviceGammaRamp(dc, (void *)ramp);
|
2019-07-31 22:29:46 +02:00
|
|
|
ReleaseDC(swapchain->state.device_window, dc);
|
2011-04-07 18:45:59 +02:00
|
|
|
|
|
|
|
return WINED3D_OK;
|
|
|
|
}
|
|
|
|
|
2014-06-28 10:49:32 +02:00
|
|
|
void CDECL wined3d_swapchain_set_palette(struct wined3d_swapchain *swapchain, struct wined3d_palette *palette)
|
|
|
|
{
|
|
|
|
TRACE("swapchain %p, palette %p.\n", swapchain, palette);
|
2019-01-12 12:23:17 +01:00
|
|
|
|
|
|
|
wined3d_cs_finish(swapchain->device->cs, WINED3D_CS_QUEUE_DEFAULT);
|
|
|
|
|
2014-06-28 10:49:32 +02:00
|
|
|
swapchain->palette = palette;
|
|
|
|
}
|
|
|
|
|
2011-04-13 19:14:31 +02:00
|
|
|
HRESULT CDECL wined3d_swapchain_get_gamma_ramp(const struct wined3d_swapchain *swapchain,
|
2011-11-21 18:48:41 +01:00
|
|
|
struct wined3d_gamma_ramp *ramp)
|
2011-04-07 18:45:59 +02:00
|
|
|
{
|
|
|
|
HDC dc;
|
|
|
|
|
2011-04-13 19:14:31 +02:00
|
|
|
TRACE("swapchain %p, ramp %p.\n", swapchain, ramp);
|
2011-04-07 18:45:59 +02:00
|
|
|
|
2019-07-31 22:29:46 +02:00
|
|
|
dc = GetDCEx(swapchain->state.device_window, 0, DCX_USESTYLE | DCX_CACHE);
|
2011-04-07 18:45:59 +02:00
|
|
|
GetDeviceGammaRamp(dc, ramp);
|
2019-07-31 22:29:46 +02:00
|
|
|
ReleaseDC(swapchain->state.device_window, dc);
|
2011-04-07 18:45:59 +02:00
|
|
|
|
|
|
|
return WINED3D_OK;
|
|
|
|
}
|
2005-06-23 13:05:24 +02:00
|
|
|
|
2009-12-06 17:39:47 +01:00
|
|
|
/* A GL context is provided by the caller */
|
2011-07-15 01:14:53 +02:00
|
|
|
static void swapchain_blit(const struct wined3d_swapchain *swapchain,
|
2011-04-13 19:14:32 +02:00
|
|
|
struct wined3d_context *context, const RECT *src_rect, const RECT *dst_rect)
|
2009-12-06 17:39:47 +01:00
|
|
|
{
|
2016-03-28 18:57:57 +02:00
|
|
|
struct wined3d_texture *texture = swapchain->back_buffers[0];
|
2017-03-30 23:15:32 +02:00
|
|
|
struct wined3d_device *device = swapchain->device;
|
2017-03-22 23:11:28 +01:00
|
|
|
enum wined3d_texture_filter_type filter;
|
2017-03-30 23:15:32 +02:00
|
|
|
DWORD location;
|
2009-12-06 17:39:47 +01:00
|
|
|
|
2010-01-03 21:18:25 +01:00
|
|
|
TRACE("swapchain %p, context %p, src_rect %s, dst_rect %s.\n",
|
2011-04-13 19:14:32 +02:00
|
|
|
swapchain, context, wine_dbgstr_rect(src_rect), wine_dbgstr_rect(dst_rect));
|
2010-01-03 21:18:25 +01:00
|
|
|
|
2017-03-30 23:15:32 +02:00
|
|
|
if ((src_rect->right - src_rect->left == dst_rect->right - dst_rect->left
|
|
|
|
&& src_rect->bottom - src_rect->top == dst_rect->bottom - dst_rect->top)
|
|
|
|
|| is_complex_fixup(texture->resource.format->color_fixup))
|
|
|
|
filter = WINED3D_TEXF_NONE;
|
2009-12-06 17:39:47 +01:00
|
|
|
else
|
2017-03-30 23:15:32 +02:00
|
|
|
filter = WINED3D_TEXF_LINEAR;
|
2009-12-06 17:39:47 +01:00
|
|
|
|
2017-03-30 23:15:32 +02:00
|
|
|
location = WINED3D_LOCATION_TEXTURE_RGB;
|
|
|
|
if (texture->resource.multisample_type)
|
|
|
|
location = WINED3D_LOCATION_RB_RESOLVED;
|
2009-12-06 17:39:47 +01:00
|
|
|
|
2017-03-30 23:15:32 +02:00
|
|
|
wined3d_texture_validate_location(texture, 0, WINED3D_LOCATION_DRAWABLE);
|
2018-03-13 11:23:01 +01:00
|
|
|
device->blitter->ops->blitter_blit(device->blitter, WINED3D_BLIT_OP_COLOR_BLIT, context, texture, 0,
|
|
|
|
location, src_rect, texture, 0, WINED3D_LOCATION_DRAWABLE, dst_rect, NULL, filter);
|
2017-03-30 23:15:32 +02:00
|
|
|
wined3d_texture_invalidate_location(texture, 0, WINED3D_LOCATION_DRAWABLE);
|
2009-12-06 17:39:47 +01:00
|
|
|
}
|
|
|
|
|
2019-03-17 18:51:04 +01:00
|
|
|
static void swapchain_gl_set_swap_interval(struct wined3d_swapchain *swapchain,
|
2019-08-02 01:02:09 +02:00
|
|
|
struct wined3d_context_gl *context_gl, unsigned int swap_interval)
|
2019-03-17 18:51:04 +01:00
|
|
|
{
|
2019-08-07 13:41:58 +02:00
|
|
|
const struct wined3d_gl_info *gl_info = context_gl->gl_info;
|
2019-03-17 18:51:04 +01:00
|
|
|
|
|
|
|
swap_interval = swap_interval <= 4 ? swap_interval : 1;
|
|
|
|
if (swapchain->swap_interval == swap_interval)
|
|
|
|
return;
|
|
|
|
|
|
|
|
swapchain->swap_interval = swap_interval;
|
|
|
|
|
|
|
|
if (!gl_info->supported[WGL_EXT_SWAP_CONTROL])
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!GL_EXTCALL(wglSwapIntervalEXT(swap_interval)))
|
|
|
|
{
|
|
|
|
ERR("Failed to set swap interval %u for context %p, last error %#x.\n",
|
2019-08-02 01:02:09 +02:00
|
|
|
swap_interval, context_gl, GetLastError());
|
2019-03-17 18:51:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-24 23:28:08 +01:00
|
|
|
/* Context activation is done by the caller. */
|
2018-10-29 08:17:11 +01:00
|
|
|
static void wined3d_swapchain_gl_rotate(struct wined3d_swapchain *swapchain, struct wined3d_context *context)
|
2016-02-24 23:28:08 +01:00
|
|
|
{
|
2016-03-28 18:58:01 +02:00
|
|
|
struct wined3d_texture_sub_resource *sub_resource;
|
2018-10-29 08:17:11 +01:00
|
|
|
struct wined3d_texture_gl *texture, *texture_prev;
|
2016-02-24 23:28:08 +01:00
|
|
|
struct gl_texture tex0;
|
|
|
|
GLuint rb0;
|
|
|
|
DWORD locations0;
|
|
|
|
unsigned int i;
|
|
|
|
static const DWORD supported_locations = WINED3D_LOCATION_TEXTURE_RGB | WINED3D_LOCATION_RB_MULTISAMPLE;
|
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
if (swapchain->state.desc.backbuffer_count < 2 || !swapchain->render_to_fbo)
|
2016-02-24 23:28:08 +01:00
|
|
|
return;
|
|
|
|
|
2018-10-29 08:17:11 +01:00
|
|
|
texture_prev = wined3d_texture_gl(swapchain->back_buffers[0]);
|
2016-02-24 23:28:08 +01:00
|
|
|
|
|
|
|
/* Back buffer 0 is already in the draw binding. */
|
2018-10-30 10:48:43 +01:00
|
|
|
tex0 = texture_prev->texture_rgb;
|
2016-04-18 19:06:26 +02:00
|
|
|
rb0 = texture_prev->rb_multisample;
|
2018-10-29 08:17:11 +01:00
|
|
|
locations0 = texture_prev->t.sub_resources[0].locations;
|
2016-02-24 23:28:08 +01:00
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
for (i = 1; i < swapchain->state.desc.backbuffer_count; ++i)
|
2016-02-24 23:28:08 +01:00
|
|
|
{
|
2018-10-29 08:17:11 +01:00
|
|
|
texture = wined3d_texture_gl(swapchain->back_buffers[i]);
|
|
|
|
sub_resource = &texture->t.sub_resources[0];
|
2016-02-24 23:28:08 +01:00
|
|
|
|
2016-03-28 18:58:01 +02:00
|
|
|
if (!(sub_resource->locations & supported_locations))
|
2018-10-29 08:17:11 +01:00
|
|
|
wined3d_texture_load_location(&texture->t, 0, context, texture->t.resource.draw_binding);
|
2016-02-24 23:28:08 +01:00
|
|
|
|
2018-10-30 10:48:43 +01:00
|
|
|
texture_prev->texture_rgb = texture->texture_rgb;
|
2016-04-18 19:06:26 +02:00
|
|
|
texture_prev->rb_multisample = texture->rb_multisample;
|
2016-02-24 23:28:08 +01:00
|
|
|
|
2018-10-29 08:17:11 +01:00
|
|
|
wined3d_texture_validate_location(&texture_prev->t, 0, sub_resource->locations & supported_locations);
|
|
|
|
wined3d_texture_invalidate_location(&texture_prev->t, 0, ~(sub_resource->locations & supported_locations));
|
2016-02-24 23:28:08 +01:00
|
|
|
|
2016-03-30 21:30:19 +02:00
|
|
|
texture_prev = texture;
|
2016-02-24 23:28:08 +01:00
|
|
|
}
|
|
|
|
|
2018-10-30 10:48:43 +01:00
|
|
|
texture_prev->texture_rgb = tex0;
|
2016-04-18 19:06:26 +02:00
|
|
|
texture_prev->rb_multisample = rb0;
|
2016-02-24 23:28:08 +01:00
|
|
|
|
2018-10-29 08:17:11 +01:00
|
|
|
wined3d_texture_validate_location(&texture_prev->t, 0, locations0 & supported_locations);
|
|
|
|
wined3d_texture_invalidate_location(&texture_prev->t, 0, ~(locations0 & supported_locations));
|
2016-02-24 23:28:08 +01:00
|
|
|
|
|
|
|
device_invalidate_state(swapchain->device, STATE_FRAMEBUFFER);
|
|
|
|
}
|
|
|
|
|
2016-03-17 16:30:03 +01:00
|
|
|
static void swapchain_gl_present(struct wined3d_swapchain *swapchain,
|
2019-03-17 18:51:04 +01:00
|
|
|
const RECT *src_rect, const RECT *dst_rect, unsigned int swap_interval, DWORD flags)
|
2010-11-18 20:50:40 +01:00
|
|
|
{
|
2019-08-13 10:31:39 +02:00
|
|
|
struct wined3d_swapchain_gl *swapchain_gl = wined3d_swapchain_gl(swapchain);
|
2019-07-29 13:30:55 +02:00
|
|
|
const struct wined3d_swapchain_desc *desc = &swapchain->state.desc;
|
2016-08-04 12:06:58 +02:00
|
|
|
struct wined3d_texture *back_buffer = swapchain->back_buffers[0];
|
2020-03-26 13:25:57 +01:00
|
|
|
const struct wined3d_fb_state *fb = &swapchain->device->cs->state.fb;
|
2018-03-14 09:09:14 +01:00
|
|
|
struct wined3d_rendertarget_view *dsv = fb->depth_stencil;
|
2019-06-25 02:08:36 +02:00
|
|
|
struct wined3d_texture *logo_texture, *cursor_texture;
|
2010-05-24 09:56:35 +02:00
|
|
|
const struct wined3d_gl_info *gl_info;
|
2019-06-03 15:40:22 +02:00
|
|
|
struct wined3d_context_gl *context_gl;
|
2009-10-28 11:00:11 +01:00
|
|
|
struct wined3d_context *context;
|
2010-01-03 21:18:26 +01:00
|
|
|
BOOL render_to_fbo;
|
2005-07-13 16:15:54 +02:00
|
|
|
|
2019-07-29 12:44:46 +02:00
|
|
|
context = context_acquire(swapchain->device, swapchain->front_buffer, 0);
|
2019-06-06 14:51:06 +02:00
|
|
|
context_gl = wined3d_context_gl(context);
|
|
|
|
if (!context_gl->valid)
|
2010-03-17 21:59:54 +01:00
|
|
|
{
|
|
|
|
context_release(context);
|
|
|
|
WARN("Invalid context, skipping present.\n");
|
2012-04-15 18:57:13 +02:00
|
|
|
return;
|
2010-03-17 21:59:54 +01:00
|
|
|
}
|
2007-03-17 23:00:39 +01:00
|
|
|
|
2019-08-07 13:41:58 +02:00
|
|
|
gl_info = context_gl->gl_info;
|
2010-05-24 09:56:35 +02:00
|
|
|
|
2019-08-02 01:02:09 +02:00
|
|
|
swapchain_gl_set_swap_interval(swapchain, context_gl, swap_interval);
|
2019-03-17 18:51:04 +01:00
|
|
|
|
2016-03-29 16:45:31 +02:00
|
|
|
if ((logo_texture = swapchain->device->logo_texture))
|
2013-11-18 10:46:16 +01:00
|
|
|
{
|
2016-03-29 16:45:31 +02:00
|
|
|
RECT rect = {0, 0, logo_texture->resource.width, logo_texture->resource.height};
|
2013-11-18 10:46:16 +01:00
|
|
|
|
|
|
|
/* Blit the logo into the upper left corner of the drawable. */
|
2016-08-04 12:06:58 +02:00
|
|
|
wined3d_texture_blt(back_buffer, 0, &rect, logo_texture, 0, &rect,
|
2017-03-26 20:56:03 +02:00
|
|
|
WINED3D_BLT_SRC_CKEY, NULL, WINED3D_TEXF_POINT);
|
2013-11-18 10:46:16 +01:00
|
|
|
}
|
|
|
|
|
2019-06-25 02:08:36 +02:00
|
|
|
if ((cursor_texture = swapchain->device->cursor_texture)
|
|
|
|
&& swapchain->device->bCursorVisible && !swapchain->device->hardwareCursor)
|
2009-12-09 20:32:08 +01:00
|
|
|
{
|
2016-03-29 16:45:31 +02:00
|
|
|
RECT dst_rect =
|
2009-12-09 20:32:08 +01:00
|
|
|
{
|
2011-04-13 19:14:30 +02:00
|
|
|
swapchain->device->xScreenSpace - swapchain->device->xHotSpot,
|
|
|
|
swapchain->device->yScreenSpace - swapchain->device->yHotSpot,
|
|
|
|
swapchain->device->xScreenSpace + swapchain->device->cursorWidth - swapchain->device->xHotSpot,
|
|
|
|
swapchain->device->yScreenSpace + swapchain->device->cursorHeight - swapchain->device->yHotSpot,
|
2009-12-09 20:32:08 +01:00
|
|
|
};
|
2015-12-10 21:02:35 +01:00
|
|
|
RECT src_rect =
|
|
|
|
{
|
2019-06-25 02:08:36 +02:00
|
|
|
0, 0, cursor_texture->resource.width, cursor_texture->resource.height
|
2015-12-10 21:02:35 +01:00
|
|
|
};
|
2016-08-04 12:06:58 +02:00
|
|
|
const RECT clip_rect = {0, 0, back_buffer->resource.width, back_buffer->resource.height};
|
2009-12-09 20:32:08 +01:00
|
|
|
|
2013-11-18 10:46:16 +01:00
|
|
|
TRACE("Rendering the software cursor.\n");
|
2011-11-02 22:46:54 +01:00
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
if (desc->windowed)
|
2016-03-29 16:45:31 +02:00
|
|
|
MapWindowPoints(NULL, swapchain->win_handle, (POINT *)&dst_rect, 2);
|
|
|
|
if (wined3d_clip_blit(&clip_rect, &dst_rect, &src_rect))
|
2019-06-25 02:08:36 +02:00
|
|
|
wined3d_texture_blt(back_buffer, 0, &dst_rect, cursor_texture, 0,
|
|
|
|
&src_rect, WINED3D_BLT_ALPHA_TEST, NULL, WINED3D_TEXF_POINT);
|
2007-09-01 21:22:32 +02:00
|
|
|
}
|
2006-07-23 00:03:33 +02:00
|
|
|
|
2019-06-03 15:40:22 +02:00
|
|
|
TRACE("Presenting DC %p.\n", context_gl->dc);
|
2005-07-13 16:15:54 +02:00
|
|
|
|
2016-03-17 16:30:04 +01:00
|
|
|
if (!(render_to_fbo = swapchain->render_to_fbo)
|
|
|
|
&& (src_rect->left || src_rect->top
|
2019-07-29 13:30:55 +02:00
|
|
|
|| src_rect->right != desc->backbuffer_width
|
|
|
|
|| src_rect->bottom != desc->backbuffer_height
|
2016-03-17 16:30:04 +01:00
|
|
|
|| dst_rect->left || dst_rect->top
|
2019-07-29 13:30:55 +02:00
|
|
|
|| dst_rect->right != desc->backbuffer_width
|
|
|
|
|| dst_rect->bottom != desc->backbuffer_height))
|
2010-01-03 21:18:26 +01:00
|
|
|
render_to_fbo = TRUE;
|
|
|
|
|
2009-11-24 12:31:39 +01:00
|
|
|
/* Rendering to a window of different size, presenting partial rectangles,
|
|
|
|
* or rendering to a different window needs help from FBO_blit or a textured
|
|
|
|
* draw. Render the swapchain to a FBO in the future.
|
|
|
|
*
|
|
|
|
* Note that FBO_blit from the backbuffer to the frontbuffer cannot solve
|
|
|
|
* all these issues - this fails if the window is smaller than the backbuffer.
|
|
|
|
*/
|
2011-04-13 19:14:30 +02:00
|
|
|
if (!swapchain->render_to_fbo && render_to_fbo && wined3d_settings.offscreen_rendering_mode == ORM_FBO)
|
2009-11-24 12:31:39 +01:00
|
|
|
{
|
2016-08-04 12:06:58 +02:00
|
|
|
wined3d_texture_load_location(back_buffer, 0, context, WINED3D_LOCATION_TEXTURE_RGB);
|
|
|
|
wined3d_texture_invalidate_location(back_buffer, 0, WINED3D_LOCATION_DRAWABLE);
|
2011-04-13 19:14:30 +02:00
|
|
|
swapchain->render_to_fbo = TRUE;
|
2011-08-23 20:08:08 +02:00
|
|
|
swapchain_update_draw_bindings(swapchain);
|
2009-11-24 12:31:39 +01:00
|
|
|
}
|
2012-03-26 20:28:10 +02:00
|
|
|
else
|
|
|
|
{
|
2016-08-04 12:06:58 +02:00
|
|
|
wined3d_texture_load_location(back_buffer, 0, context, back_buffer->resource.draw_binding);
|
2012-03-26 20:28:10 +02:00
|
|
|
}
|
2009-11-24 12:31:39 +01:00
|
|
|
|
2011-04-13 19:14:30 +02:00
|
|
|
if (swapchain->render_to_fbo)
|
2016-03-17 16:30:04 +01:00
|
|
|
swapchain_blit(swapchain, context, src_rect, dst_rect);
|
2009-12-06 17:39:47 +01:00
|
|
|
|
2019-08-13 10:31:39 +02:00
|
|
|
if (swapchain_gl->context_count > 1)
|
2012-07-24 11:32:27 +02:00
|
|
|
gl_info->gl_ops.gl.p_glFinish();
|
2012-12-06 14:10:04 +01:00
|
|
|
|
|
|
|
/* call wglSwapBuffers through the gl table to avoid confusing the Steam overlay */
|
2019-06-03 15:40:22 +02:00
|
|
|
gl_info->gl_ops.wgl.p_wglSwapBuffers(context_gl->dc);
|
2016-02-24 23:28:08 +01:00
|
|
|
|
2018-10-29 08:17:11 +01:00
|
|
|
wined3d_swapchain_gl_rotate(swapchain, context);
|
2005-07-13 16:15:54 +02:00
|
|
|
|
2007-08-08 03:09:38 +02:00
|
|
|
TRACE("SwapBuffers called, Starting new frame\n");
|
2005-06-23 13:05:24 +02:00
|
|
|
/* FPS support */
|
2006-07-05 18:35:21 +02:00
|
|
|
if (TRACE_ON(fps))
|
2005-06-23 13:05:24 +02:00
|
|
|
{
|
|
|
|
DWORD time = GetTickCount();
|
2011-04-13 19:14:30 +02:00
|
|
|
++swapchain->frames;
|
|
|
|
|
2005-06-23 13:05:24 +02:00
|
|
|
/* every 1.5 seconds */
|
2011-04-13 19:14:30 +02:00
|
|
|
if (time - swapchain->prev_time > 1500)
|
|
|
|
{
|
|
|
|
TRACE_(fps)("%p @ approx %.2ffps\n",
|
|
|
|
swapchain, 1000.0 * swapchain->frames / (time - swapchain->prev_time));
|
|
|
|
swapchain->prev_time = time;
|
|
|
|
swapchain->frames = 0;
|
2005-06-23 13:05:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-29 16:45:36 +02:00
|
|
|
wined3d_texture_validate_location(swapchain->front_buffer, 0, WINED3D_LOCATION_DRAWABLE);
|
2016-03-30 21:30:19 +02:00
|
|
|
wined3d_texture_invalidate_location(swapchain->front_buffer, 0, ~WINED3D_LOCATION_DRAWABLE);
|
2015-09-07 23:50:35 +02:00
|
|
|
/* If the swapeffect is DISCARD, the back buffer is undefined. That means the SYSMEM
|
|
|
|
* and INTEXTURE copies can keep their old content if they have any defined content.
|
|
|
|
* If the swapeffect is COPY, the content remains the same.
|
|
|
|
*
|
|
|
|
* The FLIP swap effect is not implemented yet. We could mark WINED3D_LOCATION_DRAWABLE
|
|
|
|
* up to date and hope WGL flipped front and back buffers and read this data into
|
|
|
|
* the FBO. Don't bother about this for now. */
|
2019-07-29 13:30:55 +02:00
|
|
|
if (desc->swap_effect == WINED3D_SWAP_EFFECT_DISCARD
|
|
|
|
|| desc->swap_effect == WINED3D_SWAP_EFFECT_FLIP_DISCARD)
|
|
|
|
wined3d_texture_validate_location(swapchain->back_buffers[desc->backbuffer_count - 1],
|
2016-05-17 14:01:56 +02:00
|
|
|
0, WINED3D_LOCATION_DISCARDED);
|
2006-06-04 16:42:57 +02:00
|
|
|
|
2018-03-14 09:09:14 +01:00
|
|
|
if (dsv && dsv->resource->type != WINED3D_RTYPE_BUFFER)
|
2009-12-09 20:32:08 +01:00
|
|
|
{
|
2018-03-14 09:09:14 +01:00
|
|
|
struct wined3d_texture *ds = texture_from_resource(dsv->resource);
|
2014-08-22 12:32:01 +02:00
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
if ((desc->flags & WINED3D_SWAPCHAIN_DISCARD_DEPTHSTENCIL
|
2018-03-14 09:09:14 +01:00
|
|
|
|| ds->flags & WINED3D_TEXTURE_DISCARD))
|
|
|
|
wined3d_texture_validate_location(ds, dsv->sub_resource_idx, WINED3D_LOCATION_DISCARDED);
|
2007-06-03 13:20:27 +02:00
|
|
|
}
|
|
|
|
|
2009-10-28 11:00:11 +01:00
|
|
|
context_release(context);
|
2005-06-23 13:05:24 +02:00
|
|
|
}
|
|
|
|
|
2019-08-08 00:47:04 +02:00
|
|
|
static void swapchain_frontbuffer_updated(struct wined3d_swapchain *swapchain)
|
2016-03-01 19:31:49 +01:00
|
|
|
{
|
2016-08-04 12:06:59 +02:00
|
|
|
struct wined3d_texture *front_buffer = swapchain->front_buffer;
|
2016-03-01 19:31:49 +01:00
|
|
|
struct wined3d_context *context;
|
|
|
|
|
2017-02-15 14:17:15 +01:00
|
|
|
context = context_acquire(swapchain->device, front_buffer, 0);
|
2016-08-04 12:06:59 +02:00
|
|
|
wined3d_texture_load_location(front_buffer, 0, context, front_buffer->resource.draw_binding);
|
2016-03-01 19:31:49 +01:00
|
|
|
context_release(context);
|
|
|
|
SetRectEmpty(&swapchain->front_buffer_update);
|
|
|
|
}
|
|
|
|
|
2011-04-13 19:14:30 +02:00
|
|
|
static const struct wined3d_swapchain_ops swapchain_gl_ops =
|
2005-06-23 13:05:24 +02:00
|
|
|
{
|
2011-04-13 19:14:30 +02:00
|
|
|
swapchain_gl_present,
|
2019-08-08 00:47:04 +02:00
|
|
|
swapchain_frontbuffer_updated,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void swapchain_vk_present(struct wined3d_swapchain *swapchain, const RECT *src_rect,
|
|
|
|
const RECT *dst_rect, unsigned int swap_interval, uint32_t flags)
|
|
|
|
{
|
|
|
|
FIXME("Not implemented.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wined3d_swapchain_ops swapchain_vk_ops =
|
|
|
|
{
|
|
|
|
swapchain_vk_present,
|
|
|
|
swapchain_frontbuffer_updated,
|
2005-06-23 13:05:24 +02:00
|
|
|
};
|
2007-06-02 22:21:57 +02:00
|
|
|
|
2016-03-01 19:31:49 +01:00
|
|
|
static void swapchain_gdi_frontbuffer_updated(struct wined3d_swapchain *swapchain)
|
2011-04-07 18:45:58 +02:00
|
|
|
{
|
2018-03-15 09:08:39 +01:00
|
|
|
struct wined3d_dc_info *front;
|
2011-04-07 18:45:58 +02:00
|
|
|
POINT offset = {0, 0};
|
|
|
|
HDC src_dc, dst_dc;
|
|
|
|
RECT draw_rect;
|
|
|
|
HWND window;
|
|
|
|
|
2016-03-01 19:31:49 +01:00
|
|
|
TRACE("swapchain %p.\n", swapchain);
|
2011-04-07 18:45:58 +02:00
|
|
|
|
2018-03-15 09:08:40 +01:00
|
|
|
front = &swapchain->front_buffer->dc_info[0];
|
2014-06-28 10:49:32 +02:00
|
|
|
if (swapchain->palette)
|
2016-04-14 19:32:46 +02:00
|
|
|
wined3d_palette_apply_to_dc(swapchain->palette, front->dc);
|
2014-06-28 10:49:32 +02:00
|
|
|
|
2018-03-14 09:09:14 +01:00
|
|
|
if (swapchain->front_buffer->resource.map_count)
|
2011-11-13 19:52:25 +01:00
|
|
|
ERR("Trying to blit a mapped surface.\n");
|
|
|
|
|
2011-04-07 18:45:58 +02:00
|
|
|
TRACE("Copying surface %p to screen.\n", front);
|
|
|
|
|
2016-04-14 19:32:46 +02:00
|
|
|
src_dc = front->dc;
|
2011-04-07 18:45:58 +02:00
|
|
|
window = swapchain->win_handle;
|
|
|
|
dst_dc = GetDCEx(window, 0, DCX_CLIPSIBLINGS | DCX_CACHE);
|
|
|
|
|
|
|
|
/* Front buffer coordinates are screen coordinates. Map them to the
|
|
|
|
* destination window if not fullscreened. */
|
2019-07-29 13:30:55 +02:00
|
|
|
if (swapchain->state.desc.windowed)
|
2011-04-07 18:45:58 +02:00
|
|
|
ClientToScreen(window, &offset);
|
|
|
|
|
|
|
|
TRACE("offset %s.\n", wine_dbgstr_point(&offset));
|
|
|
|
|
2016-06-29 09:58:26 +02:00
|
|
|
SetRect(&draw_rect, 0, 0, swapchain->front_buffer->resource.width,
|
|
|
|
swapchain->front_buffer->resource.height);
|
2016-03-01 19:31:49 +01:00
|
|
|
IntersectRect(&draw_rect, &draw_rect, &swapchain->front_buffer_update);
|
2011-04-07 18:45:58 +02:00
|
|
|
|
|
|
|
BitBlt(dst_dc, draw_rect.left - offset.x, draw_rect.top - offset.y,
|
|
|
|
draw_rect.right - draw_rect.left, draw_rect.bottom - draw_rect.top,
|
|
|
|
src_dc, draw_rect.left, draw_rect.top, SRCCOPY);
|
|
|
|
ReleaseDC(window, dst_dc);
|
2016-03-01 19:31:49 +01:00
|
|
|
|
|
|
|
SetRectEmpty(&swapchain->front_buffer_update);
|
2011-04-07 18:45:58 +02:00
|
|
|
}
|
|
|
|
|
2016-03-17 16:30:03 +01:00
|
|
|
static void swapchain_gdi_present(struct wined3d_swapchain *swapchain,
|
2019-03-17 18:51:04 +01:00
|
|
|
const RECT *src_rect, const RECT *dst_rect, unsigned int swap_interval, DWORD flags)
|
2011-04-07 18:45:58 +02:00
|
|
|
{
|
2018-03-15 09:08:39 +01:00
|
|
|
struct wined3d_dc_info *front, *back;
|
2016-04-14 19:32:46 +02:00
|
|
|
HBITMAP bitmap;
|
|
|
|
void *data;
|
|
|
|
HDC dc;
|
2011-04-07 18:45:58 +02:00
|
|
|
|
2018-03-15 09:08:40 +01:00
|
|
|
front = &swapchain->front_buffer->dc_info[0];
|
|
|
|
back = &swapchain->back_buffers[0]->dc_info[0];
|
2011-04-07 18:45:58 +02:00
|
|
|
|
|
|
|
/* Flip the surface data. */
|
2016-04-14 19:32:46 +02:00
|
|
|
dc = front->dc;
|
|
|
|
bitmap = front->bitmap;
|
2018-03-14 09:09:14 +01:00
|
|
|
data = swapchain->front_buffer->resource.heap_memory;
|
2011-04-07 18:45:58 +02:00
|
|
|
|
2016-04-14 19:32:46 +02:00
|
|
|
front->dc = back->dc;
|
|
|
|
front->bitmap = back->bitmap;
|
2018-03-14 09:09:14 +01:00
|
|
|
swapchain->front_buffer->resource.heap_memory = swapchain->back_buffers[0]->resource.heap_memory;
|
2011-04-07 18:45:58 +02:00
|
|
|
|
2016-04-14 19:32:46 +02:00
|
|
|
back->dc = dc;
|
|
|
|
back->bitmap = bitmap;
|
2018-03-14 09:09:14 +01:00
|
|
|
swapchain->back_buffers[0]->resource.heap_memory = data;
|
2011-04-07 18:45:58 +02:00
|
|
|
|
|
|
|
/* FPS support */
|
|
|
|
if (TRACE_ON(fps))
|
|
|
|
{
|
|
|
|
static LONG prev_time, frames;
|
|
|
|
DWORD time = GetTickCount();
|
|
|
|
|
|
|
|
++frames;
|
|
|
|
|
|
|
|
/* every 1.5 seconds */
|
|
|
|
if (time - prev_time > 1500)
|
|
|
|
{
|
|
|
|
TRACE_(fps)("@ approx %.2ffps\n", 1000.0 * frames / (time - prev_time));
|
|
|
|
prev_time = time;
|
|
|
|
frames = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-01 19:31:49 +01:00
|
|
|
SetRect(&swapchain->front_buffer_update, 0, 0,
|
|
|
|
swapchain->front_buffer->resource.width,
|
|
|
|
swapchain->front_buffer->resource.height);
|
|
|
|
swapchain_gdi_frontbuffer_updated(swapchain);
|
2011-04-07 18:45:58 +02:00
|
|
|
}
|
|
|
|
|
2019-08-08 00:47:04 +02:00
|
|
|
static const struct wined3d_swapchain_ops swapchain_no3d_ops =
|
2011-04-07 18:45:58 +02:00
|
|
|
{
|
2011-04-13 19:14:30 +02:00
|
|
|
swapchain_gdi_present,
|
2016-03-01 19:31:49 +01:00
|
|
|
swapchain_gdi_frontbuffer_updated,
|
2011-04-07 18:45:58 +02:00
|
|
|
};
|
|
|
|
|
2015-08-07 10:01:33 +02:00
|
|
|
static void swapchain_update_render_to_fbo(struct wined3d_swapchain *swapchain)
|
2011-08-22 21:02:47 +02:00
|
|
|
{
|
|
|
|
if (wined3d_settings.offscreen_rendering_mode != ORM_FBO)
|
|
|
|
return;
|
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
if (!swapchain->state.desc.backbuffer_count)
|
2011-08-22 21:02:47 +02:00
|
|
|
{
|
|
|
|
TRACE("Single buffered rendering.\n");
|
|
|
|
swapchain->render_to_fbo = FALSE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Rendering to FBO.\n");
|
|
|
|
swapchain->render_to_fbo = TRUE;
|
|
|
|
}
|
|
|
|
|
2016-03-15 16:55:08 +01:00
|
|
|
static void wined3d_swapchain_apply_sample_count_override(const struct wined3d_swapchain *swapchain,
|
|
|
|
enum wined3d_format_id format_id, enum wined3d_multisample_type *type, DWORD *quality)
|
|
|
|
{
|
2018-08-23 14:34:03 +02:00
|
|
|
const struct wined3d_adapter *adapter;
|
2016-03-15 16:55:08 +01:00
|
|
|
const struct wined3d_gl_info *gl_info;
|
|
|
|
const struct wined3d_format *format;
|
|
|
|
enum wined3d_multisample_type t;
|
|
|
|
|
|
|
|
if (wined3d_settings.sample_count == ~0u)
|
|
|
|
return;
|
|
|
|
|
2018-08-23 14:34:03 +02:00
|
|
|
adapter = swapchain->device->adapter;
|
|
|
|
gl_info = &adapter->gl_info;
|
2018-10-31 10:31:50 +01:00
|
|
|
if (!(format = wined3d_get_format(adapter, format_id, WINED3D_BIND_RENDER_TARGET)))
|
2016-03-15 16:55:08 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
if ((t = min(wined3d_settings.sample_count, gl_info->limits.samples)))
|
|
|
|
while (!(format->multisample_types & 1u << (t - 1)))
|
|
|
|
++t;
|
|
|
|
TRACE("Using sample count %u.\n", t);
|
|
|
|
*type = t;
|
|
|
|
*quality = 0;
|
|
|
|
}
|
|
|
|
|
2018-04-30 20:15:01 +02:00
|
|
|
void swapchain_set_max_frame_latency(struct wined3d_swapchain *swapchain, const struct wined3d_device *device)
|
|
|
|
{
|
|
|
|
/* Subtract 1 for the implicit OpenGL latency. */
|
|
|
|
swapchain->max_frame_latency = device->max_frame_latency >= 2 ? device->max_frame_latency - 1 : 1;
|
|
|
|
}
|
|
|
|
|
2019-07-31 22:29:49 +02:00
|
|
|
static enum wined3d_format_id adapter_format_from_backbuffer_format(const struct wined3d_adapter *adapter,
|
2019-03-14 16:30:12 +01:00
|
|
|
enum wined3d_format_id format_id)
|
|
|
|
{
|
|
|
|
const struct wined3d_format *backbuffer_format;
|
|
|
|
|
|
|
|
backbuffer_format = wined3d_get_format(adapter, format_id, WINED3D_BIND_RENDER_TARGET);
|
|
|
|
return pixelformat_for_depth(backbuffer_format->byte_count * CHAR_BIT);
|
|
|
|
}
|
|
|
|
|
2019-07-31 22:29:49 +02:00
|
|
|
static HRESULT wined3d_swapchain_state_init(struct wined3d_swapchain_state *state,
|
2020-03-06 14:16:29 +01:00
|
|
|
const struct wined3d_swapchain_desc *desc, HWND window, struct wined3d *wined3d)
|
2019-07-31 22:29:49 +02:00
|
|
|
{
|
2020-03-05 16:03:53 +01:00
|
|
|
struct wined3d_output *output;
|
2019-07-31 22:29:49 +02:00
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
state->desc = *desc;
|
|
|
|
|
2020-03-05 16:03:53 +01:00
|
|
|
if (!(output = get_output_from_window(wined3d, window)))
|
|
|
|
{
|
|
|
|
WARN("Failed to get output from window %p.\n", window);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
2020-03-06 14:16:29 +01:00
|
|
|
if (FAILED(hr = wined3d_output_get_display_mode(output, &state->original_mode, NULL)))
|
2019-07-31 22:29:49 +02:00
|
|
|
{
|
|
|
|
ERR("Failed to get current display mode, hr %#x.\n", hr);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!desc->windowed)
|
|
|
|
{
|
|
|
|
if (desc->flags & WINED3D_SWAPCHAIN_ALLOW_MODE_SWITCH)
|
|
|
|
{
|
|
|
|
state->d3d_mode.width = desc->backbuffer_width;
|
|
|
|
state->d3d_mode.height = desc->backbuffer_height;
|
2020-03-05 16:03:53 +01:00
|
|
|
state->d3d_mode.format_id = adapter_format_from_backbuffer_format(output->adapter,
|
|
|
|
desc->backbuffer_format);
|
2019-07-31 22:29:49 +02:00
|
|
|
state->d3d_mode.refresh_rate = desc->refresh_rate;
|
|
|
|
state->d3d_mode.scanline_ordering = WINED3D_SCANLINE_ORDERING_UNKNOWN;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
state->d3d_mode = state->original_mode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GetWindowRect(window, &state->original_window_rect);
|
|
|
|
state->device_window = window;
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2019-08-08 00:47:04 +02:00
|
|
|
static HRESULT wined3d_swapchain_init(struct wined3d_swapchain *swapchain, struct wined3d_device *device,
|
|
|
|
struct wined3d_swapchain_desc *desc, void *parent, const struct wined3d_parent_ops *parent_ops,
|
|
|
|
const struct wined3d_swapchain_ops *swapchain_ops)
|
2009-12-10 21:41:54 +01:00
|
|
|
{
|
2015-09-03 20:56:26 +02:00
|
|
|
struct wined3d_resource_desc texture_desc;
|
2020-03-06 14:16:16 +01:00
|
|
|
struct wined3d_output *output;
|
2009-12-10 21:41:54 +01:00
|
|
|
BOOL displaymode_set = FALSE;
|
2017-02-09 05:51:56 +01:00
|
|
|
DWORD texture_flags = 0;
|
2009-12-10 21:41:54 +01:00
|
|
|
RECT client_rect;
|
2018-03-23 13:44:35 +01:00
|
|
|
unsigned int i;
|
2009-12-10 21:41:54 +01:00
|
|
|
HWND window;
|
|
|
|
HRESULT hr;
|
|
|
|
|
2019-08-08 00:47:04 +02:00
|
|
|
wined3d_mutex_lock();
|
|
|
|
|
2011-12-02 08:15:52 +01:00
|
|
|
if (desc->backbuffer_count > 1)
|
2009-12-10 21:41:54 +01:00
|
|
|
{
|
|
|
|
FIXME("The application requested more than one back buffer, this is not properly supported.\n"
|
|
|
|
"Please configure the application to use double buffering (1 back buffer) if possible.\n");
|
|
|
|
}
|
|
|
|
|
2018-02-15 07:05:15 +01:00
|
|
|
if (desc->swap_effect != WINED3D_SWAP_EFFECT_DISCARD
|
|
|
|
&& desc->swap_effect != WINED3D_SWAP_EFFECT_SEQUENTIAL
|
|
|
|
&& desc->swap_effect != WINED3D_SWAP_EFFECT_COPY)
|
|
|
|
FIXME("Unimplemented swap effect %#x.\n", desc->swap_effect);
|
|
|
|
|
2011-12-02 08:15:52 +01:00
|
|
|
window = desc->device_window ? desc->device_window : device->create_parms.focus_window;
|
2020-03-06 14:16:29 +01:00
|
|
|
if (FAILED(hr = wined3d_swapchain_state_init(&swapchain->state, desc, window, device->wined3d)))
|
2019-07-31 22:29:49 +02:00
|
|
|
return hr;
|
2009-12-10 21:41:54 +01:00
|
|
|
|
2019-08-08 00:47:04 +02:00
|
|
|
swapchain->swapchain_ops = swapchain_ops;
|
2009-12-10 21:41:54 +01:00
|
|
|
swapchain->device = device;
|
|
|
|
swapchain->parent = parent;
|
2011-04-07 18:46:01 +02:00
|
|
|
swapchain->parent_ops = parent_ops;
|
2009-12-10 21:41:54 +01:00
|
|
|
swapchain->ref = 1;
|
|
|
|
swapchain->win_handle = window;
|
2018-03-23 13:44:35 +01:00
|
|
|
swapchain->swap_interval = WINED3D_SWAP_INTERVAL_DEFAULT;
|
2018-04-30 20:15:01 +02:00
|
|
|
swapchain_set_max_frame_latency(swapchain, device);
|
2009-12-10 21:41:54 +01:00
|
|
|
|
|
|
|
GetClientRect(window, &client_rect);
|
2016-08-03 09:41:38 +02:00
|
|
|
if (desc->windowed)
|
2009-12-10 21:41:54 +01:00
|
|
|
{
|
2018-05-17 15:46:54 +02:00
|
|
|
TRACE("Client rect %s.\n", wine_dbgstr_rect(&client_rect));
|
|
|
|
|
2011-12-02 08:15:52 +01:00
|
|
|
if (!desc->backbuffer_width)
|
2009-12-10 21:41:54 +01:00
|
|
|
{
|
2018-05-17 15:46:54 +02:00
|
|
|
desc->backbuffer_width = client_rect.right ? client_rect.right : 8;
|
2011-12-02 08:15:52 +01:00
|
|
|
TRACE("Updating width to %u.\n", desc->backbuffer_width);
|
2009-12-10 21:41:54 +01:00
|
|
|
}
|
2011-12-02 08:15:52 +01:00
|
|
|
if (!desc->backbuffer_height)
|
2009-12-10 21:41:54 +01:00
|
|
|
{
|
2018-05-17 15:46:54 +02:00
|
|
|
desc->backbuffer_height = client_rect.bottom ? client_rect.bottom : 8;
|
2011-12-02 08:15:52 +01:00
|
|
|
TRACE("Updating height to %u.\n", desc->backbuffer_height);
|
2009-12-10 21:41:54 +01:00
|
|
|
}
|
|
|
|
|
2011-12-02 08:15:52 +01:00
|
|
|
if (desc->backbuffer_format == WINED3DFMT_UNKNOWN)
|
2009-12-10 21:41:54 +01:00
|
|
|
{
|
2019-07-31 22:29:49 +02:00
|
|
|
desc->backbuffer_format = swapchain->state.original_mode.format_id;
|
|
|
|
TRACE("Updating format to %s.\n", debug_d3dformat(swapchain->state.original_mode.format_id));
|
2009-12-10 21:41:54 +01:00
|
|
|
}
|
|
|
|
}
|
2019-07-29 13:30:52 +02:00
|
|
|
else
|
|
|
|
{
|
2019-07-29 13:30:54 +02:00
|
|
|
wined3d_swapchain_state_setup_fullscreen(&swapchain->state,
|
|
|
|
window, desc->backbuffer_width, desc->backbuffer_height);
|
2019-07-29 13:30:52 +02:00
|
|
|
}
|
2019-07-29 13:30:55 +02:00
|
|
|
swapchain->state.desc = *desc;
|
|
|
|
wined3d_swapchain_apply_sample_count_override(swapchain, swapchain->state.desc.backbuffer_format,
|
|
|
|
&swapchain->state.desc.multisample_type, &swapchain->state.desc.multisample_quality);
|
2011-08-22 21:02:47 +02:00
|
|
|
swapchain_update_render_to_fbo(swapchain);
|
2009-12-10 21:41:54 +01:00
|
|
|
|
|
|
|
TRACE("Creating front buffer.\n");
|
2013-06-04 09:57:08 +02:00
|
|
|
|
2016-01-27 00:06:23 +01:00
|
|
|
texture_desc.resource_type = WINED3D_RTYPE_TEXTURE_2D;
|
2019-07-29 13:30:55 +02:00
|
|
|
texture_desc.format = swapchain->state.desc.backbuffer_format;
|
|
|
|
texture_desc.multisample_type = swapchain->state.desc.multisample_type;
|
|
|
|
texture_desc.multisample_quality = swapchain->state.desc.multisample_quality;
|
2015-09-03 20:56:26 +02:00
|
|
|
texture_desc.usage = 0;
|
2018-09-27 17:30:33 +02:00
|
|
|
if (device->wined3d->flags & WINED3D_NO3D)
|
|
|
|
texture_desc.usage |= WINED3DUSAGE_OWNDC;
|
2018-10-31 10:31:47 +01:00
|
|
|
texture_desc.bind_flags = 0;
|
2018-02-02 17:58:54 +01:00
|
|
|
texture_desc.access = WINED3D_RESOURCE_ACCESS_GPU;
|
2019-07-29 13:30:55 +02:00
|
|
|
if (swapchain->state.desc.flags & WINED3D_SWAPCHAIN_LOCKABLE_BACKBUFFER)
|
2018-11-08 18:59:02 +01:00
|
|
|
texture_desc.access |= WINED3D_RESOURCE_ACCESS_MAP_R | WINED3D_RESOURCE_ACCESS_MAP_W;
|
2019-07-29 13:30:55 +02:00
|
|
|
texture_desc.width = swapchain->state.desc.backbuffer_width;
|
|
|
|
texture_desc.height = swapchain->state.desc.backbuffer_height;
|
2015-09-03 20:56:26 +02:00
|
|
|
texture_desc.depth = 1;
|
|
|
|
texture_desc.size = 0;
|
2013-06-04 09:57:08 +02:00
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
if (swapchain->state.desc.flags & WINED3D_SWAPCHAIN_GDI_COMPATIBLE)
|
2017-02-09 05:51:56 +01:00
|
|
|
texture_flags |= WINED3D_TEXTURE_CREATE_GET_DC;
|
|
|
|
|
2015-09-03 20:56:26 +02:00
|
|
|
if (FAILED(hr = device->device_parent->ops->create_swapchain_texture(device->device_parent,
|
2017-02-09 05:51:56 +01:00
|
|
|
parent, &texture_desc, texture_flags, &swapchain->front_buffer)))
|
2009-12-10 21:41:54 +01:00
|
|
|
{
|
|
|
|
WARN("Failed to create front buffer, hr %#x.\n", hr);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2014-08-20 13:20:02 +02:00
|
|
|
wined3d_texture_set_swapchain(swapchain->front_buffer, swapchain);
|
2013-01-16 08:51:49 +01:00
|
|
|
if (!(device->wined3d->flags & WINED3D_NO3D))
|
2013-09-10 09:32:34 +02:00
|
|
|
{
|
2016-03-29 16:45:36 +02:00
|
|
|
wined3d_texture_validate_location(swapchain->front_buffer, 0, WINED3D_LOCATION_DRAWABLE);
|
2016-03-30 21:30:19 +02:00
|
|
|
wined3d_texture_invalidate_location(swapchain->front_buffer, 0, ~WINED3D_LOCATION_DRAWABLE);
|
2013-09-10 09:32:34 +02:00
|
|
|
}
|
2009-12-10 21:41:54 +01:00
|
|
|
|
|
|
|
/* MSDN says we're only allowed a single fullscreen swapchain per device,
|
|
|
|
* so we should really check to see if there is a fullscreen swapchain
|
|
|
|
* already. Does a single head count as full screen? */
|
2019-07-31 22:29:49 +02:00
|
|
|
if (!desc->windowed && desc->flags & WINED3D_SWAPCHAIN_ALLOW_MODE_SWITCH)
|
2009-12-10 21:41:54 +01:00
|
|
|
{
|
2019-07-31 22:29:49 +02:00
|
|
|
/* Change the display settings */
|
2020-03-06 14:16:16 +01:00
|
|
|
output = wined3d_swapchain_get_output(swapchain);
|
|
|
|
if (!output || FAILED(hr = wined3d_output_set_display_mode(output,
|
|
|
|
&swapchain->state.d3d_mode)))
|
2016-08-03 09:41:38 +02:00
|
|
|
{
|
2019-07-31 22:29:49 +02:00
|
|
|
WARN("Failed to set display mode, hr %#x.\n", hr);
|
|
|
|
goto err;
|
2009-12-10 21:41:54 +01:00
|
|
|
}
|
2019-07-31 22:29:49 +02:00
|
|
|
displaymode_set = TRUE;
|
2009-12-10 21:41:54 +01:00
|
|
|
}
|
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
if (swapchain->state.desc.backbuffer_count > 0)
|
2009-12-10 21:41:54 +01:00
|
|
|
{
|
2019-07-29 13:30:55 +02:00
|
|
|
if (!(swapchain->back_buffers = heap_calloc(swapchain->state.desc.backbuffer_count,
|
2016-05-23 18:06:27 +02:00
|
|
|
sizeof(*swapchain->back_buffers))))
|
2009-12-10 21:41:54 +01:00
|
|
|
{
|
|
|
|
ERR("Failed to allocate backbuffer array memory.\n");
|
|
|
|
hr = E_OUTOFMEMORY;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
texture_desc.bind_flags = swapchain->state.desc.backbuffer_bind_flags;
|
2018-10-31 10:31:48 +01:00
|
|
|
texture_desc.usage = 0;
|
2018-09-27 17:30:33 +02:00
|
|
|
if (device->wined3d->flags & WINED3D_NO3D)
|
|
|
|
texture_desc.usage |= WINED3DUSAGE_OWNDC;
|
2019-07-29 13:30:55 +02:00
|
|
|
for (i = 0; i < swapchain->state.desc.backbuffer_count; ++i)
|
2009-12-10 21:41:54 +01:00
|
|
|
{
|
|
|
|
TRACE("Creating back buffer %u.\n", i);
|
2015-09-03 20:56:26 +02:00
|
|
|
if (FAILED(hr = device->device_parent->ops->create_swapchain_texture(device->device_parent,
|
2017-02-09 05:51:56 +01:00
|
|
|
parent, &texture_desc, texture_flags, &swapchain->back_buffers[i])))
|
2009-12-10 21:41:54 +01:00
|
|
|
{
|
|
|
|
WARN("Failed to create back buffer %u, hr %#x.\n", i, hr);
|
2019-07-29 13:30:55 +02:00
|
|
|
swapchain->state.desc.backbuffer_count = i;
|
2009-12-10 21:41:54 +01:00
|
|
|
goto err;
|
|
|
|
}
|
2014-08-20 13:20:03 +02:00
|
|
|
wined3d_texture_set_swapchain(swapchain->back_buffers[i], swapchain);
|
2009-12-10 21:41:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Swapchains share the depth/stencil buffer, so only create a single depthstencil surface. */
|
2019-07-03 13:49:07 +02:00
|
|
|
if (desc->enable_auto_depth_stencil)
|
2009-12-10 21:41:54 +01:00
|
|
|
{
|
|
|
|
TRACE("Creating depth/stencil buffer.\n");
|
2014-08-22 12:32:01 +02:00
|
|
|
if (!device->auto_depth_stencil_view)
|
2009-12-10 21:41:54 +01:00
|
|
|
{
|
2016-12-05 12:04:41 +01:00
|
|
|
struct wined3d_view_desc desc;
|
2015-09-03 20:56:26 +02:00
|
|
|
struct wined3d_texture *ds;
|
2014-08-22 12:32:01 +02:00
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
texture_desc.format = swapchain->state.desc.auto_depth_stencil_format;
|
2018-11-06 11:12:58 +01:00
|
|
|
texture_desc.usage = 0;
|
2018-10-31 10:31:47 +01:00
|
|
|
texture_desc.bind_flags = WINED3D_BIND_DEPTH_STENCIL;
|
2018-11-08 18:59:02 +01:00
|
|
|
texture_desc.access = WINED3D_RESOURCE_ACCESS_GPU;
|
2013-06-04 09:57:08 +02:00
|
|
|
|
2015-09-03 20:56:26 +02:00
|
|
|
if (FAILED(hr = device->device_parent->ops->create_swapchain_texture(device->device_parent,
|
2018-11-07 09:01:15 +01:00
|
|
|
device->device_parent, &texture_desc, 0, &ds)))
|
2014-08-22 12:32:01 +02:00
|
|
|
{
|
|
|
|
WARN("Failed to create the auto depth/stencil surface, hr %#x.\n", hr);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2015-09-03 20:56:26 +02:00
|
|
|
desc.format_id = ds->resource.format->id;
|
2016-12-05 12:04:41 +01:00
|
|
|
desc.flags = 0;
|
2015-09-03 20:56:26 +02:00
|
|
|
desc.u.texture.level_idx = 0;
|
2016-12-05 12:04:41 +01:00
|
|
|
desc.u.texture.level_count = 1;
|
2015-09-03 20:56:26 +02:00
|
|
|
desc.u.texture.layer_idx = 0;
|
|
|
|
desc.u.texture.layer_count = 1;
|
|
|
|
hr = wined3d_rendertarget_view_create(&desc, &ds->resource, NULL, &wined3d_null_parent_ops,
|
|
|
|
&device->auto_depth_stencil_view);
|
|
|
|
wined3d_texture_decref(ds);
|
2014-08-22 12:32:01 +02:00
|
|
|
if (FAILED(hr))
|
2009-12-10 21:41:54 +01:00
|
|
|
{
|
2014-08-22 12:32:01 +02:00
|
|
|
ERR("Failed to create rendertarget view, hr %#x.\n", hr);
|
2009-12-10 21:41:54 +01:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-13 19:14:31 +02:00
|
|
|
wined3d_swapchain_get_gamma_ramp(swapchain, &swapchain->orig_gamma);
|
2009-12-10 21:41:54 +01:00
|
|
|
|
2019-08-08 00:47:04 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2009-12-10 21:41:54 +01:00
|
|
|
return WINED3D_OK;
|
|
|
|
|
|
|
|
err:
|
|
|
|
if (displaymode_set)
|
|
|
|
{
|
2020-03-06 14:16:16 +01:00
|
|
|
if (!output || FAILED(wined3d_output_set_display_mode(output,
|
|
|
|
&swapchain->state.original_mode)))
|
2013-08-20 10:20:09 +02:00
|
|
|
ERR("Failed to restore display mode.\n");
|
2009-12-10 21:41:54 +01:00
|
|
|
ClipCursor(NULL);
|
|
|
|
}
|
|
|
|
|
2010-04-26 21:33:01 +02:00
|
|
|
if (swapchain->back_buffers)
|
2009-12-10 21:41:54 +01:00
|
|
|
{
|
2019-07-29 13:30:55 +02:00
|
|
|
for (i = 0; i < swapchain->state.desc.backbuffer_count; ++i)
|
2009-12-10 21:41:54 +01:00
|
|
|
{
|
2011-04-29 13:03:41 +02:00
|
|
|
if (swapchain->back_buffers[i])
|
2011-06-01 01:38:24 +02:00
|
|
|
{
|
2014-08-20 13:20:03 +02:00
|
|
|
wined3d_texture_set_swapchain(swapchain->back_buffers[i], NULL);
|
|
|
|
wined3d_texture_decref(swapchain->back_buffers[i]);
|
2011-06-01 01:38:24 +02:00
|
|
|
}
|
2009-12-10 21:41:54 +01:00
|
|
|
}
|
2018-02-14 07:39:59 +01:00
|
|
|
heap_free(swapchain->back_buffers);
|
2009-12-10 21:41:54 +01:00
|
|
|
}
|
|
|
|
|
2011-04-29 13:03:41 +02:00
|
|
|
if (swapchain->front_buffer)
|
2011-06-01 01:38:24 +02:00
|
|
|
{
|
2014-08-20 13:20:02 +02:00
|
|
|
wined3d_texture_set_swapchain(swapchain->front_buffer, NULL);
|
|
|
|
wined3d_texture_decref(swapchain->front_buffer);
|
2011-06-01 01:38:24 +02:00
|
|
|
}
|
2009-12-10 21:41:54 +01:00
|
|
|
|
2019-08-08 00:47:04 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
2009-12-10 21:41:54 +01:00
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2019-08-08 00:47:04 +02:00
|
|
|
HRESULT wined3d_swapchain_no3d_init(struct wined3d_swapchain *swapchain_no3d, struct wined3d_device *device,
|
|
|
|
struct wined3d_swapchain_desc *desc, void *parent, const struct wined3d_parent_ops *parent_ops)
|
|
|
|
{
|
|
|
|
TRACE("swapchain_no3d %p, device %p, desc %p, parent %p, parent_ops %p.\n",
|
|
|
|
swapchain_no3d, device, desc, parent, parent_ops);
|
|
|
|
|
|
|
|
return wined3d_swapchain_init(swapchain_no3d, device, desc, parent, parent_ops, &swapchain_no3d_ops);
|
|
|
|
}
|
|
|
|
|
2019-08-13 10:31:37 +02:00
|
|
|
HRESULT wined3d_swapchain_gl_init(struct wined3d_swapchain_gl *swapchain_gl, struct wined3d_device *device,
|
2019-08-08 00:47:04 +02:00
|
|
|
struct wined3d_swapchain_desc *desc, void *parent, const struct wined3d_parent_ops *parent_ops)
|
|
|
|
{
|
2019-08-13 10:31:39 +02:00
|
|
|
HRESULT hr;
|
|
|
|
|
2019-08-08 00:47:04 +02:00
|
|
|
TRACE("swapchain_gl %p, device %p, desc %p, parent %p, parent_ops %p.\n",
|
|
|
|
swapchain_gl, device, desc, parent, parent_ops);
|
|
|
|
|
2019-08-13 10:31:39 +02:00
|
|
|
if (FAILED(hr = wined3d_swapchain_init(&swapchain_gl->s, device, desc, parent, parent_ops, &swapchain_gl_ops)))
|
|
|
|
{
|
|
|
|
/* Cleanup any context that may have been created for the swapchain. */
|
|
|
|
wined3d_cs_destroy_object(device->cs, wined3d_swapchain_gl_destroy_object, swapchain_gl);
|
|
|
|
wined3d_cs_finish(device->cs, WINED3D_CS_QUEUE_DEFAULT);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
2019-08-08 00:47:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT wined3d_swapchain_vk_init(struct wined3d_swapchain *swapchain_vk, struct wined3d_device *device,
|
|
|
|
struct wined3d_swapchain_desc *desc, void *parent, const struct wined3d_parent_ops *parent_ops)
|
|
|
|
{
|
|
|
|
TRACE("swapchain_vk %p, device %p, desc %p, parent %p, parent_ops %p.\n",
|
|
|
|
swapchain_vk, device, desc, parent, parent_ops);
|
|
|
|
|
|
|
|
return wined3d_swapchain_init(swapchain_vk, device, desc, parent, parent_ops, &swapchain_vk_ops);
|
|
|
|
}
|
|
|
|
|
2013-01-16 08:51:49 +01:00
|
|
|
HRESULT CDECL wined3d_swapchain_create(struct wined3d_device *device, struct wined3d_swapchain_desc *desc,
|
|
|
|
void *parent, const struct wined3d_parent_ops *parent_ops, struct wined3d_swapchain **swapchain)
|
2011-05-10 21:18:47 +02:00
|
|
|
{
|
|
|
|
struct wined3d_swapchain *object;
|
|
|
|
HRESULT hr;
|
|
|
|
|
2019-08-08 00:47:04 +02:00
|
|
|
if (FAILED(hr = device->adapter->adapter_ops->adapter_create_swapchain(device,
|
|
|
|
desc, parent, parent_ops, &object)))
|
2011-05-10 21:18:47 +02:00
|
|
|
return hr;
|
|
|
|
|
2019-06-19 12:11:04 +02:00
|
|
|
if (desc->flags & WINED3D_SWAPCHAIN_HOOK)
|
|
|
|
wined3d_hook_swapchain(object);
|
|
|
|
|
2019-04-12 14:50:47 +02:00
|
|
|
if (desc->flags & WINED3D_SWAPCHAIN_IMPLICIT)
|
|
|
|
{
|
|
|
|
wined3d_mutex_lock();
|
|
|
|
if (FAILED(hr = wined3d_device_set_implicit_swapchain(device, object)))
|
|
|
|
{
|
|
|
|
wined3d_cs_finish(device->cs, WINED3D_CS_QUEUE_DEFAULT);
|
2019-08-08 00:47:04 +02:00
|
|
|
device->adapter->adapter_ops->adapter_destroy_swapchain(object);
|
2019-04-12 14:50:47 +02:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
wined3d_mutex_unlock();
|
|
|
|
}
|
|
|
|
|
2011-05-10 21:18:47 +02:00
|
|
|
*swapchain = object;
|
|
|
|
|
2019-08-08 00:47:04 +02:00
|
|
|
return hr;
|
2011-05-10 21:18:47 +02:00
|
|
|
}
|
|
|
|
|
2019-08-13 10:31:39 +02:00
|
|
|
static struct wined3d_context_gl *wined3d_swapchain_gl_create_context(struct wined3d_swapchain_gl *swapchain_gl)
|
2009-08-03 08:06:51 +02:00
|
|
|
{
|
2019-08-13 10:31:39 +02:00
|
|
|
struct wined3d_device *device = swapchain_gl->s.device;
|
2019-06-05 14:24:07 +02:00
|
|
|
struct wined3d_context_gl *context_gl;
|
2007-06-02 22:21:57 +02:00
|
|
|
|
2019-08-13 10:31:39 +02:00
|
|
|
TRACE("Creating a new context for swapchain %p, thread %u.\n", swapchain_gl, GetCurrentThreadId());
|
2007-06-02 22:21:57 +02:00
|
|
|
|
2019-06-05 14:24:07 +02:00
|
|
|
wined3d_from_cs(device->cs);
|
|
|
|
|
|
|
|
if (!(context_gl = heap_alloc_zero(sizeof(*context_gl))))
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate context memory.\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-08-13 10:31:39 +02:00
|
|
|
if (FAILED(wined3d_context_gl_init(context_gl, swapchain_gl)))
|
2009-10-28 11:00:12 +01:00
|
|
|
{
|
2019-06-05 14:24:07 +02:00
|
|
|
WARN("Failed to initialise context.\n");
|
|
|
|
heap_free(context_gl);
|
2007-06-02 22:21:57 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2019-06-05 14:24:07 +02:00
|
|
|
|
|
|
|
if (!device_context_add(device, &context_gl->c))
|
|
|
|
{
|
|
|
|
ERR("Failed to add the newly created context to the context list.\n");
|
|
|
|
wined3d_context_gl_destroy(context_gl);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("Created context %p.\n", context_gl);
|
|
|
|
|
|
|
|
context_release(&context_gl->c);
|
2007-06-02 22:21:57 +02:00
|
|
|
|
2019-08-13 10:31:39 +02:00
|
|
|
if (!wined3d_array_reserve((void **)&swapchain_gl->contexts, &swapchain_gl->contexts_size,
|
|
|
|
swapchain_gl->context_count + 1, sizeof(*swapchain_gl->contexts)))
|
2016-05-23 18:06:27 +02:00
|
|
|
{
|
2019-06-05 14:24:07 +02:00
|
|
|
ERR("Failed to allocate new context array memory.\n");
|
|
|
|
wined3d_context_gl_destroy(context_gl);
|
2007-06-02 22:21:57 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2019-08-13 10:31:39 +02:00
|
|
|
swapchain_gl->contexts[swapchain_gl->context_count++] = context_gl;
|
2007-06-02 22:21:57 +02:00
|
|
|
|
2019-08-13 10:31:39 +02:00
|
|
|
return context_gl;
|
2007-06-02 22:21:57 +02:00
|
|
|
}
|
2007-11-30 20:22:33 +01:00
|
|
|
|
2019-08-13 10:31:39 +02:00
|
|
|
void wined3d_swapchain_gl_destroy_contexts(struct wined3d_swapchain_gl *swapchain_gl)
|
2011-06-28 02:26:20 +02:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
2019-08-13 10:31:39 +02:00
|
|
|
for (i = 0; i < swapchain_gl->context_count; ++i)
|
2011-06-28 02:26:20 +02:00
|
|
|
{
|
2019-08-13 10:31:39 +02:00
|
|
|
wined3d_context_gl_destroy(swapchain_gl->contexts[i]);
|
2011-06-28 02:26:20 +02:00
|
|
|
}
|
2019-08-13 10:31:39 +02:00
|
|
|
heap_free(swapchain_gl->contexts);
|
|
|
|
swapchain_gl->contexts_size = 0;
|
|
|
|
swapchain_gl->context_count = 0;
|
|
|
|
swapchain_gl->contexts = NULL;
|
2011-06-28 02:26:20 +02:00
|
|
|
}
|
|
|
|
|
2019-08-13 10:31:39 +02:00
|
|
|
struct wined3d_context_gl *wined3d_swapchain_gl_get_context(struct wined3d_swapchain_gl *swapchain_gl)
|
2011-01-19 19:20:11 +01:00
|
|
|
{
|
|
|
|
DWORD tid = GetCurrentThreadId();
|
|
|
|
unsigned int i;
|
|
|
|
|
2019-08-13 10:31:39 +02:00
|
|
|
for (i = 0; i < swapchain_gl->context_count; ++i)
|
2011-01-19 19:20:11 +01:00
|
|
|
{
|
2019-08-13 10:31:39 +02:00
|
|
|
if (swapchain_gl->contexts[i]->tid == tid)
|
|
|
|
return swapchain_gl->contexts[i];
|
2011-01-19 19:20:11 +01:00
|
|
|
}
|
|
|
|
|
2019-08-13 10:31:39 +02:00
|
|
|
/* Create a new context for the thread. */
|
|
|
|
return wined3d_swapchain_gl_create_context(swapchain_gl);
|
2011-01-19 19:20:11 +01:00
|
|
|
}
|
|
|
|
|
2019-08-13 10:31:38 +02:00
|
|
|
HDC wined3d_swapchain_gl_get_backup_dc(struct wined3d_swapchain_gl *swapchain_gl)
|
2011-07-05 22:30:53 +02:00
|
|
|
{
|
2019-08-13 10:31:38 +02:00
|
|
|
if (!swapchain_gl->backup_dc)
|
2011-07-05 22:30:53 +02:00
|
|
|
{
|
2019-08-13 10:31:38 +02:00
|
|
|
TRACE("Creating the backup window for swapchain %p.\n", swapchain_gl);
|
2011-07-05 22:30:53 +02:00
|
|
|
|
2019-08-13 10:31:38 +02:00
|
|
|
if (!(swapchain_gl->backup_wnd = CreateWindowA(WINED3D_OPENGL_WINDOW_CLASS_NAME, "WineD3D fake window",
|
2011-07-05 22:30:53 +02:00
|
|
|
WS_OVERLAPPEDWINDOW, 10, 10, 10, 10, NULL, NULL, NULL, NULL)))
|
|
|
|
{
|
|
|
|
ERR("Failed to create a window.\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-08-13 10:31:38 +02:00
|
|
|
if (!(swapchain_gl->backup_dc = GetDC(swapchain_gl->backup_wnd)))
|
2011-07-05 22:30:53 +02:00
|
|
|
{
|
|
|
|
ERR("Failed to get a DC.\n");
|
2019-08-13 10:31:38 +02:00
|
|
|
DestroyWindow(swapchain_gl->backup_wnd);
|
|
|
|
swapchain_gl->backup_wnd = NULL;
|
2011-07-05 22:30:53 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-13 10:31:38 +02:00
|
|
|
return swapchain_gl->backup_dc;
|
2011-07-05 22:30:53 +02:00
|
|
|
}
|
2011-08-23 20:08:08 +02:00
|
|
|
|
|
|
|
void swapchain_update_draw_bindings(struct wined3d_swapchain *swapchain)
|
|
|
|
{
|
|
|
|
UINT i;
|
|
|
|
|
2014-08-20 13:20:02 +02:00
|
|
|
wined3d_resource_update_draw_binding(&swapchain->front_buffer->resource);
|
2011-08-23 20:08:08 +02:00
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
for (i = 0; i < swapchain->state.desc.backbuffer_count; ++i)
|
2011-08-23 20:08:08 +02:00
|
|
|
{
|
2014-08-20 13:20:03 +02:00
|
|
|
wined3d_resource_update_draw_binding(&swapchain->back_buffers[i]->resource);
|
2011-08-23 20:08:08 +02:00
|
|
|
}
|
|
|
|
}
|
2014-11-13 20:39:25 +01:00
|
|
|
|
|
|
|
void wined3d_swapchain_activate(struct wined3d_swapchain *swapchain, BOOL activate)
|
|
|
|
{
|
2014-12-04 21:51:49 +01:00
|
|
|
struct wined3d_device *device = swapchain->device;
|
2019-07-31 22:29:46 +02:00
|
|
|
HWND window = swapchain->state.device_window;
|
2019-08-05 15:55:35 +02:00
|
|
|
unsigned int screensaver_active;
|
2020-03-06 14:16:16 +01:00
|
|
|
struct wined3d_output *output;
|
2019-07-29 13:30:53 +02:00
|
|
|
BOOL focus_messages, filter;
|
2014-12-04 21:51:49 +01:00
|
|
|
|
2014-12-01 22:46:48 +01:00
|
|
|
/* This code is not protected by the wined3d mutex, so it may run while
|
|
|
|
* wined3d_device_reset is active. Testing on Windows shows that changing
|
|
|
|
* focus during resets and resetting during focus change events causes
|
|
|
|
* the application to crash with an invalid memory access. */
|
|
|
|
|
2019-07-29 13:30:53 +02:00
|
|
|
if (!(focus_messages = device->wined3d->flags & WINED3D_FOCUS_MESSAGES))
|
|
|
|
filter = wined3d_filter_messages(window, TRUE);
|
2014-12-04 21:51:49 +01:00
|
|
|
|
2014-11-18 21:26:57 +01:00
|
|
|
if (activate)
|
|
|
|
{
|
2019-08-05 15:55:35 +02:00
|
|
|
SystemParametersInfoW(SPI_GETSCREENSAVEACTIVE, 0, &screensaver_active, 0);
|
|
|
|
if ((device->restore_screensaver = !!screensaver_active))
|
|
|
|
SystemParametersInfoW(SPI_SETSCREENSAVEACTIVE, FALSE, NULL, 0);
|
|
|
|
|
2014-12-04 21:51:49 +01:00
|
|
|
if (!(device->create_parms.flags & WINED3DCREATE_NOWINDOWCHANGES))
|
2014-11-19 20:13:50 +01:00
|
|
|
{
|
|
|
|
/* The d3d versions do not agree on the exact messages here. D3d8 restores
|
|
|
|
* the window but leaves the size untouched, d3d9 sets the size on an
|
|
|
|
* invisible window, generates messages but doesn't change the window
|
|
|
|
* properties. The implementation follows d3d9.
|
|
|
|
*
|
|
|
|
* Guild Wars 1 wants a WINDOWPOSCHANGED message on the device window to
|
|
|
|
* resume drawing after a focus loss. */
|
2019-07-29 13:30:55 +02:00
|
|
|
SetWindowPos(window, NULL, 0, 0, swapchain->state.desc.backbuffer_width,
|
|
|
|
swapchain->state.desc.backbuffer_height, SWP_NOACTIVATE | SWP_NOZORDER);
|
2014-11-19 20:13:50 +01:00
|
|
|
}
|
|
|
|
|
2014-12-04 21:51:49 +01:00
|
|
|
if (device->wined3d->flags & WINED3D_RESTORE_MODE_ON_ACTIVATE)
|
2014-11-18 21:26:57 +01:00
|
|
|
{
|
2020-03-06 14:16:16 +01:00
|
|
|
output = wined3d_swapchain_get_output(swapchain);
|
|
|
|
if (!output || FAILED(wined3d_output_set_display_mode(output,
|
|
|
|
&swapchain->state.d3d_mode)))
|
2014-11-18 21:26:57 +01:00
|
|
|
ERR("Failed to set display mode.\n");
|
|
|
|
}
|
2018-10-14 01:13:51 +02:00
|
|
|
|
|
|
|
if (swapchain == device->swapchains[0])
|
|
|
|
device->device_parent->ops->activate(device->device_parent, TRUE);
|
2014-11-18 21:26:57 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-08-05 15:55:35 +02:00
|
|
|
if (device->restore_screensaver)
|
|
|
|
{
|
|
|
|
SystemParametersInfoW(SPI_SETSCREENSAVEACTIVE, TRUE, NULL, 0);
|
|
|
|
device->restore_screensaver = FALSE;
|
|
|
|
}
|
|
|
|
|
2020-03-06 14:16:16 +01:00
|
|
|
output = wined3d_swapchain_get_output(swapchain);
|
|
|
|
if (!output || FAILED(wined3d_output_set_display_mode(output, NULL)))
|
2014-11-18 21:26:57 +01:00
|
|
|
ERR("Failed to set display mode.\n");
|
|
|
|
|
|
|
|
swapchain->reapply_mode = TRUE;
|
|
|
|
|
2018-10-14 01:13:51 +02:00
|
|
|
/* Some DDraw apps (Deus Ex: GOTY, and presumably all UT 1 based games) destroy the device
|
|
|
|
* during window minimization. Do our housekeeping now, as the device may not exist after
|
|
|
|
* the ShowWindow call.
|
|
|
|
*
|
|
|
|
* In d3d9, the device is marked lost after the window is minimized. If we find an app
|
|
|
|
* that needs this behavior (e.g. because it calls TestCooperativeLevel in the window proc)
|
|
|
|
* we'll have to control this via a create flag. Note that the device and swapchain are not
|
|
|
|
* safe to access after the ShowWindow call. */
|
|
|
|
if (swapchain == device->swapchains[0])
|
|
|
|
device->device_parent->ops->activate(device->device_parent, FALSE);
|
|
|
|
|
2019-07-29 13:30:53 +02:00
|
|
|
if (!(device->create_parms.flags & WINED3DCREATE_NOWINDOWCHANGES) && IsWindowVisible(window))
|
|
|
|
ShowWindow(window, SW_MINIMIZE);
|
2014-11-18 21:26:57 +01:00
|
|
|
}
|
2014-12-04 21:51:49 +01:00
|
|
|
|
2018-10-14 01:13:52 +02:00
|
|
|
if (!focus_messages)
|
2019-07-29 13:30:53 +02:00
|
|
|
wined3d_filter_messages(window, filter);
|
2014-11-13 20:39:25 +01:00
|
|
|
}
|
2015-08-07 10:01:33 +02:00
|
|
|
|
2015-08-07 10:01:34 +02:00
|
|
|
HRESULT CDECL wined3d_swapchain_resize_buffers(struct wined3d_swapchain *swapchain, unsigned int buffer_count,
|
2015-08-07 10:01:33 +02:00
|
|
|
unsigned int width, unsigned int height, enum wined3d_format_id format_id,
|
|
|
|
enum wined3d_multisample_type multisample_type, unsigned int multisample_quality)
|
|
|
|
{
|
2019-07-29 13:30:55 +02:00
|
|
|
struct wined3d_swapchain_desc *desc = &swapchain->state.desc;
|
2015-08-07 10:01:33 +02:00
|
|
|
BOOL update_desc = FALSE;
|
|
|
|
|
|
|
|
TRACE("swapchain %p, buffer_count %u, width %u, height %u, format %s, "
|
|
|
|
"multisample_type %#x, multisample_quality %#x.\n",
|
|
|
|
swapchain, buffer_count, width, height, debug_d3dformat(format_id),
|
|
|
|
multisample_type, multisample_quality);
|
|
|
|
|
2016-03-15 16:55:08 +01:00
|
|
|
wined3d_swapchain_apply_sample_count_override(swapchain, format_id, &multisample_type, &multisample_quality);
|
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
if (buffer_count && buffer_count != desc->backbuffer_count)
|
2015-08-07 10:01:33 +02:00
|
|
|
FIXME("Cannot change the back buffer count yet.\n");
|
|
|
|
|
2018-11-29 14:33:47 +01:00
|
|
|
wined3d_cs_finish(swapchain->device->cs, WINED3D_CS_QUEUE_DEFAULT);
|
2017-05-02 11:35:30 +02:00
|
|
|
|
2015-08-07 10:01:33 +02:00
|
|
|
if (!width || !height)
|
|
|
|
{
|
|
|
|
/* The application is requesting that either the swapchain width or
|
|
|
|
* height be set to the corresponding dimension in the window's
|
|
|
|
* client rect. */
|
|
|
|
|
|
|
|
RECT client_rect;
|
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
if (!desc->windowed)
|
2015-08-07 10:01:33 +02:00
|
|
|
return WINED3DERR_INVALIDCALL;
|
|
|
|
|
2019-07-31 22:29:46 +02:00
|
|
|
if (!GetClientRect(swapchain->state.device_window, &client_rect))
|
2015-08-07 10:01:33 +02:00
|
|
|
{
|
|
|
|
ERR("Failed to get client rect, last error %#x.\n", GetLastError());
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!width)
|
|
|
|
width = client_rect.right;
|
|
|
|
|
|
|
|
if (!height)
|
|
|
|
height = client_rect.bottom;
|
|
|
|
}
|
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
if (width != desc->backbuffer_width || height != desc->backbuffer_height)
|
2015-08-07 10:01:33 +02:00
|
|
|
{
|
2019-07-29 13:30:55 +02:00
|
|
|
desc->backbuffer_width = width;
|
|
|
|
desc->backbuffer_height = height;
|
2015-08-07 10:01:33 +02:00
|
|
|
update_desc = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (format_id == WINED3DFMT_UNKNOWN)
|
|
|
|
{
|
2019-07-29 13:30:55 +02:00
|
|
|
if (!desc->windowed)
|
2015-08-07 10:01:33 +02:00
|
|
|
return WINED3DERR_INVALIDCALL;
|
2019-07-31 22:29:49 +02:00
|
|
|
format_id = swapchain->state.original_mode.format_id;
|
2015-08-07 10:01:33 +02:00
|
|
|
}
|
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
if (format_id != desc->backbuffer_format)
|
2015-08-07 10:01:33 +02:00
|
|
|
{
|
2019-07-29 13:30:55 +02:00
|
|
|
desc->backbuffer_format = format_id;
|
2015-08-07 10:01:33 +02:00
|
|
|
update_desc = TRUE;
|
|
|
|
}
|
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
if (multisample_type != desc->multisample_type
|
|
|
|
|| multisample_quality != desc->multisample_quality)
|
2015-08-07 10:01:33 +02:00
|
|
|
{
|
2019-07-29 13:30:55 +02:00
|
|
|
desc->multisample_type = multisample_type;
|
|
|
|
desc->multisample_quality = multisample_quality;
|
2015-08-07 10:01:33 +02:00
|
|
|
update_desc = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (update_desc)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
UINT i;
|
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
if (FAILED(hr = wined3d_texture_update_desc(swapchain->front_buffer, desc->backbuffer_width,
|
|
|
|
desc->backbuffer_height, desc->backbuffer_format,
|
|
|
|
desc->multisample_type, desc->multisample_quality, NULL, 0)))
|
2015-08-07 10:01:33 +02:00
|
|
|
return hr;
|
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
for (i = 0; i < desc->backbuffer_count; ++i)
|
2015-08-07 10:01:33 +02:00
|
|
|
{
|
2019-07-29 13:30:55 +02:00
|
|
|
if (FAILED(hr = wined3d_texture_update_desc(swapchain->back_buffers[i], desc->backbuffer_width,
|
|
|
|
desc->backbuffer_height, desc->backbuffer_format,
|
|
|
|
desc->multisample_type, desc->multisample_quality, NULL, 0)))
|
2015-08-07 10:01:33 +02:00
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
swapchain_update_render_to_fbo(swapchain);
|
|
|
|
swapchain_update_draw_bindings(swapchain);
|
|
|
|
|
|
|
|
return WINED3D_OK;
|
|
|
|
}
|
2016-08-01 22:28:35 +02:00
|
|
|
|
2019-07-31 22:29:46 +02:00
|
|
|
static HRESULT wined3d_swapchain_state_set_display_mode(struct wined3d_swapchain_state *state,
|
2020-03-06 14:16:48 +01:00
|
|
|
struct wined3d_output *output, struct wined3d_display_mode *mode)
|
2016-08-25 12:22:56 +02:00
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
2019-07-31 22:29:46 +02:00
|
|
|
if (state->desc.flags & WINED3D_SWAPCHAIN_USE_CLOSEST_MATCHING_MODE)
|
2016-08-25 12:22:56 +02:00
|
|
|
{
|
2020-03-06 14:16:48 +01:00
|
|
|
if (FAILED(hr = wined3d_output_find_closest_matching_mode(output, mode)))
|
2016-08-25 12:22:56 +02:00
|
|
|
{
|
|
|
|
WARN("Failed to find closest matching mode, hr %#x.\n", hr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-06 14:16:16 +01:00
|
|
|
if (FAILED(hr = wined3d_output_set_display_mode(output, mode)))
|
2016-08-25 12:22:56 +02:00
|
|
|
{
|
|
|
|
WARN("Failed to set display mode, hr %#x.\n", hr);
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return WINED3D_OK;
|
|
|
|
}
|
|
|
|
|
2019-07-31 22:29:46 +02:00
|
|
|
HRESULT CDECL wined3d_swapchain_state_resize_target(struct wined3d_swapchain_state *state,
|
2020-03-06 14:16:48 +01:00
|
|
|
struct wined3d_output *output, const struct wined3d_display_mode *mode)
|
2016-08-04 17:23:42 +02:00
|
|
|
{
|
2016-08-25 12:22:56 +02:00
|
|
|
struct wined3d_display_mode actual_mode;
|
2016-08-04 17:23:42 +02:00
|
|
|
RECT original_window_rect, window_rect;
|
2018-11-29 14:33:40 +01:00
|
|
|
HWND window;
|
2016-08-04 17:23:42 +02:00
|
|
|
HRESULT hr;
|
|
|
|
|
2020-03-06 14:16:48 +01:00
|
|
|
TRACE("state %p, output %p, mode %p.\n", state, output, mode);
|
2016-08-04 17:23:42 +02:00
|
|
|
|
2018-11-29 14:33:40 +01:00
|
|
|
wined3d_mutex_lock();
|
|
|
|
|
2019-07-31 22:29:46 +02:00
|
|
|
window = state->device_window;
|
2018-11-29 14:33:40 +01:00
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
if (state->desc.windowed)
|
2016-08-04 17:23:42 +02:00
|
|
|
{
|
2016-08-25 12:22:56 +02:00
|
|
|
SetRect(&window_rect, 0, 0, mode->width, mode->height);
|
2016-08-04 17:23:42 +02:00
|
|
|
AdjustWindowRectEx(&window_rect,
|
2018-11-29 14:33:40 +01:00
|
|
|
GetWindowLongW(window, GWL_STYLE), FALSE,
|
|
|
|
GetWindowLongW(window, GWL_EXSTYLE));
|
2016-08-04 17:23:42 +02:00
|
|
|
SetRect(&window_rect, 0, 0,
|
|
|
|
window_rect.right - window_rect.left, window_rect.bottom - window_rect.top);
|
2018-11-29 14:33:40 +01:00
|
|
|
GetWindowRect(window, &original_window_rect);
|
2016-08-04 17:23:42 +02:00
|
|
|
OffsetRect(&window_rect, original_window_rect.left, original_window_rect.top);
|
|
|
|
}
|
2019-07-29 13:30:55 +02:00
|
|
|
else if (state->desc.flags & WINED3D_SWAPCHAIN_ALLOW_MODE_SWITCH)
|
2016-08-04 17:23:42 +02:00
|
|
|
{
|
2016-08-25 12:22:56 +02:00
|
|
|
actual_mode = *mode;
|
2020-03-06 14:16:48 +01:00
|
|
|
if (FAILED(hr = wined3d_swapchain_state_set_display_mode(state, output, &actual_mode)))
|
2018-11-29 14:33:40 +01:00
|
|
|
{
|
|
|
|
wined3d_mutex_unlock();
|
2016-08-25 12:22:56 +02:00
|
|
|
return hr;
|
2018-11-29 14:33:40 +01:00
|
|
|
}
|
2016-08-25 12:22:56 +02:00
|
|
|
SetRect(&window_rect, 0, 0, actual_mode.width, actual_mode.height);
|
2016-08-04 17:23:42 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-03-06 14:16:29 +01:00
|
|
|
if (FAILED(hr = wined3d_output_get_display_mode(output, &actual_mode, NULL)))
|
2016-08-04 17:23:42 +02:00
|
|
|
{
|
|
|
|
ERR("Failed to get display mode, hr %#x.\n", hr);
|
2018-11-29 14:33:40 +01:00
|
|
|
wined3d_mutex_unlock();
|
2018-11-23 14:41:16 +01:00
|
|
|
return hr;
|
2016-08-04 17:23:42 +02:00
|
|
|
}
|
|
|
|
|
2016-08-25 12:22:56 +02:00
|
|
|
SetRect(&window_rect, 0, 0, actual_mode.width, actual_mode.height);
|
2016-08-04 17:23:42 +02:00
|
|
|
}
|
|
|
|
|
2018-11-29 14:33:40 +01:00
|
|
|
wined3d_mutex_unlock();
|
|
|
|
|
|
|
|
MoveWindow(window, window_rect.left, window_rect.top,
|
|
|
|
window_rect.right - window_rect.left, window_rect.bottom - window_rect.top, TRUE);
|
2016-08-04 17:23:42 +02:00
|
|
|
|
|
|
|
return WINED3D_OK;
|
|
|
|
}
|
|
|
|
|
2019-07-29 13:30:54 +02:00
|
|
|
static LONG fullscreen_style(LONG style)
|
|
|
|
{
|
|
|
|
/* Make sure the window is managed, otherwise we won't get keyboard input. */
|
|
|
|
style |= WS_POPUP | WS_SYSMENU;
|
|
|
|
style &= ~(WS_CAPTION | WS_THICKFRAME);
|
|
|
|
|
|
|
|
return style;
|
|
|
|
}
|
|
|
|
|
|
|
|
static LONG fullscreen_exstyle(LONG exstyle)
|
|
|
|
{
|
|
|
|
/* Filter out window decorations. */
|
|
|
|
exstyle &= ~(WS_EX_WINDOWEDGE | WS_EX_CLIENTEDGE);
|
|
|
|
|
|
|
|
return exstyle;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT wined3d_swapchain_state_setup_fullscreen(struct wined3d_swapchain_state *state,
|
|
|
|
HWND window, unsigned int w, unsigned int h)
|
|
|
|
{
|
|
|
|
LONG style, exstyle;
|
|
|
|
BOOL filter;
|
|
|
|
|
|
|
|
TRACE("Setting up window %p for fullscreen mode.\n", window);
|
|
|
|
|
|
|
|
if (!IsWindow(window))
|
|
|
|
{
|
|
|
|
WARN("%p is not a valid window.\n", window);
|
|
|
|
return WINED3DERR_NOTAVAILABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state->style || state->exstyle)
|
|
|
|
{
|
|
|
|
ERR("Changing the window style for window %p, but another style (%08x, %08x) is already stored.\n",
|
|
|
|
window, state->style, state->exstyle);
|
|
|
|
}
|
|
|
|
|
|
|
|
state->style = GetWindowLongW(window, GWL_STYLE);
|
|
|
|
state->exstyle = GetWindowLongW(window, GWL_EXSTYLE);
|
|
|
|
|
|
|
|
style = fullscreen_style(state->style);
|
|
|
|
exstyle = fullscreen_exstyle(state->exstyle);
|
|
|
|
|
|
|
|
TRACE("Old style was %08x, %08x, setting to %08x, %08x.\n",
|
|
|
|
state->style, state->exstyle, style, exstyle);
|
|
|
|
|
|
|
|
filter = wined3d_filter_messages(window, TRUE);
|
|
|
|
|
|
|
|
SetWindowLongW(window, GWL_STYLE, style);
|
|
|
|
SetWindowLongW(window, GWL_EXSTYLE, exstyle);
|
|
|
|
SetWindowPos(window, HWND_TOPMOST, 0, 0, w, h, SWP_FRAMECHANGED | SWP_SHOWWINDOW | SWP_NOACTIVATE);
|
|
|
|
|
|
|
|
wined3d_filter_messages(window, filter);
|
|
|
|
|
|
|
|
return WINED3D_OK;
|
|
|
|
}
|
|
|
|
|
2019-07-31 22:29:45 +02:00
|
|
|
void wined3d_swapchain_state_restore_from_fullscreen(struct wined3d_swapchain_state *state,
|
2019-07-29 13:30:54 +02:00
|
|
|
HWND window, const RECT *window_rect)
|
|
|
|
{
|
|
|
|
unsigned int window_pos_flags = SWP_FRAMECHANGED | SWP_NOZORDER | SWP_NOACTIVATE;
|
|
|
|
LONG style, exstyle;
|
|
|
|
RECT rect = {0};
|
|
|
|
BOOL filter;
|
|
|
|
|
|
|
|
if (!state->style && !state->exstyle)
|
|
|
|
return;
|
|
|
|
|
|
|
|
style = GetWindowLongW(window, GWL_STYLE);
|
|
|
|
exstyle = GetWindowLongW(window, GWL_EXSTYLE);
|
|
|
|
|
|
|
|
/* These flags are set by wined3d_device_setup_fullscreen_window, not the
|
|
|
|
* application, and we want to ignore them in the test below, since it's
|
|
|
|
* not the application's fault that they changed. Additionally, we want to
|
|
|
|
* preserve the current status of these flags (i.e. don't restore them) to
|
|
|
|
* more closely emulate the behavior of Direct3D, which leaves these flags
|
|
|
|
* alone when returning to windowed mode. */
|
|
|
|
state->style ^= (state->style ^ style) & WS_VISIBLE;
|
|
|
|
state->exstyle ^= (state->exstyle ^ exstyle) & WS_EX_TOPMOST;
|
|
|
|
|
|
|
|
TRACE("Restoring window style of window %p to %08x, %08x.\n",
|
|
|
|
window, state->style, state->exstyle);
|
|
|
|
|
|
|
|
filter = wined3d_filter_messages(window, TRUE);
|
|
|
|
|
|
|
|
/* Only restore the style if the application didn't modify it during the
|
|
|
|
* fullscreen phase. Some applications change it before calling Reset()
|
|
|
|
* when switching between windowed and fullscreen modes (HL2), some
|
|
|
|
* depend on the original style (Eve Online). */
|
|
|
|
if (style == fullscreen_style(state->style) && exstyle == fullscreen_exstyle(state->exstyle))
|
|
|
|
{
|
|
|
|
SetWindowLongW(window, GWL_STYLE, state->style);
|
|
|
|
SetWindowLongW(window, GWL_EXSTYLE, state->exstyle);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window_rect)
|
|
|
|
rect = *window_rect;
|
|
|
|
else
|
|
|
|
window_pos_flags |= (SWP_NOMOVE | SWP_NOSIZE);
|
|
|
|
SetWindowPos(window, 0, rect.left, rect.top,
|
|
|
|
rect.right - rect.left, rect.bottom - rect.top, window_pos_flags);
|
|
|
|
|
|
|
|
wined3d_filter_messages(window, filter);
|
|
|
|
|
|
|
|
/* Delete the old values. */
|
|
|
|
state->style = 0;
|
|
|
|
state->exstyle = 0;
|
|
|
|
}
|
|
|
|
|
2019-07-31 22:29:49 +02:00
|
|
|
HRESULT CDECL wined3d_swapchain_state_set_fullscreen(struct wined3d_swapchain_state *state,
|
2020-03-06 14:16:48 +01:00
|
|
|
const struct wined3d_swapchain_desc *swapchain_desc, struct wined3d_output *output,
|
|
|
|
const struct wined3d_display_mode *mode)
|
2016-08-01 22:28:35 +02:00
|
|
|
{
|
2016-08-25 12:22:54 +02:00
|
|
|
struct wined3d_display_mode actual_mode;
|
2016-08-01 22:28:35 +02:00
|
|
|
HRESULT hr;
|
|
|
|
|
2020-03-06 14:16:48 +01:00
|
|
|
TRACE("state %p, swapchain_desc %p, output %p, mode %p.\n",
|
|
|
|
state, swapchain_desc, output, mode);
|
2016-08-01 22:28:35 +02:00
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
if (state->desc.flags & WINED3D_SWAPCHAIN_ALLOW_MODE_SWITCH)
|
2016-08-01 22:28:35 +02:00
|
|
|
{
|
2016-08-25 12:22:54 +02:00
|
|
|
if (mode)
|
|
|
|
{
|
|
|
|
actual_mode = *mode;
|
|
|
|
}
|
|
|
|
else
|
2016-08-03 09:41:38 +02:00
|
|
|
{
|
|
|
|
if (!swapchain_desc->windowed)
|
|
|
|
{
|
2016-08-25 12:22:54 +02:00
|
|
|
actual_mode.width = swapchain_desc->backbuffer_width;
|
|
|
|
actual_mode.height = swapchain_desc->backbuffer_height;
|
|
|
|
actual_mode.refresh_rate = swapchain_desc->refresh_rate;
|
2020-03-05 16:04:13 +01:00
|
|
|
actual_mode.format_id = adapter_format_from_backbuffer_format(output->adapter,
|
2019-03-14 16:30:12 +01:00
|
|
|
swapchain_desc->backbuffer_format);
|
2016-08-25 12:22:54 +02:00
|
|
|
actual_mode.scanline_ordering = WINED3D_SCANLINE_ORDERING_UNKNOWN;
|
2016-08-03 09:41:38 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-07-31 22:29:49 +02:00
|
|
|
actual_mode = state->original_mode;
|
2016-08-03 09:41:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-06 14:16:48 +01:00
|
|
|
if (FAILED(hr = wined3d_swapchain_state_set_display_mode(state, output, &actual_mode)))
|
2016-08-25 12:22:56 +02:00
|
|
|
return hr;
|
2016-08-03 09:41:38 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (mode)
|
|
|
|
WARN("WINED3D_SWAPCHAIN_ALLOW_MODE_SWITCH is not set, ignoring mode.\n");
|
|
|
|
|
2020-03-06 14:16:29 +01:00
|
|
|
if (FAILED(hr = wined3d_output_get_display_mode(output, &actual_mode, NULL)))
|
2016-08-01 22:28:35 +02:00
|
|
|
{
|
2016-08-03 09:41:38 +02:00
|
|
|
ERR("Failed to get display mode, hr %#x.\n", hr);
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
2016-08-01 22:28:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!swapchain_desc->windowed)
|
|
|
|
{
|
2016-08-25 12:22:54 +02:00
|
|
|
unsigned int width = actual_mode.width;
|
|
|
|
unsigned int height = actual_mode.height;
|
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
if (state->desc.windowed)
|
2016-08-01 22:28:35 +02:00
|
|
|
{
|
2016-12-13 13:10:38 +01:00
|
|
|
/* Switch from windowed to fullscreen */
|
2019-07-31 22:29:49 +02:00
|
|
|
if (FAILED(hr = wined3d_swapchain_state_setup_fullscreen(state, state->device_window, width, height)))
|
2019-06-19 23:59:48 +02:00
|
|
|
return hr;
|
2016-08-01 22:28:35 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-07-31 22:29:49 +02:00
|
|
|
HWND window = state->device_window;
|
2019-07-29 13:30:53 +02:00
|
|
|
BOOL filter;
|
2016-12-13 13:10:38 +01:00
|
|
|
|
2019-07-29 13:30:53 +02:00
|
|
|
/* Fullscreen -> fullscreen mode change */
|
|
|
|
filter = wined3d_filter_messages(window, TRUE);
|
|
|
|
MoveWindow(window, 0, 0, width, height, TRUE);
|
|
|
|
ShowWindow(window, SW_SHOW);
|
|
|
|
wined3d_filter_messages(window, filter);
|
2016-08-01 22:28:35 +02:00
|
|
|
}
|
2019-07-31 22:29:49 +02:00
|
|
|
state->d3d_mode = actual_mode;
|
2016-08-01 22:28:35 +02:00
|
|
|
}
|
2019-07-29 13:30:55 +02:00
|
|
|
else if (!state->desc.windowed)
|
2016-08-01 22:28:35 +02:00
|
|
|
{
|
|
|
|
/* Fullscreen -> windowed switch */
|
2016-12-13 13:10:38 +01:00
|
|
|
RECT *window_rect = NULL;
|
2019-07-29 13:30:55 +02:00
|
|
|
if (state->desc.flags & WINED3D_SWAPCHAIN_RESTORE_WINDOW_RECT)
|
2019-07-31 22:29:49 +02:00
|
|
|
window_rect = &state->original_window_rect;
|
2019-07-31 22:29:46 +02:00
|
|
|
wined3d_swapchain_state_restore_from_fullscreen(state, state->device_window, window_rect);
|
2016-08-01 22:28:35 +02:00
|
|
|
}
|
|
|
|
|
2019-07-29 13:30:55 +02:00
|
|
|
state->desc.windowed = swapchain_desc->windowed;
|
2016-08-01 22:28:35 +02:00
|
|
|
|
|
|
|
return WINED3D_OK;
|
|
|
|
}
|
2019-07-31 22:29:47 +02:00
|
|
|
|
|
|
|
void CDECL wined3d_swapchain_state_destroy(struct wined3d_swapchain_state *state)
|
|
|
|
{
|
|
|
|
heap_free(state);
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT CDECL wined3d_swapchain_state_create(const struct wined3d_swapchain_desc *desc,
|
2020-03-06 14:16:29 +01:00
|
|
|
HWND window, struct wined3d *wined3d, struct wined3d_swapchain_state **state)
|
2019-07-31 22:29:47 +02:00
|
|
|
{
|
|
|
|
struct wined3d_swapchain_state *s;
|
2019-07-31 22:29:49 +02:00
|
|
|
HRESULT hr;
|
|
|
|
|
2020-03-06 14:16:29 +01:00
|
|
|
TRACE("desc %p, window %p, wined3d %p, state %p.\n", desc, window, wined3d, state);
|
2019-07-31 22:29:47 +02:00
|
|
|
|
|
|
|
if (!(s = heap_alloc_zero(sizeof(*s))))
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
2020-03-06 14:16:29 +01:00
|
|
|
if (FAILED(hr = wined3d_swapchain_state_init(s, desc, window, wined3d)))
|
2019-08-05 15:30:00 +02:00
|
|
|
{
|
|
|
|
heap_free(s);
|
2019-07-31 22:29:49 +02:00
|
|
|
return hr;
|
2019-08-05 15:30:00 +02:00
|
|
|
}
|
2019-07-31 22:29:47 +02:00
|
|
|
|
|
|
|
*state = s;
|
|
|
|
|
2019-07-31 22:29:49 +02:00
|
|
|
return hr;
|
2019-07-31 22:29:47 +02:00
|
|
|
}
|