2008-10-21 15:06:58 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2008 Henri Verbeet for CodeWeavers
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_DXGI_PRIVATE_H
|
|
|
|
#define __WINE_DXGI_PRIVATE_H
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
2014-09-15 11:03:34 +02:00
|
|
|
#include <assert.h>
|
|
|
|
|
2008-10-21 15:06:58 +02:00
|
|
|
#define COBJMACROS
|
|
|
|
#include "winbase.h"
|
2008-11-17 12:16:04 +01:00
|
|
|
#include "wingdi.h"
|
2008-10-21 15:06:58 +02:00
|
|
|
#include "winuser.h"
|
|
|
|
#include "objbase.h"
|
2009-12-04 11:50:49 +01:00
|
|
|
#include "winnls.h"
|
2008-10-21 15:06:58 +02:00
|
|
|
|
2015-10-13 09:44:32 +02:00
|
|
|
#include "d3d10_1.h"
|
2008-11-17 12:16:04 +01:00
|
|
|
#ifdef DXGI_INIT_GUID
|
|
|
|
#include "initguid.h"
|
|
|
|
#endif
|
2009-01-16 10:14:24 +01:00
|
|
|
#include "wine/wined3d.h"
|
2009-01-19 10:39:05 +01:00
|
|
|
#include "wine/winedxgi.h"
|
2008-11-17 12:16:04 +01:00
|
|
|
|
2015-10-26 02:30:23 +01:00
|
|
|
enum dxgi_frame_latency
|
|
|
|
{
|
|
|
|
DXGI_FRAME_LATENCY_DEFAULT = 3,
|
|
|
|
DXGI_FRAME_LATENCY_MAX = 16,
|
|
|
|
};
|
|
|
|
|
2009-11-19 11:41:25 +01:00
|
|
|
/* Layered device */
|
|
|
|
enum dxgi_device_layer_id
|
|
|
|
{
|
|
|
|
DXGI_DEVICE_LAYER_DEBUG1 = 0x8,
|
|
|
|
DXGI_DEVICE_LAYER_THREAD_SAFE = 0x10,
|
|
|
|
DXGI_DEVICE_LAYER_DEBUG2 = 0x20,
|
|
|
|
DXGI_DEVICE_LAYER_SWITCH_TO_REF = 0x30,
|
|
|
|
DXGI_DEVICE_LAYER_D3D10_DEVICE = 0xffffffff,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct layer_get_size_args
|
|
|
|
{
|
|
|
|
DWORD unknown0;
|
|
|
|
DWORD unknown1;
|
|
|
|
DWORD *unknown2;
|
|
|
|
DWORD *unknown3;
|
|
|
|
IDXGIAdapter *adapter;
|
|
|
|
WORD interface_major;
|
|
|
|
WORD interface_minor;
|
|
|
|
WORD version_build;
|
|
|
|
WORD version_revision;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dxgi_device_layer
|
|
|
|
{
|
|
|
|
enum dxgi_device_layer_id id;
|
|
|
|
HRESULT (WINAPI *init)(enum dxgi_device_layer_id id, DWORD *count, DWORD *values);
|
|
|
|
UINT (WINAPI *get_size)(enum dxgi_device_layer_id id, struct layer_get_size_args *args, DWORD unknown0);
|
|
|
|
HRESULT (WINAPI *create)(enum dxgi_device_layer_id id, void **layer_base, DWORD unknown0,
|
|
|
|
void *device_object, REFIID riid, void **device_layer);
|
|
|
|
};
|
|
|
|
|
2008-10-23 16:37:09 +02:00
|
|
|
/* TRACE helper functions */
|
2009-09-23 10:05:53 +02:00
|
|
|
const char *debug_dxgi_format(DXGI_FORMAT format) DECLSPEC_HIDDEN;
|
2008-10-23 16:37:09 +02:00
|
|
|
|
2012-09-24 20:01:29 +02:00
|
|
|
DXGI_FORMAT dxgi_format_from_wined3dformat(enum wined3d_format_id format) DECLSPEC_HIDDEN;
|
2010-08-23 18:28:10 +02:00
|
|
|
enum wined3d_format_id wined3dformat_from_dxgi_format(DXGI_FORMAT format) DECLSPEC_HIDDEN;
|
2015-08-06 00:21:56 +02:00
|
|
|
void dxgi_sample_desc_from_wined3d(DXGI_SAMPLE_DESC *desc,
|
|
|
|
enum wined3d_multisample_type wined3d_type, unsigned int wined3d_quality) DECLSPEC_HIDDEN;
|
2015-08-06 00:21:55 +02:00
|
|
|
void wined3d_sample_desc_from_dxgi(enum wined3d_multisample_type *wined3d_type,
|
|
|
|
unsigned int *wined3d_quality, const DXGI_SAMPLE_DESC *dxgi_desc) DECLSPEC_HIDDEN;
|
2015-02-12 09:34:59 +01:00
|
|
|
HRESULT dxgi_get_private_data(struct wined3d_private_store *store,
|
|
|
|
REFGUID guid, UINT *data_size, void *data) DECLSPEC_HIDDEN;
|
2015-02-12 09:34:57 +01:00
|
|
|
HRESULT dxgi_set_private_data(struct wined3d_private_store *store,
|
|
|
|
REFGUID guid, UINT data_size, const void *data) DECLSPEC_HIDDEN;
|
2015-02-12 09:34:58 +01:00
|
|
|
HRESULT dxgi_set_private_data_interface(struct wined3d_private_store *store,
|
|
|
|
REFGUID guid, const IUnknown *object) DECLSPEC_HIDDEN;
|
2009-02-19 16:59:42 +01:00
|
|
|
|
2008-10-21 15:06:58 +02:00
|
|
|
/* IDXGIFactory */
|
|
|
|
struct dxgi_factory
|
|
|
|
{
|
2014-09-15 11:03:35 +02:00
|
|
|
IDXGIFactory1 IDXGIFactory1_iface;
|
2008-10-21 15:06:58 +02:00
|
|
|
LONG refcount;
|
2015-02-13 10:40:52 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2011-02-01 19:39:53 +01:00
|
|
|
struct wined3d *wined3d;
|
2008-11-18 09:27:58 +01:00
|
|
|
UINT adapter_count;
|
2014-09-15 11:03:34 +02:00
|
|
|
IDXGIAdapter1 **adapters;
|
2014-02-11 11:42:20 +01:00
|
|
|
BOOL extended;
|
2014-09-15 11:03:36 +02:00
|
|
|
HWND device_window;
|
2008-10-21 15:06:58 +02:00
|
|
|
};
|
|
|
|
|
2014-02-11 11:42:20 +01:00
|
|
|
HRESULT dxgi_factory_create(REFIID riid, void **factory, BOOL extended) DECLSPEC_HIDDEN;
|
2014-09-15 11:03:36 +02:00
|
|
|
HWND dxgi_factory_get_device_window(struct dxgi_factory *factory) DECLSPEC_HIDDEN;
|
2014-09-15 11:03:35 +02:00
|
|
|
struct dxgi_factory *unsafe_impl_from_IDXGIFactory1(IDXGIFactory1 *iface) DECLSPEC_HIDDEN;
|
2009-12-29 17:10:23 +01:00
|
|
|
|
2008-10-22 17:41:16 +02:00
|
|
|
/* IDXGIDevice */
|
|
|
|
struct dxgi_device
|
|
|
|
{
|
2011-06-07 10:00:30 +02:00
|
|
|
IWineDXGIDevice IWineDXGIDevice_iface;
|
2008-11-14 13:57:06 +01:00
|
|
|
IUnknown *child_layer;
|
2008-10-22 17:41:16 +02:00
|
|
|
LONG refcount;
|
2015-02-12 09:34:57 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2011-05-16 23:01:22 +02:00
|
|
|
struct wined3d_device *wined3d_device;
|
2014-09-15 11:03:35 +02:00
|
|
|
IDXGIFactory1 *factory;
|
2008-10-22 17:41:16 +02:00
|
|
|
};
|
|
|
|
|
2009-11-19 11:41:25 +01:00
|
|
|
HRESULT dxgi_device_init(struct dxgi_device *device, struct dxgi_device_layer *layer,
|
|
|
|
IDXGIFactory *factory, IDXGIAdapter *adapter) DECLSPEC_HIDDEN;
|
|
|
|
|
2009-09-11 19:01:14 +02:00
|
|
|
/* IDXGIOutput */
|
|
|
|
struct dxgi_output
|
|
|
|
{
|
2011-06-06 10:21:49 +02:00
|
|
|
IDXGIOutput IDXGIOutput_iface;
|
2009-09-11 19:01:14 +02:00
|
|
|
LONG refcount;
|
2015-02-16 12:25:52 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2009-12-03 11:38:19 +01:00
|
|
|
struct dxgi_adapter *adapter;
|
2009-09-11 19:01:14 +02:00
|
|
|
};
|
|
|
|
|
2009-12-03 11:38:19 +01:00
|
|
|
void dxgi_output_init(struct dxgi_output *output, struct dxgi_adapter *adapter) DECLSPEC_HIDDEN;
|
2009-09-11 19:01:14 +02:00
|
|
|
|
2008-10-29 09:00:26 +01:00
|
|
|
/* IDXGIAdapter */
|
|
|
|
struct dxgi_adapter
|
|
|
|
{
|
2014-09-15 11:03:34 +02:00
|
|
|
IDXGIAdapter1 IDXGIAdapter1_iface;
|
2014-09-15 11:03:35 +02:00
|
|
|
struct dxgi_factory *parent;
|
2008-10-29 09:00:26 +01:00
|
|
|
LONG refcount;
|
2015-02-13 10:40:49 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2008-11-17 12:16:04 +01:00
|
|
|
UINT ordinal;
|
2009-09-11 19:01:14 +02:00
|
|
|
IDXGIOutput *output;
|
2008-10-29 09:00:26 +01:00
|
|
|
};
|
|
|
|
|
2014-09-15 11:03:35 +02:00
|
|
|
HRESULT dxgi_adapter_init(struct dxgi_adapter *adapter, struct dxgi_factory *parent, UINT ordinal) DECLSPEC_HIDDEN;
|
2014-09-15 11:03:34 +02:00
|
|
|
struct dxgi_adapter *unsafe_impl_from_IDXGIAdapter1(IDXGIAdapter1 *iface) DECLSPEC_HIDDEN;
|
2009-09-10 16:57:19 +02:00
|
|
|
|
2008-10-29 09:00:26 +01:00
|
|
|
/* IDXGISwapChain */
|
|
|
|
struct dxgi_swapchain
|
|
|
|
{
|
2011-06-06 10:25:49 +02:00
|
|
|
IDXGISwapChain IDXGISwapChain_iface;
|
2008-10-29 09:00:26 +01:00
|
|
|
LONG refcount;
|
2015-02-17 10:15:40 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2011-04-13 19:14:31 +02:00
|
|
|
struct wined3d_swapchain *wined3d_swapchain;
|
2008-10-29 09:00:26 +01:00
|
|
|
};
|
|
|
|
|
2009-12-28 17:38:05 +01:00
|
|
|
HRESULT dxgi_swapchain_init(struct dxgi_swapchain *swapchain, struct dxgi_device *device,
|
2011-12-02 08:15:52 +01:00
|
|
|
struct wined3d_swapchain_desc *desc) DECLSPEC_HIDDEN;
|
2009-12-28 17:38:05 +01:00
|
|
|
|
2009-01-15 09:58:44 +01:00
|
|
|
/* IDXGISurface */
|
|
|
|
struct dxgi_surface
|
|
|
|
{
|
2011-06-07 10:11:55 +02:00
|
|
|
IDXGISurface IDXGISurface_iface;
|
2012-04-19 20:44:59 +02:00
|
|
|
IUnknown IUnknown_iface;
|
2009-01-19 10:39:06 +01:00
|
|
|
IUnknown *outer_unknown;
|
2009-01-15 09:58:44 +01:00
|
|
|
LONG refcount;
|
2015-02-17 10:15:37 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2009-12-07 11:08:39 +01:00
|
|
|
IDXGIDevice *device;
|
2015-08-06 00:21:57 +02:00
|
|
|
struct wined3d_resource *wined3d_resource;
|
2009-01-15 09:58:44 +01:00
|
|
|
};
|
|
|
|
|
2014-07-22 08:44:20 +02:00
|
|
|
HRESULT dxgi_surface_init(struct dxgi_surface *surface, IDXGIDevice *device,
|
2015-08-06 00:21:57 +02:00
|
|
|
IUnknown *outer, struct wined3d_resource *wined3d_resource) DECLSPEC_HIDDEN;
|
2009-12-07 11:08:38 +01:00
|
|
|
|
2015-10-13 09:44:32 +02:00
|
|
|
HRESULT dxgi_check_d3d10_support(struct dxgi_factory *factory, struct dxgi_adapter *adapter) DECLSPEC_HIDDEN;
|
|
|
|
|
2008-10-21 15:06:58 +02:00
|
|
|
#endif /* __WINE_DXGI_PRIVATE_H */
|