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"
|
|
|
|
|
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"
|
|
|
|
|
2015-08-21 00:07:52 +02:00
|
|
|
#include "d3d11_1.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 ))
|
|
|
|
#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')
|
2009-05-08 17:44:25 +02:00
|
|
|
#define TAG_OSGN MAKE_TAG('O', 'S', 'G', 'N')
|
2009-04-27 09:37:14 +02:00
|
|
|
#define TAG_SHDR MAKE_TAG('S', 'H', 'D', 'R')
|
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
|
|
|
|
2015-10-02 01:31:49 +02:00
|
|
|
struct d3d_shader_info
|
2009-05-08 17:44:25 +02:00
|
|
|
{
|
|
|
|
const DWORD *shader_code;
|
2014-11-04 08:47:45 +01:00
|
|
|
struct wined3d_shader_signature *input_signature;
|
2009-05-08 17:44:25 +02:00
|
|
|
struct wined3d_shader_signature *output_signature;
|
|
|
|
};
|
|
|
|
|
2015-10-09 03:19:12 +02:00
|
|
|
extern const struct wined3d_parent_ops d3d_null_wined3d_parent_ops DECLSPEC_HIDDEN;
|
2014-08-21 09:55:55 +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;
|
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;
|
2015-09-01 00:27:35 +02:00
|
|
|
DWORD wined3d_usage_from_d3d11(UINT bind_flags, 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;
|
2014-09-25 17:18:40 +02:00
|
|
|
DWORD wined3d_map_flags_from_d3d10_map_type(D3D10_MAP map_type) 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;
|
|
|
|
|
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
|
|
|
|
2009-03-30 11:24:54 +02:00
|
|
|
static inline void read_dword(const char **ptr, DWORD *d)
|
|
|
|
{
|
|
|
|
memcpy(d, *ptr, sizeof(*d));
|
|
|
|
*ptr += sizeof(*d);
|
|
|
|
}
|
|
|
|
|
2009-09-20 20:09:27 +02:00
|
|
|
void skip_dword_unknown(const char **ptr, unsigned int count) DECLSPEC_HIDDEN;
|
2009-03-30 11:24:54 +02:00
|
|
|
|
|
|
|
HRESULT parse_dxbc(const char *data, SIZE_T data_size,
|
2009-09-20 20:09:27 +02:00
|
|
|
HRESULT (*chunk_handler)(const char *data, DWORD data_size, DWORD tag, void *ctx), void *ctx) DECLSPEC_HIDDEN;
|
2009-03-30 11:24:54 +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;
|
2015-08-26 00:56:06 +02:00
|
|
|
ID3D11Device *device;
|
2009-01-15 09:58:44 +01:00
|
|
|
};
|
|
|
|
|
2015-08-30 22:44:45 +02:00
|
|
|
static inline struct d3d_texture2d *impl_from_ID3D10Texture2D(ID3D10Texture2D *iface)
|
2015-08-26 00:56:04 +02:00
|
|
|
{
|
2015-08-30 22:44:45 +02:00
|
|
|
return CONTAINING_RECORD(iface, struct d3d_texture2d, ID3D10Texture2D_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;
|
2015-09-01 00:27:34 +02:00
|
|
|
ID3D11Device *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;
|
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;
|
2015-09-03 00:06:55 +02:00
|
|
|
ID3D11Device *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;
|
2015-09-08 01:12:43 +02:00
|
|
|
ID3D11Device *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-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;
|
2015-09-09 01:35:46 +02:00
|
|
|
ID3D11Device *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;
|
2015-09-10 00:55:44 +02:00
|
|
|
ID3D11Device *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-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
|
|
|
|
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;
|
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;
|
2015-09-16 01:30:10 +02:00
|
|
|
ID3D11Device *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
|
|
|
|
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;
|
2015-10-02 01:31:50 +02:00
|
|
|
ID3D11Device *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,
|
|
|
|
struct d3d_geometry_shader **shader) 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;
|
2015-09-16 01:30:13 +02:00
|
|
|
ID3D11Device *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
|
|
|
|
2009-09-20 20:09:27 +02:00
|
|
|
HRESULT shader_parse_signature(const char *data, DWORD data_size, struct wined3d_shader_signature *s) DECLSPEC_HIDDEN;
|
|
|
|
void shader_free_signature(struct wined3d_shader_signature *s) DECLSPEC_HIDDEN;
|
2009-04-27 09:37:14 +02:00
|
|
|
|
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;
|
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;
|
2015-10-08 02:55:54 +02:00
|
|
|
ID3D11Device *device;
|
2009-11-04 10:37:13 +01:00
|
|
|
};
|
|
|
|
|
2015-10-08 02:55:53 +02:00
|
|
|
HRESULT d3d_blend_state_init(struct d3d_blend_state *state, struct d3d_device *device,
|
2015-10-08 02:55:55 +02:00
|
|
|
const D3D11_BLEND_DESC *desc) 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;
|
2015-10-02 01:31:52 +02:00
|
|
|
ID3D11Device *device;
|
2009-10-30 20:11:34 +01:00
|
|
|
};
|
|
|
|
|
2015-10-02 01:31:51 +02:00
|
|
|
HRESULT d3d_depthstencil_state_init(struct d3d_depthstencil_state *state, struct d3d_device *device,
|
2015-10-02 01:31:53 +02:00
|
|
|
const D3D11_DEPTH_STENCIL_DESC *desc) 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;
|
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;
|
2015-09-27 18:49:56 +02:00
|
|
|
ID3D11Device *device;
|
2009-10-30 20:11:35 +01:00
|
|
|
};
|
|
|
|
|
2015-09-27 18:49:54 +02:00
|
|
|
HRESULT d3d_rasterizer_state_init(struct d3d_rasterizer_state *state, struct d3d_device *device,
|
2015-09-27 18:49:57 +02:00
|
|
|
const D3D11_RASTERIZER_DESC *desc) 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;
|
2015-10-13 09:13:32 +02:00
|
|
|
ID3D11Device *device;
|
2009-10-30 20:11:36 +01:00
|
|
|
};
|
|
|
|
|
2015-10-13 09:13:31 +02:00
|
|
|
HRESULT d3d_sampler_state_init(struct d3d_sampler_state *state, struct d3d_device *device,
|
2015-10-13 09:13:33 +02:00
|
|
|
const D3D11_SAMPLER_DESC *desc) 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
|
|
|
|
2009-12-13 22:03:57 +01:00
|
|
|
/* ID3D10Query */
|
|
|
|
struct d3d10_query
|
|
|
|
{
|
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;
|
2014-02-17 11:24:33 +01:00
|
|
|
ID3D10Device1 *device;
|
2009-12-13 22:03:57 +01:00
|
|
|
};
|
|
|
|
|
2015-08-21 00:07:56 +02:00
|
|
|
HRESULT d3d10_query_init(struct d3d10_query *query, struct d3d_device *device,
|
2014-09-19 10:41:45 +02:00
|
|
|
const D3D10_QUERY_DESC *desc, BOOL predicate) DECLSPEC_HIDDEN;
|
2014-09-19 10:41:46 +02:00
|
|
|
struct d3d10_query *unsafe_impl_from_ID3D10Query(ID3D10Query *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
|
|
|
|
{
|
|
|
|
ID3D11DeviceContext ID3D11DeviceContext_iface;
|
|
|
|
LONG refcount;
|
|
|
|
ID3D11Device *device;
|
|
|
|
};
|
|
|
|
|
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;
|
2015-08-21 00:07:52 +02:00
|
|
|
ID3D11Device ID3D11Device_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;
|
|
|
|
|
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-08 02:55:53 +02:00
|
|
|
struct d3d_blend_state *blend_state;
|
2012-10-04 13:53:25 +02:00
|
|
|
float blend_factor[4];
|
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;
|
2015-09-27 18:49:54 +02:00
|
|
|
struct d3d_rasterizer_state *rasterizer_state;
|
2012-10-01 22:48:09 +02:00
|
|
|
};
|
|
|
|
|
2015-09-27 18:49:56 +02:00
|
|
|
static inline struct d3d_device *impl_from_ID3D11Device(ID3D11Device *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct d3d_device, ID3D11Device_iface);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-09-27 18:49:59 +02:00
|
|
|
HRESULT 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,
|
2009-12-07 20:20:03 +01:00
|
|
|
UINT flags, void *unknown0, 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 */
|