2008-11-12 12:04:24 +01:00
|
|
|
/*
|
2009-03-30 11:24:55 +02:00
|
|
|
* Copyright 2008-2009 Henri Verbeet for CodeWeavers
|
2008-11-12 12:04:24 +01: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.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2015-08-21 00:07:53 +02:00
|
|
|
#ifndef __WINE_D3D11_PRIVATE_H
|
|
|
|
#define __WINE_D3D11_PRIVATE_H
|
2008-11-12 12:04:24 +01:00
|
|
|
|
|
|
|
#include "wine/debug.h"
|
2018-02-04 14:50:57 +01:00
|
|
|
#include "wine/heap.h"
|
2008-11-12 12:04:24 +01:00
|
|
|
|
2012-04-15 18:57:11 +02:00
|
|
|
#include <assert.h>
|
|
|
|
|
2008-11-12 15:43:46 +01:00
|
|
|
#define COBJMACROS
|
2008-11-12 12:04:24 +01:00
|
|
|
#include "winbase.h"
|
2009-01-16 10:14:24 +01:00
|
|
|
#include "wingdi.h"
|
2008-11-12 15:43:46 +01:00
|
|
|
#include "winuser.h"
|
|
|
|
#include "objbase.h"
|
|
|
|
|
2018-10-24 07:22:02 +02:00
|
|
|
#include "dxgi1_6.h"
|
2018-01-26 22:09:05 +01:00
|
|
|
#include "d3d11_4.h"
|
2015-08-21 00:07:53 +02:00
|
|
|
#ifdef D3D11_INIT_GUID
|
2009-01-16 10:14:24 +01:00
|
|
|
#include "initguid.h"
|
|
|
|
#endif
|
|
|
|
#include "wine/wined3d.h"
|
2009-01-19 10:39:05 +01:00
|
|
|
#include "wine/winedxgi.h"
|
2012-12-11 22:27:31 +01:00
|
|
|
#include "wine/rbtree.h"
|
2008-11-12 15:43:46 +01:00
|
|
|
|
2009-03-30 11:24:54 +02:00
|
|
|
#define MAKE_TAG(ch0, ch1, ch2, ch3) \
|
|
|
|
((DWORD)(ch0) | ((DWORD)(ch1) << 8) | \
|
|
|
|
((DWORD)(ch2) << 16) | ((DWORD)(ch3) << 24 ))
|
2018-04-27 14:52:43 +02:00
|
|
|
#define TAG_AON9 MAKE_TAG('A', 'o', 'n', '9')
|
2009-03-30 11:24:54 +02:00
|
|
|
#define TAG_DXBC MAKE_TAG('D', 'X', 'B', 'C')
|
2009-03-30 11:24:55 +02:00
|
|
|
#define TAG_ISGN MAKE_TAG('I', 'S', 'G', 'N')
|
2017-04-06 11:47:47 +02:00
|
|
|
#define TAG_OSG5 MAKE_TAG('O', 'S', 'G', '5')
|
2018-04-27 14:52:43 +02:00
|
|
|
#define TAG_OSGN MAKE_TAG('O', 'S', 'G', 'N')
|
2017-05-12 15:09:17 +02:00
|
|
|
#define TAG_PCSG MAKE_TAG('P', 'C', 'S', 'G')
|
2009-04-27 09:37:14 +02:00
|
|
|
#define TAG_SHDR MAKE_TAG('S', 'H', 'D', 'R')
|
2016-02-12 01:27:44 +01:00
|
|
|
#define TAG_SHEX MAKE_TAG('S', 'H', 'E', 'X')
|
2009-03-30 11:24:54 +02:00
|
|
|
|
2015-08-21 00:07:56 +02:00
|
|
|
struct d3d_device;
|
2012-10-01 22:48:09 +02:00
|
|
|
|
2008-11-12 15:43:46 +01:00
|
|
|
/* TRACE helper functions */
|
2009-09-20 20:09:27 +02:00
|
|
|
const char *debug_d3d10_primitive_topology(D3D10_PRIMITIVE_TOPOLOGY topology) DECLSPEC_HIDDEN;
|
|
|
|
const char *debug_dxgi_format(DXGI_FORMAT format) DECLSPEC_HIDDEN;
|
2016-03-16 10:02:40 +01:00
|
|
|
const char *debug_float4(const float *values) DECLSPEC_HIDDEN;
|
2008-11-12 15:43:46 +01:00
|
|
|
|
2010-08-23 18:28:10 +02:00
|
|
|
DXGI_FORMAT dxgi_format_from_wined3dformat(enum wined3d_format_id format) DECLSPEC_HIDDEN;
|
|
|
|
enum wined3d_format_id wined3dformat_from_dxgi_format(DXGI_FORMAT format) DECLSPEC_HIDDEN;
|
2017-05-18 15:20:01 +02:00
|
|
|
void d3d11_primitive_topology_from_wined3d_primitive_type(enum wined3d_primitive_type primitive_type,
|
|
|
|
unsigned int patch_vertex_count, D3D11_PRIMITIVE_TOPOLOGY *topology) DECLSPEC_HIDDEN;
|
|
|
|
void wined3d_primitive_type_from_d3d11_primitive_topology(D3D11_PRIMITIVE_TOPOLOGY topology,
|
|
|
|
enum wined3d_primitive_type *type, unsigned int *patch_vertex_count) DECLSPEC_HIDDEN;
|
2016-07-06 12:02:31 +02:00
|
|
|
unsigned int wined3d_getdata_flags_from_d3d11_async_getdata_flags(unsigned int d3d11_flags) DECLSPEC_HIDDEN;
|
2018-11-06 11:12:59 +01:00
|
|
|
DWORD wined3d_usage_from_d3d11(enum D3D11_USAGE usage) DECLSPEC_HIDDEN;
|
2015-09-08 01:12:45 +02:00
|
|
|
struct wined3d_resource *wined3d_resource_from_d3d11_resource(ID3D11Resource *resource) DECLSPEC_HIDDEN;
|
2015-09-08 01:12:44 +02:00
|
|
|
struct wined3d_resource *wined3d_resource_from_d3d10_resource(ID3D10Resource *resource) DECLSPEC_HIDDEN;
|
2015-11-02 17:12:28 +01:00
|
|
|
DWORD wined3d_map_flags_from_d3d11_map_type(D3D11_MAP map_type) DECLSPEC_HIDDEN;
|
2016-03-15 10:52:50 +01:00
|
|
|
DWORD wined3d_clear_flags_from_d3d11_clear_flags(UINT clear_flags) DECLSPEC_HIDDEN;
|
2018-02-16 07:09:04 +01:00
|
|
|
unsigned int wined3d_access_from_d3d11(D3D11_USAGE usage, UINT cpu_access) DECLSPEC_HIDDEN;
|
2009-02-19 16:59:42 +01:00
|
|
|
|
2015-08-28 00:39:15 +02:00
|
|
|
enum D3D11_USAGE d3d11_usage_from_d3d10_usage(enum D3D10_USAGE usage) DECLSPEC_HIDDEN;
|
|
|
|
enum D3D10_USAGE d3d10_usage_from_d3d11_usage(enum D3D11_USAGE usage) DECLSPEC_HIDDEN;
|
|
|
|
UINT d3d11_bind_flags_from_d3d10_bind_flags(UINT bind_flags) DECLSPEC_HIDDEN;
|
|
|
|
UINT d3d10_bind_flags_from_d3d11_bind_flags(UINT bind_flags) DECLSPEC_HIDDEN;
|
|
|
|
UINT d3d11_cpu_access_flags_from_d3d10_cpu_access_flags(UINT cpu_access_flags) DECLSPEC_HIDDEN;
|
|
|
|
UINT d3d10_cpu_access_flags_from_d3d11_cpu_access_flags(UINT cpu_access_flags) DECLSPEC_HIDDEN;
|
|
|
|
UINT d3d11_resource_misc_flags_from_d3d10_resource_misc_flags(UINT resource_misc_flags) DECLSPEC_HIDDEN;
|
|
|
|
UINT d3d10_resource_misc_flags_from_d3d11_resource_misc_flags(UINT resource_misc_flags) DECLSPEC_HIDDEN;
|
|
|
|
|
2018-02-01 09:50:31 +01:00
|
|
|
BOOL validate_d3d11_resource_access_flags(D3D11_RESOURCE_DIMENSION resource_dimension,
|
|
|
|
D3D11_USAGE usage, UINT bind_flags, UINT cpu_access_flags,
|
|
|
|
D3D_FEATURE_LEVEL feature_level) DECLSPEC_HIDDEN;
|
|
|
|
|
2015-09-03 00:06:50 +02:00
|
|
|
HRESULT d3d_get_private_data(struct wined3d_private_store *store,
|
2015-02-23 17:59:44 +01:00
|
|
|
REFGUID guid, UINT *data_size, void *data) DECLSPEC_HIDDEN;
|
2015-09-03 00:06:50 +02:00
|
|
|
HRESULT d3d_set_private_data(struct wined3d_private_store *store,
|
2015-02-23 17:59:42 +01:00
|
|
|
REFGUID guid, UINT data_size, const void *data) DECLSPEC_HIDDEN;
|
2015-09-03 00:06:50 +02:00
|
|
|
HRESULT d3d_set_private_data_interface(struct wined3d_private_store *store,
|
2015-02-23 17:59:43 +01:00
|
|
|
REFGUID guid, const IUnknown *object) DECLSPEC_HIDDEN;
|
2015-02-23 17:59:42 +01:00
|
|
|
|
2019-12-12 18:33:04 +01:00
|
|
|
static inline unsigned int wined3d_bind_flags_from_d3d11(UINT bind_flags, UINT misc_flags)
|
2018-10-31 10:31:47 +01:00
|
|
|
{
|
2019-12-12 18:33:04 +01:00
|
|
|
unsigned int wined3d_flags = bind_flags & (D3D11_BIND_VERTEX_BUFFER
|
|
|
|
| D3D11_BIND_INDEX_BUFFER
|
|
|
|
| D3D11_BIND_CONSTANT_BUFFER
|
|
|
|
| D3D11_BIND_SHADER_RESOURCE
|
|
|
|
| D3D11_BIND_STREAM_OUTPUT
|
|
|
|
| D3D11_BIND_RENDER_TARGET
|
|
|
|
| D3D11_BIND_DEPTH_STENCIL
|
|
|
|
| D3D11_BIND_UNORDERED_ACCESS);
|
|
|
|
|
|
|
|
if (misc_flags & D3D11_RESOURCE_MISC_DRAWINDIRECT_ARGS)
|
|
|
|
wined3d_flags |= WINED3D_BIND_INDIRECT_BUFFER;
|
|
|
|
|
|
|
|
return wined3d_flags;
|
2018-10-31 10:31:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline UINT d3d11_bind_flags_from_wined3d(unsigned int bind_flags)
|
|
|
|
{
|
2019-12-12 18:33:04 +01:00
|
|
|
return bind_flags & (WINED3D_BIND_VERTEX_BUFFER
|
|
|
|
| WINED3D_BIND_INDEX_BUFFER
|
|
|
|
| WINED3D_BIND_CONSTANT_BUFFER
|
|
|
|
| WINED3D_BIND_SHADER_RESOURCE
|
|
|
|
| WINED3D_BIND_STREAM_OUTPUT
|
|
|
|
| WINED3D_BIND_RENDER_TARGET
|
|
|
|
| WINED3D_BIND_DEPTH_STENCIL
|
|
|
|
| WINED3D_BIND_UNORDERED_ACCESS);
|
2018-10-31 10:31:47 +01:00
|
|
|
}
|
|
|
|
|
2018-04-02 22:58:21 +02:00
|
|
|
/* ID3D11Texture1D, ID3D10Texture1D */
|
|
|
|
struct d3d_texture1d
|
|
|
|
{
|
|
|
|
ID3D11Texture1D ID3D11Texture1D_iface;
|
|
|
|
ID3D10Texture1D ID3D10Texture1D_iface;
|
|
|
|
LONG refcount;
|
|
|
|
|
|
|
|
struct wined3d_private_store private_store;
|
2018-04-02 22:58:25 +02:00
|
|
|
IUnknown *dxgi_surface;
|
2018-04-02 22:58:24 +02:00
|
|
|
struct wined3d_texture *wined3d_texture;
|
2018-04-02 22:58:21 +02:00
|
|
|
D3D11_TEXTURE1D_DESC desc;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2018-04-02 22:58:21 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
HRESULT d3d_texture1d_create(struct d3d_device *device, const D3D11_TEXTURE1D_DESC *desc,
|
|
|
|
const D3D11_SUBRESOURCE_DATA *data, struct d3d_texture1d **texture) DECLSPEC_HIDDEN;
|
2018-04-02 22:58:24 +02:00
|
|
|
struct d3d_texture1d *unsafe_impl_from_ID3D11Texture1D(ID3D11Texture1D *iface) DECLSPEC_HIDDEN;
|
|
|
|
struct d3d_texture1d *unsafe_impl_from_ID3D10Texture1D(ID3D10Texture1D *iface) DECLSPEC_HIDDEN;
|
2018-04-02 22:58:21 +02:00
|
|
|
|
2015-08-28 00:39:15 +02:00
|
|
|
/* ID3D11Texture2D, ID3D10Texture2D */
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d
|
2009-01-15 09:58:44 +01:00
|
|
|
{
|
2015-08-26 00:56:04 +02:00
|
|
|
ID3D11Texture2D ID3D11Texture2D_iface;
|
2011-06-01 10:12:44 +02:00
|
|
|
ID3D10Texture2D ID3D10Texture2D_iface;
|
2009-01-15 09:58:44 +01:00
|
|
|
LONG refcount;
|
2009-01-19 10:39:05 +01:00
|
|
|
|
2015-02-23 17:59:42 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2009-01-19 10:39:06 +01:00
|
|
|
IUnknown *dxgi_surface;
|
2012-07-12 13:44:21 +02:00
|
|
|
struct wined3d_texture *wined3d_texture;
|
2015-08-28 00:39:15 +02:00
|
|
|
D3D11_TEXTURE2D_DESC desc;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2009-01-15 09:58:44 +01:00
|
|
|
};
|
|
|
|
|
2018-01-22 14:11:51 +01:00
|
|
|
static inline struct d3d_texture2d *impl_from_ID3D11Texture2D(ID3D11Texture2D *iface)
|
2015-08-26 00:56:04 +02:00
|
|
|
{
|
2018-01-22 14:11:51 +01:00
|
|
|
return CONTAINING_RECORD(iface, struct d3d_texture2d, ID3D11Texture2D_iface);
|
2015-08-26 00:56:04 +02:00
|
|
|
}
|
|
|
|
|
2015-08-30 22:44:42 +02:00
|
|
|
HRESULT d3d_texture2d_create(struct d3d_device *device, const D3D11_TEXTURE2D_DESC *desc,
|
2015-08-30 22:44:45 +02:00
|
|
|
const D3D11_SUBRESOURCE_DATA *data, struct d3d_texture2d **texture) DECLSPEC_HIDDEN;
|
2015-09-08 01:12:45 +02:00
|
|
|
struct d3d_texture2d *unsafe_impl_from_ID3D11Texture2D(ID3D11Texture2D *iface) DECLSPEC_HIDDEN;
|
2015-08-30 22:44:45 +02:00
|
|
|
struct d3d_texture2d *unsafe_impl_from_ID3D10Texture2D(ID3D10Texture2D *iface) DECLSPEC_HIDDEN;
|
2009-09-11 19:01:15 +02:00
|
|
|
|
2015-09-01 00:27:33 +02:00
|
|
|
/* ID3D11Texture3D, ID3D10Texture3D */
|
2015-09-01 00:27:32 +02:00
|
|
|
struct d3d_texture3d
|
2010-10-14 13:04:01 +02:00
|
|
|
{
|
2015-09-01 00:27:33 +02:00
|
|
|
ID3D11Texture3D ID3D11Texture3D_iface;
|
2011-06-01 10:16:55 +02:00
|
|
|
ID3D10Texture3D ID3D10Texture3D_iface;
|
2010-10-14 13:04:01 +02:00
|
|
|
LONG refcount;
|
|
|
|
|
2015-03-11 11:13:51 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2011-03-18 19:10:59 +01:00
|
|
|
struct wined3d_texture *wined3d_texture;
|
2015-09-01 00:27:35 +02:00
|
|
|
D3D11_TEXTURE3D_DESC desc;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2010-10-14 13:04:01 +02:00
|
|
|
};
|
|
|
|
|
2015-09-01 00:27:36 +02:00
|
|
|
HRESULT d3d_texture3d_create(struct d3d_device *device, const D3D11_TEXTURE3D_DESC *desc,
|
|
|
|
const D3D11_SUBRESOURCE_DATA *data, struct d3d_texture3d **texture) DECLSPEC_HIDDEN;
|
2015-11-04 23:37:12 +01:00
|
|
|
struct d3d_texture3d *unsafe_impl_from_ID3D11Texture3D(ID3D11Texture3D *iface) DECLSPEC_HIDDEN;
|
2018-01-10 17:26:33 +01:00
|
|
|
struct d3d_texture3d *unsafe_impl_from_ID3D10Texture3D(ID3D10Texture3D *iface) DECLSPEC_HIDDEN;
|
2010-10-14 13:04:01 +02:00
|
|
|
|
2015-09-03 00:06:53 +02:00
|
|
|
/* ID3D11Buffer, ID3D10Buffer */
|
2015-09-03 00:06:52 +02:00
|
|
|
struct d3d_buffer
|
2009-01-23 10:22:34 +01:00
|
|
|
{
|
2015-09-03 00:06:53 +02:00
|
|
|
ID3D11Buffer ID3D11Buffer_iface;
|
2012-04-15 18:57:11 +02:00
|
|
|
ID3D10Buffer ID3D10Buffer_iface;
|
2009-01-23 10:22:34 +01:00
|
|
|
LONG refcount;
|
2009-02-23 09:16:02 +01:00
|
|
|
|
2015-02-23 17:59:48 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2011-03-03 21:49:09 +01:00
|
|
|
struct wined3d_buffer *wined3d_buffer;
|
2015-09-06 16:45:46 +02:00
|
|
|
D3D11_BUFFER_DESC desc;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2009-01-23 10:22:34 +01:00
|
|
|
};
|
|
|
|
|
2015-09-06 16:45:48 +02:00
|
|
|
HRESULT d3d_buffer_create(struct d3d_device *device, const D3D11_BUFFER_DESC *desc,
|
|
|
|
const D3D11_SUBRESOURCE_DATA *data, struct d3d_buffer **buffer) DECLSPEC_HIDDEN;
|
2015-09-08 01:12:45 +02:00
|
|
|
struct d3d_buffer *unsafe_impl_from_ID3D11Buffer(ID3D11Buffer *iface) DECLSPEC_HIDDEN;
|
2015-09-03 00:06:52 +02:00
|
|
|
struct d3d_buffer *unsafe_impl_from_ID3D10Buffer(ID3D10Buffer *iface) DECLSPEC_HIDDEN;
|
2009-09-17 23:03:27 +02:00
|
|
|
|
2015-09-08 01:12:42 +02:00
|
|
|
/* ID3D11DepthStencilView, ID3D10DepthStencilView */
|
2015-09-08 01:12:41 +02:00
|
|
|
struct d3d_depthstencil_view
|
2009-10-30 20:11:32 +01:00
|
|
|
{
|
2015-09-08 01:12:42 +02:00
|
|
|
ID3D11DepthStencilView ID3D11DepthStencilView_iface;
|
2011-06-01 10:37:49 +02:00
|
|
|
ID3D10DepthStencilView ID3D10DepthStencilView_iface;
|
2009-10-30 20:11:32 +01:00
|
|
|
LONG refcount;
|
2012-09-11 00:27:01 +02:00
|
|
|
|
2015-03-11 11:13:54 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2014-08-22 12:32:03 +02:00
|
|
|
struct wined3d_rendertarget_view *wined3d_view;
|
2015-09-08 01:12:46 +02:00
|
|
|
D3D11_DEPTH_STENCIL_VIEW_DESC desc;
|
2015-09-08 01:12:45 +02:00
|
|
|
ID3D11Resource *resource;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2009-10-30 20:11:32 +01:00
|
|
|
};
|
|
|
|
|
2015-09-08 01:12:47 +02:00
|
|
|
HRESULT d3d_depthstencil_view_create(struct d3d_device *device, ID3D11Resource *resource,
|
|
|
|
const D3D11_DEPTH_STENCIL_VIEW_DESC *desc, struct d3d_depthstencil_view **view) DECLSPEC_HIDDEN;
|
2015-11-04 23:37:15 +01:00
|
|
|
struct d3d_depthstencil_view *unsafe_impl_from_ID3D11DepthStencilView(ID3D11DepthStencilView *iface) DECLSPEC_HIDDEN;
|
2015-09-08 01:12:41 +02:00
|
|
|
struct d3d_depthstencil_view *unsafe_impl_from_ID3D10DepthStencilView(ID3D10DepthStencilView *iface) DECLSPEC_HIDDEN;
|
2009-10-30 20:11:32 +01:00
|
|
|
|
2015-09-09 01:35:42 +02:00
|
|
|
/* ID3D11RenderTargetView, ID3D10RenderTargetView */
|
2015-09-09 01:35:41 +02:00
|
|
|
struct d3d_rendertarget_view
|
2009-01-23 10:22:34 +01:00
|
|
|
{
|
2015-09-09 01:35:42 +02:00
|
|
|
ID3D11RenderTargetView ID3D11RenderTargetView_iface;
|
2011-07-12 12:37:59 +02:00
|
|
|
ID3D10RenderTargetView ID3D10RenderTargetView_iface;
|
2009-01-23 10:22:34 +01:00
|
|
|
LONG refcount;
|
|
|
|
|
2015-03-12 10:08:34 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2011-04-05 19:01:32 +02:00
|
|
|
struct wined3d_rendertarget_view *wined3d_view;
|
2015-09-09 01:35:44 +02:00
|
|
|
D3D11_RENDER_TARGET_VIEW_DESC desc;
|
2015-09-09 01:35:43 +02:00
|
|
|
ID3D11Resource *resource;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2009-01-23 10:22:34 +01:00
|
|
|
};
|
|
|
|
|
2015-09-09 01:35:45 +02:00
|
|
|
HRESULT d3d_rendertarget_view_create(struct d3d_device *device, ID3D11Resource *resource,
|
|
|
|
const D3D11_RENDER_TARGET_VIEW_DESC *desc, struct d3d_rendertarget_view **view) DECLSPEC_HIDDEN;
|
2015-10-14 02:08:15 +02:00
|
|
|
struct d3d_rendertarget_view *unsafe_impl_from_ID3D11RenderTargetView(ID3D11RenderTargetView *iface) DECLSPEC_HIDDEN;
|
2015-09-09 01:35:41 +02:00
|
|
|
struct d3d_rendertarget_view *unsafe_impl_from_ID3D10RenderTargetView(ID3D10RenderTargetView *iface) DECLSPEC_HIDDEN;
|
2009-10-29 18:56:23 +01:00
|
|
|
|
2015-10-19 01:41:58 +02:00
|
|
|
/* ID3D11ShaderResourceView, ID3D10ShaderResourceView1 */
|
2015-09-10 00:55:42 +02:00
|
|
|
struct d3d_shader_resource_view
|
2009-10-30 20:11:33 +01:00
|
|
|
{
|
2015-09-10 00:55:43 +02:00
|
|
|
ID3D11ShaderResourceView ID3D11ShaderResourceView_iface;
|
2015-10-19 01:41:58 +02:00
|
|
|
ID3D10ShaderResourceView1 ID3D10ShaderResourceView1_iface;
|
2009-10-30 20:11:33 +01:00
|
|
|
LONG refcount;
|
2012-09-12 11:30:51 +02:00
|
|
|
|
2015-03-13 09:49:24 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2014-09-16 10:44:15 +02:00
|
|
|
struct wined3d_shader_resource_view *wined3d_view;
|
2015-09-10 00:55:45 +02:00
|
|
|
D3D11_SHADER_RESOURCE_VIEW_DESC desc;
|
2015-09-10 00:55:46 +02:00
|
|
|
ID3D11Resource *resource;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2009-10-30 20:11:33 +01:00
|
|
|
};
|
|
|
|
|
2015-09-10 00:55:47 +02:00
|
|
|
HRESULT d3d_shader_resource_view_create(struct d3d_device *device, ID3D11Resource *resource,
|
|
|
|
const D3D11_SHADER_RESOURCE_VIEW_DESC *desc, struct d3d_shader_resource_view **view) DECLSPEC_HIDDEN;
|
2015-11-06 18:38:11 +01:00
|
|
|
struct d3d_shader_resource_view *unsafe_impl_from_ID3D11ShaderResourceView(
|
|
|
|
ID3D11ShaderResourceView *iface) DECLSPEC_HIDDEN;
|
2015-09-10 00:55:42 +02:00
|
|
|
struct d3d_shader_resource_view *unsafe_impl_from_ID3D10ShaderResourceView(
|
2014-09-16 10:44:16 +02:00
|
|
|
ID3D10ShaderResourceView *iface) DECLSPEC_HIDDEN;
|
2009-10-30 20:11:33 +01:00
|
|
|
|
2016-07-04 12:26:22 +02:00
|
|
|
/* ID3D11UnorderedAccessView */
|
|
|
|
struct d3d11_unordered_access_view
|
|
|
|
{
|
|
|
|
ID3D11UnorderedAccessView ID3D11UnorderedAccessView_iface;
|
|
|
|
LONG refcount;
|
|
|
|
|
|
|
|
struct wined3d_private_store private_store;
|
|
|
|
struct wined3d_unordered_access_view *wined3d_view;
|
|
|
|
D3D11_UNORDERED_ACCESS_VIEW_DESC desc;
|
|
|
|
ID3D11Resource *resource;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2016-07-04 12:26:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
HRESULT d3d11_unordered_access_view_create(struct d3d_device *device, ID3D11Resource *resource,
|
|
|
|
const D3D11_UNORDERED_ACCESS_VIEW_DESC *desc, struct d3d11_unordered_access_view **view) DECLSPEC_HIDDEN;
|
2016-11-23 14:36:06 +01:00
|
|
|
struct d3d11_unordered_access_view *unsafe_impl_from_ID3D11UnorderedAccessView(
|
|
|
|
ID3D11UnorderedAccessView *iface) DECLSPEC_HIDDEN;
|
2016-07-04 12:26:22 +02:00
|
|
|
|
2015-09-15 01:37:43 +02:00
|
|
|
/* ID3D11InputLayout, ID3D10InputLayout */
|
2015-09-15 01:37:42 +02:00
|
|
|
struct d3d_input_layout
|
2009-03-04 07:07:38 +01:00
|
|
|
{
|
2015-09-15 01:37:43 +02:00
|
|
|
ID3D11InputLayout ID3D11InputLayout_iface;
|
2011-07-12 12:51:54 +02:00
|
|
|
ID3D10InputLayout ID3D10InputLayout_iface;
|
2009-03-04 07:07:38 +01:00
|
|
|
LONG refcount;
|
2009-03-30 11:24:55 +02:00
|
|
|
|
2015-02-25 09:34:08 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2011-02-02 20:22:50 +01:00
|
|
|
struct wined3d_vertex_declaration *wined3d_decl;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2009-03-04 07:07:38 +01:00
|
|
|
};
|
|
|
|
|
2015-09-15 01:37:44 +02:00
|
|
|
HRESULT d3d_input_layout_create(struct d3d_device *device,
|
|
|
|
const D3D11_INPUT_ELEMENT_DESC *element_descs, UINT element_count,
|
|
|
|
const void *shader_byte_code, SIZE_T shader_byte_code_length,
|
|
|
|
struct d3d_input_layout **layout) DECLSPEC_HIDDEN;
|
2015-10-14 02:08:12 +02:00
|
|
|
struct d3d_input_layout *unsafe_impl_from_ID3D11InputLayout(ID3D11InputLayout *iface) DECLSPEC_HIDDEN;
|
2015-09-15 01:37:42 +02:00
|
|
|
struct d3d_input_layout *unsafe_impl_from_ID3D10InputLayout(ID3D10InputLayout *iface) DECLSPEC_HIDDEN;
|
2009-03-30 11:24:55 +02:00
|
|
|
|
2015-09-16 01:30:10 +02:00
|
|
|
/* ID3D11VertexShader, ID3D10VertexShader */
|
2015-09-16 01:30:09 +02:00
|
|
|
struct d3d_vertex_shader
|
2009-03-04 07:07:38 +01:00
|
|
|
{
|
2015-09-16 01:30:10 +02:00
|
|
|
ID3D11VertexShader ID3D11VertexShader_iface;
|
2011-07-12 01:54:04 +02:00
|
|
|
ID3D10VertexShader ID3D10VertexShader_iface;
|
2009-03-04 07:07:38 +01:00
|
|
|
LONG refcount;
|
2009-05-26 09:15:12 +02:00
|
|
|
|
2015-02-26 10:11:31 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2011-03-30 20:49:25 +02:00
|
|
|
struct wined3d_shader *wined3d_shader;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2009-03-04 07:07:38 +01:00
|
|
|
};
|
|
|
|
|
2015-09-16 01:30:11 +02:00
|
|
|
HRESULT d3d_vertex_shader_create(struct d3d_device *device, const void *byte_code, SIZE_T byte_code_length,
|
|
|
|
struct d3d_vertex_shader **shader) DECLSPEC_HIDDEN;
|
2015-10-14 02:08:13 +02:00
|
|
|
struct d3d_vertex_shader *unsafe_impl_from_ID3D11VertexShader(ID3D11VertexShader *iface) DECLSPEC_HIDDEN;
|
2015-09-16 01:30:09 +02:00
|
|
|
struct d3d_vertex_shader *unsafe_impl_from_ID3D10VertexShader(ID3D10VertexShader *iface) DECLSPEC_HIDDEN;
|
2009-09-23 18:42:05 +02:00
|
|
|
|
2016-03-29 12:14:52 +02:00
|
|
|
/* ID3D11HullShader */
|
|
|
|
struct d3d11_hull_shader
|
|
|
|
{
|
|
|
|
ID3D11HullShader ID3D11HullShader_iface;
|
|
|
|
LONG refcount;
|
|
|
|
|
|
|
|
struct wined3d_private_store private_store;
|
2016-03-29 12:14:54 +02:00
|
|
|
struct wined3d_shader *wined3d_shader;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2016-03-29 12:14:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
HRESULT d3d11_hull_shader_create(struct d3d_device *device, const void *byte_code, SIZE_T byte_code_length,
|
|
|
|
struct d3d11_hull_shader **shader) DECLSPEC_HIDDEN;
|
2017-04-20 11:04:14 +02:00
|
|
|
struct d3d11_hull_shader *unsafe_impl_from_ID3D11HullShader(ID3D11HullShader *iface) DECLSPEC_HIDDEN;
|
2016-03-29 12:14:52 +02:00
|
|
|
|
2016-04-01 11:21:42 +02:00
|
|
|
/* ID3D11DomainShader */
|
|
|
|
struct d3d11_domain_shader
|
|
|
|
{
|
|
|
|
ID3D11DomainShader ID3D11DomainShader_iface;
|
|
|
|
LONG refcount;
|
|
|
|
|
|
|
|
struct wined3d_private_store private_store;
|
|
|
|
struct wined3d_shader *wined3d_shader;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2016-04-01 11:21:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
HRESULT d3d11_domain_shader_create(struct d3d_device *device, const void *byte_code, SIZE_T byte_code_length,
|
|
|
|
struct d3d11_domain_shader **shader) DECLSPEC_HIDDEN;
|
2017-04-20 11:04:16 +02:00
|
|
|
struct d3d11_domain_shader *unsafe_impl_from_ID3D11DomainShader(ID3D11DomainShader *iface) DECLSPEC_HIDDEN;
|
2016-04-01 11:21:42 +02:00
|
|
|
|
2015-10-02 01:31:47 +02:00
|
|
|
/* ID3D11GeometryShader, ID3D10GeometryShader */
|
2015-10-02 01:31:46 +02:00
|
|
|
struct d3d_geometry_shader
|
2009-03-04 07:07:38 +01:00
|
|
|
{
|
2015-10-02 01:31:47 +02:00
|
|
|
ID3D11GeometryShader ID3D11GeometryShader_iface;
|
2011-06-01 10:59:33 +02:00
|
|
|
ID3D10GeometryShader ID3D10GeometryShader_iface;
|
2009-03-04 07:07:38 +01:00
|
|
|
LONG refcount;
|
2010-01-03 21:18:24 +01:00
|
|
|
|
2015-02-26 10:11:34 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2011-03-30 20:49:25 +02:00
|
|
|
struct wined3d_shader *wined3d_shader;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2009-03-04 07:07:38 +01:00
|
|
|
};
|
|
|
|
|
2015-10-02 01:31:48 +02:00
|
|
|
HRESULT d3d_geometry_shader_create(struct d3d_device *device, const void *byte_code, SIZE_T byte_code_length,
|
2017-03-23 12:15:50 +01:00
|
|
|
const D3D11_SO_DECLARATION_ENTRY *so_entries, unsigned int so_entry_count,
|
|
|
|
const unsigned int *buffer_strides, unsigned int buffer_stride_count, unsigned int rasterizer_stream,
|
2015-10-02 01:31:48 +02:00
|
|
|
struct d3d_geometry_shader **shader) DECLSPEC_HIDDEN;
|
2015-10-23 02:38:15 +02:00
|
|
|
struct d3d_geometry_shader *unsafe_impl_from_ID3D11GeometryShader(ID3D11GeometryShader *iface) DECLSPEC_HIDDEN;
|
2015-10-02 01:31:46 +02:00
|
|
|
struct d3d_geometry_shader *unsafe_impl_from_ID3D10GeometryShader(ID3D10GeometryShader *iface) DECLSPEC_HIDDEN;
|
2009-10-29 18:56:22 +01:00
|
|
|
|
2015-09-16 01:30:13 +02:00
|
|
|
/* ID3D11PixelShader, ID3D10PixelShader */
|
2015-09-16 01:30:12 +02:00
|
|
|
struct d3d_pixel_shader
|
2009-03-04 07:07:38 +01:00
|
|
|
{
|
2015-09-16 01:30:13 +02:00
|
|
|
ID3D11PixelShader ID3D11PixelShader_iface;
|
2011-07-12 01:56:39 +02:00
|
|
|
ID3D10PixelShader ID3D10PixelShader_iface;
|
2009-03-04 07:07:38 +01:00
|
|
|
LONG refcount;
|
2009-04-27 09:37:14 +02:00
|
|
|
|
2015-02-27 12:29:43 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2011-03-30 20:49:25 +02:00
|
|
|
struct wined3d_shader *wined3d_shader;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2009-03-04 07:07:38 +01:00
|
|
|
};
|
|
|
|
|
2015-09-16 01:30:14 +02:00
|
|
|
HRESULT d3d_pixel_shader_create(struct d3d_device *device, const void *byte_code, SIZE_T byte_code_length,
|
|
|
|
struct d3d_pixel_shader **shader) DECLSPEC_HIDDEN;
|
2015-10-14 02:08:14 +02:00
|
|
|
struct d3d_pixel_shader *unsafe_impl_from_ID3D11PixelShader(ID3D11PixelShader *iface) DECLSPEC_HIDDEN;
|
2015-09-16 01:30:12 +02:00
|
|
|
struct d3d_pixel_shader *unsafe_impl_from_ID3D10PixelShader(ID3D10PixelShader *iface) DECLSPEC_HIDDEN;
|
2009-09-23 18:42:10 +02:00
|
|
|
|
2016-06-21 13:09:58 +02:00
|
|
|
/* ID3D11ComputeShader */
|
|
|
|
struct d3d11_compute_shader
|
|
|
|
{
|
|
|
|
ID3D11ComputeShader ID3D11ComputeShader_iface;
|
|
|
|
LONG refcount;
|
|
|
|
|
|
|
|
struct wined3d_private_store private_store;
|
|
|
|
struct wined3d_shader *wined3d_shader;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2016-06-21 13:09:58 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
HRESULT d3d11_compute_shader_create(struct d3d_device *device, const void *byte_code, SIZE_T byte_code_length,
|
|
|
|
struct d3d11_compute_shader **shader) DECLSPEC_HIDDEN;
|
2017-01-25 11:17:59 +01:00
|
|
|
struct d3d11_compute_shader *unsafe_impl_from_ID3D11ComputeShader(ID3D11ComputeShader *iface) DECLSPEC_HIDDEN;
|
2016-06-21 13:09:58 +02:00
|
|
|
|
2016-04-22 11:18:48 +02:00
|
|
|
/* ID3D11ClassLinkage */
|
|
|
|
struct d3d11_class_linkage
|
|
|
|
{
|
|
|
|
ID3D11ClassLinkage ID3D11ClassLinkage_iface;
|
|
|
|
LONG refcount;
|
|
|
|
|
|
|
|
struct wined3d_private_store private_store;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2016-04-22 11:18:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
HRESULT d3d11_class_linkage_create(struct d3d_device *device,
|
|
|
|
struct d3d11_class_linkage **class_linkage) DECLSPEC_HIDDEN;
|
|
|
|
|
2015-10-20 01:46:42 +02:00
|
|
|
/* ID3D11BlendState, ID3D10BlendState1 */
|
2015-10-08 02:55:53 +02:00
|
|
|
struct d3d_blend_state
|
2009-11-04 10:37:13 +01:00
|
|
|
{
|
2015-10-08 02:55:54 +02:00
|
|
|
ID3D11BlendState ID3D11BlendState_iface;
|
2015-10-20 01:46:42 +02:00
|
|
|
ID3D10BlendState1 ID3D10BlendState1_iface;
|
2009-11-04 10:37:13 +01:00
|
|
|
LONG refcount;
|
2012-12-12 23:10:41 +01:00
|
|
|
|
2015-02-27 12:29:46 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2018-02-08 15:22:45 +01:00
|
|
|
struct wined3d_blend_state *wined3d_state;
|
2015-10-08 02:55:55 +02:00
|
|
|
D3D11_BLEND_DESC desc;
|
2012-12-12 23:10:42 +01:00
|
|
|
struct wine_rb_entry entry;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2009-11-04 10:37:13 +01:00
|
|
|
};
|
|
|
|
|
2016-07-04 12:26:20 +02:00
|
|
|
static inline struct d3d_blend_state *impl_from_ID3D11BlendState(ID3D11BlendState *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct d3d_blend_state, ID3D11BlendState_iface);
|
|
|
|
}
|
|
|
|
|
2017-07-20 14:10:57 +02:00
|
|
|
HRESULT d3d_blend_state_create(struct d3d_device *device, const D3D11_BLEND_DESC *desc,
|
|
|
|
struct d3d_blend_state **state) DECLSPEC_HIDDEN;
|
2015-11-06 01:28:27 +01:00
|
|
|
struct d3d_blend_state *unsafe_impl_from_ID3D11BlendState(ID3D11BlendState *iface) DECLSPEC_HIDDEN;
|
2015-10-08 02:55:53 +02:00
|
|
|
struct d3d_blend_state *unsafe_impl_from_ID3D10BlendState(ID3D10BlendState *iface) DECLSPEC_HIDDEN;
|
2009-11-04 10:37:13 +01:00
|
|
|
|
2015-10-02 01:31:52 +02:00
|
|
|
/* ID3D11DepthStencilState, ID3D10DepthStencilState */
|
2015-10-02 01:31:51 +02:00
|
|
|
struct d3d_depthstencil_state
|
2009-10-30 20:11:34 +01:00
|
|
|
{
|
2015-10-02 01:31:52 +02:00
|
|
|
ID3D11DepthStencilState ID3D11DepthStencilState_iface;
|
2011-06-02 11:21:30 +02:00
|
|
|
ID3D10DepthStencilState ID3D10DepthStencilState_iface;
|
2009-10-30 20:11:34 +01:00
|
|
|
LONG refcount;
|
2012-12-13 22:08:58 +01:00
|
|
|
|
2015-03-09 11:47:05 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2015-10-02 01:31:53 +02:00
|
|
|
D3D11_DEPTH_STENCIL_DESC desc;
|
2012-12-13 22:08:59 +01:00
|
|
|
struct wine_rb_entry entry;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2009-10-30 20:11:34 +01:00
|
|
|
};
|
|
|
|
|
2016-07-04 12:26:21 +02:00
|
|
|
static inline struct d3d_depthstencil_state *impl_from_ID3D11DepthStencilState(ID3D11DepthStencilState *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct d3d_depthstencil_state, ID3D11DepthStencilState_iface);
|
|
|
|
}
|
|
|
|
|
2017-07-20 14:10:59 +02:00
|
|
|
HRESULT d3d_depthstencil_state_create(struct d3d_device *device, const D3D11_DEPTH_STENCIL_DESC *desc,
|
|
|
|
struct d3d_depthstencil_state **state) DECLSPEC_HIDDEN;
|
2016-03-16 10:02:38 +01:00
|
|
|
struct d3d_depthstencil_state *unsafe_impl_from_ID3D11DepthStencilState(
|
|
|
|
ID3D11DepthStencilState *iface) DECLSPEC_HIDDEN;
|
2015-10-02 01:31:51 +02:00
|
|
|
struct d3d_depthstencil_state *unsafe_impl_from_ID3D10DepthStencilState(
|
2012-10-02 22:15:36 +02:00
|
|
|
ID3D10DepthStencilState *iface) DECLSPEC_HIDDEN;
|
2009-10-30 20:11:34 +01:00
|
|
|
|
2015-09-27 18:49:56 +02:00
|
|
|
/* ID3D11RasterizerState, ID3D10RasterizerState */
|
2015-09-27 18:49:54 +02:00
|
|
|
struct d3d_rasterizer_state
|
2009-10-30 20:11:35 +01:00
|
|
|
{
|
2015-09-27 18:49:56 +02:00
|
|
|
ID3D11RasterizerState ID3D11RasterizerState_iface;
|
2011-06-02 11:22:49 +02:00
|
|
|
ID3D10RasterizerState ID3D10RasterizerState_iface;
|
2009-10-30 20:11:35 +01:00
|
|
|
LONG refcount;
|
2013-01-02 12:07:26 +01:00
|
|
|
|
2015-03-10 11:41:54 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2016-07-27 23:33:42 +02:00
|
|
|
struct wined3d_rasterizer_state *wined3d_state;
|
2015-09-27 18:49:57 +02:00
|
|
|
D3D11_RASTERIZER_DESC desc;
|
2013-01-02 12:07:27 +01:00
|
|
|
struct wine_rb_entry entry;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2009-10-30 20:11:35 +01:00
|
|
|
};
|
|
|
|
|
2017-07-20 14:11:01 +02:00
|
|
|
HRESULT d3d_rasterizer_state_create(struct d3d_device *device, const D3D11_RASTERIZER_DESC *desc,
|
|
|
|
struct d3d_rasterizer_state **state) DECLSPEC_HIDDEN;
|
2015-11-06 01:28:25 +01:00
|
|
|
struct d3d_rasterizer_state *unsafe_impl_from_ID3D11RasterizerState(ID3D11RasterizerState *iface) DECLSPEC_HIDDEN;
|
2015-09-27 18:49:54 +02:00
|
|
|
struct d3d_rasterizer_state *unsafe_impl_from_ID3D10RasterizerState(ID3D10RasterizerState *iface) DECLSPEC_HIDDEN;
|
2009-10-30 20:11:35 +01:00
|
|
|
|
2015-10-13 09:13:32 +02:00
|
|
|
/* ID3D11SamplerState, ID3D10SamplerState */
|
2015-10-13 09:13:31 +02:00
|
|
|
struct d3d_sampler_state
|
2009-10-30 20:11:36 +01:00
|
|
|
{
|
2015-10-13 09:13:32 +02:00
|
|
|
ID3D11SamplerState ID3D11SamplerState_iface;
|
2011-06-02 11:23:54 +02:00
|
|
|
ID3D10SamplerState ID3D10SamplerState_iface;
|
2009-10-30 20:11:36 +01:00
|
|
|
LONG refcount;
|
2012-12-05 21:01:47 +01:00
|
|
|
|
2015-03-10 11:41:57 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2012-12-05 21:01:47 +01:00
|
|
|
struct wined3d_sampler *wined3d_sampler;
|
2015-10-13 09:13:33 +02:00
|
|
|
D3D11_SAMPLER_DESC desc;
|
2012-12-11 22:27:31 +01:00
|
|
|
struct wine_rb_entry entry;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2009-10-30 20:11:36 +01:00
|
|
|
};
|
|
|
|
|
2017-07-20 14:11:03 +02:00
|
|
|
HRESULT d3d_sampler_state_create(struct d3d_device *device, const D3D11_SAMPLER_DESC *desc,
|
|
|
|
struct d3d_sampler_state **state) DECLSPEC_HIDDEN;
|
2015-11-06 18:38:10 +01:00
|
|
|
struct d3d_sampler_state *unsafe_impl_from_ID3D11SamplerState(ID3D11SamplerState *iface) DECLSPEC_HIDDEN;
|
2015-10-13 09:13:31 +02:00
|
|
|
struct d3d_sampler_state *unsafe_impl_from_ID3D10SamplerState(ID3D10SamplerState *iface) DECLSPEC_HIDDEN;
|
2009-10-30 20:11:36 +01:00
|
|
|
|
2015-10-27 03:02:29 +01:00
|
|
|
/* ID3D11Query, ID3D10Query */
|
2015-10-27 03:02:28 +01:00
|
|
|
struct d3d_query
|
2009-12-13 22:03:57 +01:00
|
|
|
{
|
2015-10-27 03:02:29 +01:00
|
|
|
ID3D11Query ID3D11Query_iface;
|
2011-06-02 11:24:44 +02:00
|
|
|
ID3D10Query ID3D10Query_iface;
|
2009-12-13 22:03:57 +01:00
|
|
|
LONG refcount;
|
2013-05-30 22:34:16 +02:00
|
|
|
|
2015-02-23 17:59:45 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2014-09-19 10:41:45 +02:00
|
|
|
struct wined3d_query *wined3d_query;
|
2013-05-30 22:34:16 +02:00
|
|
|
BOOL predicate;
|
2017-06-09 13:00:03 +02:00
|
|
|
D3D11_QUERY_DESC desc;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 *device;
|
2009-12-13 22:03:57 +01:00
|
|
|
};
|
|
|
|
|
2015-10-27 03:02:30 +01:00
|
|
|
HRESULT d3d_query_create(struct d3d_device *device, const D3D11_QUERY_DESC *desc, BOOL predicate,
|
|
|
|
struct d3d_query **query) DECLSPEC_HIDDEN;
|
2015-11-10 01:32:46 +01:00
|
|
|
struct d3d_query *unsafe_impl_from_ID3D11Query(ID3D11Query *iface) DECLSPEC_HIDDEN;
|
2015-10-27 03:02:28 +01:00
|
|
|
struct d3d_query *unsafe_impl_from_ID3D10Query(ID3D10Query *iface) DECLSPEC_HIDDEN;
|
2016-07-06 12:02:29 +02:00
|
|
|
struct d3d_query *unsafe_impl_from_ID3D11Asynchronous(ID3D11Asynchronous *iface) DECLSPEC_HIDDEN;
|
2009-12-13 22:03:57 +01:00
|
|
|
|
2015-10-09 03:19:13 +02:00
|
|
|
/* ID3D11DeviceContext - immediate context */
|
|
|
|
struct d3d11_immediate_context
|
|
|
|
{
|
2018-04-30 13:30:09 +02:00
|
|
|
ID3D11DeviceContext1 ID3D11DeviceContext1_iface;
|
2019-05-06 14:03:23 +02:00
|
|
|
ID3D11Multithread ID3D11Multithread_iface;
|
2015-10-09 03:19:13 +02:00
|
|
|
LONG refcount;
|
2016-03-29 12:14:51 +02:00
|
|
|
|
|
|
|
struct wined3d_private_store private_store;
|
2015-10-09 03:19:13 +02:00
|
|
|
};
|
|
|
|
|
2015-09-16 01:30:07 +02:00
|
|
|
/* ID3D11Device, ID3D10Device1 */
|
2015-08-21 00:07:56 +02:00
|
|
|
struct d3d_device
|
2012-10-01 22:48:09 +02:00
|
|
|
{
|
|
|
|
IUnknown IUnknown_inner;
|
2018-05-16 11:55:27 +02:00
|
|
|
ID3D11Device2 ID3D11Device2_iface;
|
2014-02-11 11:42:23 +01:00
|
|
|
ID3D10Device1 ID3D10Device1_iface;
|
2014-02-12 12:10:31 +01:00
|
|
|
ID3D10Multithread ID3D10Multithread_iface;
|
2012-10-01 22:48:09 +02:00
|
|
|
IWineDXGIDeviceParent IWineDXGIDeviceParent_iface;
|
|
|
|
IUnknown *outer_unk;
|
|
|
|
LONG refcount;
|
|
|
|
|
2016-03-09 23:19:20 +01:00
|
|
|
D3D_FEATURE_LEVEL feature_level;
|
|
|
|
|
2015-10-09 03:19:13 +02:00
|
|
|
struct d3d11_immediate_context immediate_context;
|
|
|
|
|
2012-10-01 22:48:09 +02:00
|
|
|
struct wined3d_device_parent device_parent;
|
|
|
|
struct wined3d_device *wined3d_device;
|
|
|
|
|
2012-12-12 23:10:42 +01:00
|
|
|
struct wine_rb_tree blend_states;
|
2012-12-13 22:08:59 +01:00
|
|
|
struct wine_rb_tree depthstencil_states;
|
2013-01-02 12:07:27 +01:00
|
|
|
struct wine_rb_tree rasterizer_states;
|
2012-12-11 22:27:31 +01:00
|
|
|
struct wine_rb_tree sampler_states;
|
|
|
|
|
2015-10-02 01:31:51 +02:00
|
|
|
struct d3d_depthstencil_state *depth_stencil_state;
|
2012-10-02 22:15:36 +02:00
|
|
|
UINT stencil_ref;
|
2012-10-01 22:48:09 +02:00
|
|
|
};
|
|
|
|
|
2018-05-16 11:55:27 +02:00
|
|
|
static inline struct d3d_device *impl_from_ID3D11Device2(ID3D11Device2 *iface)
|
2015-09-27 18:49:56 +02:00
|
|
|
{
|
2018-05-16 11:55:27 +02:00
|
|
|
return CONTAINING_RECORD(iface, struct d3d_device, ID3D11Device2_iface);
|
2015-09-27 18:49:56 +02:00
|
|
|
}
|
|
|
|
|
2015-08-21 00:07:56 +02:00
|
|
|
static inline struct d3d_device *impl_from_ID3D10Device(ID3D10Device1 *iface)
|
2014-02-17 11:24:29 +01:00
|
|
|
{
|
2015-08-21 00:07:56 +02:00
|
|
|
return CONTAINING_RECORD(iface, struct d3d_device, ID3D10Device1_iface);
|
2014-02-17 11:24:29 +01:00
|
|
|
}
|
|
|
|
|
2016-08-30 21:31:23 +02:00
|
|
|
void d3d_device_init(struct d3d_device *device, void *outer_unknown) DECLSPEC_HIDDEN;
|
2012-10-01 22:48:09 +02:00
|
|
|
|
2008-11-12 15:43:46 +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-11-14 13:57:06 +01:00
|
|
|
HRESULT WINAPI DXGID3D10CreateDevice(HMODULE d3d10core, IDXGIFactory *factory, IDXGIAdapter *adapter,
|
2016-03-09 23:19:19 +01:00
|
|
|
unsigned int flags, const D3D_FEATURE_LEVEL *feature_levels, unsigned int level_count, void **device);
|
2008-11-12 15:43:46 +01:00
|
|
|
HRESULT WINAPI DXGID3D10RegisterLayers(const struct dxgi_device_layer *layers, UINT layer_count);
|
|
|
|
|
2015-08-21 00:07:53 +02:00
|
|
|
#endif /* __WINE_D3D11_PRIVATE_H */
|