2003-07-01 03:09:17 +02:00
|
|
|
/*
|
|
|
|
* Direct3D 9 private include file
|
|
|
|
*
|
|
|
|
* Copyright 2002-2003 Jason Edmeades
|
2005-03-03 14:57:15 +01:00
|
|
|
* Copyright 2002-2003 Raphael Junqueira
|
2009-08-28 10:23:11 +02:00
|
|
|
* Copyright 2005 Oliver Stieber
|
2003-07-01 03:09:17 +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.
|
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-07-01 03:09:17 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_D3D9_PRIVATE_H
|
|
|
|
#define __WINE_D3D9_PRIVATE_H
|
|
|
|
|
2012-04-12 22:49:03 +02:00
|
|
|
#include <assert.h>
|
2004-09-23 06:34:27 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#define NONAMELESSUNION
|
|
|
|
#define NONAMELESSSTRUCT
|
2004-10-14 02:32:04 +02:00
|
|
|
#define COBJMACROS
|
2004-09-23 06:34:27 +02:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
2006-11-17 12:46:15 +01:00
|
|
|
#include "wingdi.h"
|
2004-09-23 06:34:27 +02:00
|
|
|
#include "winuser.h"
|
|
|
|
#include "wine/debug.h"
|
2018-02-06 23:41:32 +01:00
|
|
|
#include "wine/heap.h"
|
2004-10-14 02:32:04 +02:00
|
|
|
#include "wine/unicode.h"
|
2004-09-23 06:34:27 +02:00
|
|
|
|
|
|
|
#include "d3d9.h"
|
2008-11-25 11:57:39 +01:00
|
|
|
#include "wine/wined3d.h"
|
2004-09-23 06:34:27 +02:00
|
|
|
|
2018-02-13 01:00:42 +01:00
|
|
|
#define D3D9_MAX_VERTEX_SHADER_CONSTANTF 256
|
|
|
|
#define D3D9_MAX_TEXTURE_UNITS 20
|
2018-12-17 20:29:21 +01:00
|
|
|
#define D3D9_MAX_STREAMS 16
|
2018-02-13 01:00:42 +01:00
|
|
|
|
2016-08-03 09:41:38 +02:00
|
|
|
#define D3DPRESENTFLAGS_MASK 0x00000fffu
|
|
|
|
|
2018-02-13 01:00:42 +01:00
|
|
|
#define D3D9_TEXTURE_MIPMAP_DIRTY 0x1
|
|
|
|
|
2017-05-10 15:54:07 +02:00
|
|
|
extern const struct wined3d_parent_ops d3d9_null_wined3d_parent_ops DECLSPEC_HIDDEN;
|
|
|
|
|
|
|
|
HRESULT vdecl_convert_fvf(DWORD FVF, D3DVERTEXELEMENT9 **ppVertexElements) DECLSPEC_HIDDEN;
|
2010-08-23 18:28:10 +02:00
|
|
|
D3DFORMAT d3dformat_from_wined3dformat(enum wined3d_format_id format) DECLSPEC_HIDDEN;
|
2017-02-09 05:51:56 +01:00
|
|
|
BOOL is_gdi_compat_wined3dformat(enum wined3d_format_id format) DECLSPEC_HIDDEN;
|
2010-08-23 18:28:10 +02:00
|
|
|
enum wined3d_format_id wined3dformat_from_d3dformat(D3DFORMAT format) DECLSPEC_HIDDEN;
|
2019-01-30 16:25:58 +01:00
|
|
|
unsigned int wined3dmapflags_from_d3dmapflags(unsigned int flags, unsigned int usage) DECLSPEC_HIDDEN;
|
2012-07-03 12:59:40 +02:00
|
|
|
void present_parameters_from_wined3d_swapchain_desc(D3DPRESENT_PARAMETERS *present_parameters,
|
2018-03-22 08:48:32 +01:00
|
|
|
const struct wined3d_swapchain_desc *swapchain_desc, DWORD presentation_interval) DECLSPEC_HIDDEN;
|
2018-06-13 12:23:59 +02:00
|
|
|
void d3dcaps_from_wined3dcaps(D3DCAPS9 *caps, const struct wined3d_caps *wined3d_caps) DECLSPEC_HIDDEN;
|
2005-06-17 11:59:03 +02:00
|
|
|
|
2012-05-25 16:10:31 +02:00
|
|
|
struct d3d9
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
2012-05-25 16:10:31 +02:00
|
|
|
IDirect3D9Ex IDirect3D9Ex_iface;
|
|
|
|
LONG refcount;
|
|
|
|
struct wined3d *wined3d;
|
|
|
|
BOOL extended;
|
|
|
|
};
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2012-05-25 16:10:31 +02:00
|
|
|
BOOL d3d9_init(struct d3d9 *d3d9, BOOL extended) DECLSPEC_HIDDEN;
|
2007-08-21 12:13:42 +02:00
|
|
|
|
2012-04-11 22:52:03 +02:00
|
|
|
struct fvf_declaration
|
|
|
|
{
|
|
|
|
struct wined3d_vertex_declaration *decl;
|
|
|
|
DWORD fvf;
|
|
|
|
};
|
|
|
|
|
2014-06-27 08:26:59 +02:00
|
|
|
enum d3d9_device_state
|
|
|
|
{
|
|
|
|
D3D9_DEVICE_STATE_OK,
|
|
|
|
D3D9_DEVICE_STATE_LOST,
|
|
|
|
D3D9_DEVICE_STATE_NOT_RESET,
|
|
|
|
};
|
|
|
|
|
2012-05-28 18:17:28 +02:00
|
|
|
struct d3d9_device
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
2011-04-24 21:34:30 +02:00
|
|
|
IDirect3DDevice9Ex IDirect3DDevice9Ex_iface;
|
2011-05-18 22:30:13 +02:00
|
|
|
struct wined3d_device_parent device_parent;
|
2012-05-28 18:17:28 +02:00
|
|
|
LONG refcount;
|
2011-05-16 23:01:22 +02:00
|
|
|
struct wined3d_device *wined3d_device;
|
2012-05-25 16:10:31 +02:00
|
|
|
struct d3d9 *d3d_parent;
|
2006-12-18 00:17:16 +01:00
|
|
|
|
2012-04-11 22:52:03 +02:00
|
|
|
struct fvf_declaration *fvf_decls;
|
|
|
|
UINT fvf_decl_count, fvf_decl_size;
|
2007-02-14 17:57:07 +01:00
|
|
|
|
2012-12-18 22:53:14 +01:00
|
|
|
struct wined3d_buffer *vertex_buffer;
|
|
|
|
UINT vertex_buffer_size;
|
|
|
|
UINT vertex_buffer_pos;
|
2012-12-18 22:53:15 +01:00
|
|
|
struct wined3d_buffer *index_buffer;
|
|
|
|
UINT index_buffer_size;
|
|
|
|
UINT index_buffer_pos;
|
2012-12-18 22:53:14 +01:00
|
|
|
|
2018-02-25 23:23:32 +01:00
|
|
|
struct d3d9_surface *render_targets[D3D_MAX_SIMULTANEOUS_RENDERTARGETS];
|
2018-02-13 01:00:42 +01:00
|
|
|
|
2014-06-27 08:26:59 +02:00
|
|
|
LONG device_state;
|
2018-12-17 20:29:21 +01:00
|
|
|
DWORD sysmem_vb : 16; /* D3D9_MAX_STREAMS */
|
2018-12-17 20:29:22 +01:00
|
|
|
DWORD sysmem_ib : 1;
|
2018-12-17 20:29:21 +01:00
|
|
|
DWORD in_destruction : 1;
|
|
|
|
DWORD in_scene : 1;
|
|
|
|
DWORD has_vertex_declaration : 1;
|
|
|
|
DWORD recording : 1;
|
2018-12-17 20:29:22 +01:00
|
|
|
DWORD padding : 11;
|
2015-10-14 11:09:56 +02:00
|
|
|
|
2019-02-11 18:21:04 +01:00
|
|
|
DWORD auto_mipmaps; /* D3D9_MAX_TEXTURE_UNITS */
|
|
|
|
|
2017-12-02 10:24:38 +01:00
|
|
|
unsigned int max_user_clip_planes;
|
|
|
|
|
2015-10-14 11:09:56 +02:00
|
|
|
UINT implicit_swapchain_count;
|
2019-04-12 14:50:47 +02:00
|
|
|
struct wined3d_swapchain **implicit_swapchains;
|
2012-05-28 18:17:28 +02:00
|
|
|
};
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2012-05-28 18:17:28 +02:00
|
|
|
HRESULT device_init(struct d3d9_device *device, struct d3d9 *parent, struct wined3d *wined3d,
|
2012-05-25 16:10:31 +02:00
|
|
|
UINT adapter, D3DDEVTYPE device_type, HWND focus_window, DWORD flags,
|
|
|
|
D3DPRESENT_PARAMETERS *parameters, D3DDISPLAYMODEEX *mode) DECLSPEC_HIDDEN;
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2014-03-24 12:17:14 +01:00
|
|
|
struct d3d9_resource
|
|
|
|
{
|
|
|
|
LONG refcount;
|
2014-03-24 12:17:15 +01:00
|
|
|
struct wined3d_private_store private_store;
|
2014-03-24 12:17:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
void d3d9_resource_cleanup(struct d3d9_resource *resource) DECLSPEC_HIDDEN;
|
2014-03-24 12:17:15 +01:00
|
|
|
HRESULT d3d9_resource_free_private_data(struct d3d9_resource *resource, const GUID *guid) DECLSPEC_HIDDEN;
|
|
|
|
HRESULT d3d9_resource_get_private_data(struct d3d9_resource *resource, const GUID *guid,
|
|
|
|
void *data, DWORD *data_size) DECLSPEC_HIDDEN;
|
2014-03-24 12:17:14 +01:00
|
|
|
void d3d9_resource_init(struct d3d9_resource *resource) DECLSPEC_HIDDEN;
|
2014-03-24 12:17:15 +01:00
|
|
|
HRESULT d3d9_resource_set_private_data(struct d3d9_resource *resource, const GUID *guid,
|
|
|
|
const void *data, DWORD data_size, DWORD flags) DECLSPEC_HIDDEN;
|
2014-03-24 12:17:14 +01:00
|
|
|
|
2012-05-28 18:17:29 +02:00
|
|
|
struct d3d9_volume
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
2011-04-20 11:04:23 +02:00
|
|
|
IDirect3DVolume9 IDirect3DVolume9_iface;
|
2014-03-24 12:17:14 +01:00
|
|
|
struct d3d9_resource resource;
|
2015-10-07 19:04:31 +02:00
|
|
|
struct wined3d_texture *wined3d_texture;
|
|
|
|
unsigned int sub_resource_idx;
|
2014-08-12 11:11:03 +02:00
|
|
|
struct d3d9_texture *texture;
|
2012-05-28 18:17:29 +02:00
|
|
|
};
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2015-10-06 10:36:49 +02:00
|
|
|
void volume_init(struct d3d9_volume *volume, struct wined3d_texture *wined3d_texture,
|
2015-10-07 19:04:33 +02:00
|
|
|
unsigned int sub_resource_idx, const struct wined3d_parent_ops **parent_ops) DECLSPEC_HIDDEN;
|
2009-09-16 08:37:17 +02:00
|
|
|
|
2012-05-30 16:14:59 +02:00
|
|
|
struct d3d9_swapchain
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
2013-09-09 15:43:00 +02:00
|
|
|
IDirect3DSwapChain9Ex IDirect3DSwapChain9Ex_iface;
|
2012-05-30 16:14:59 +02:00
|
|
|
LONG refcount;
|
2011-04-13 19:14:31 +02:00
|
|
|
struct wined3d_swapchain *wined3d_swapchain;
|
2012-05-30 16:14:59 +02:00
|
|
|
IDirect3DDevice9Ex *parent_device;
|
2018-03-22 08:48:31 +01:00
|
|
|
unsigned int swap_interval;
|
2012-05-30 16:14:59 +02:00
|
|
|
};
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2012-07-02 14:45:57 +02:00
|
|
|
HRESULT d3d9_swapchain_create(struct d3d9_device *device, struct wined3d_swapchain_desc *desc,
|
2018-03-22 08:48:32 +01:00
|
|
|
unsigned int swap_interval, struct d3d9_swapchain **swapchain) DECLSPEC_HIDDEN;
|
2009-12-20 20:41:36 +01:00
|
|
|
|
2012-05-30 16:15:00 +02:00
|
|
|
struct d3d9_surface
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
2011-07-07 10:59:49 +02:00
|
|
|
IDirect3DSurface9 IDirect3DSurface9_iface;
|
2014-03-24 12:17:14 +01:00
|
|
|
struct d3d9_resource resource;
|
2015-10-12 12:44:10 +02:00
|
|
|
struct wined3d_texture *wined3d_texture;
|
|
|
|
unsigned int sub_resource_idx;
|
2014-08-21 09:55:55 +02:00
|
|
|
struct list rtv_entry;
|
|
|
|
struct wined3d_rendertarget_view *wined3d_rtv;
|
2012-05-30 16:15:00 +02:00
|
|
|
IDirect3DDevice9Ex *parent_device;
|
|
|
|
IUnknown *container;
|
2014-08-18 08:26:16 +02:00
|
|
|
struct d3d9_texture *texture;
|
2012-05-30 16:15:00 +02:00
|
|
|
};
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2017-01-06 10:33:54 +01:00
|
|
|
struct wined3d_rendertarget_view *d3d9_surface_acquire_rendertarget_view(struct d3d9_surface *surface) DECLSPEC_HIDDEN;
|
2017-01-03 13:46:32 +01:00
|
|
|
struct d3d9_device *d3d9_surface_get_device(const struct d3d9_surface *surface) DECLSPEC_HIDDEN;
|
2017-01-06 10:33:54 +01:00
|
|
|
void d3d9_surface_release_rendertarget_view(struct d3d9_surface *surface,
|
|
|
|
struct wined3d_rendertarget_view *rtv) DECLSPEC_HIDDEN;
|
2016-01-27 20:44:41 +01:00
|
|
|
void surface_init(struct d3d9_surface *surface, struct wined3d_texture *wined3d_texture,
|
|
|
|
unsigned int sub_resource_idx, const struct wined3d_parent_ops **parent_ops) DECLSPEC_HIDDEN;
|
2012-05-30 16:15:00 +02:00
|
|
|
struct d3d9_surface *unsafe_impl_from_IDirect3DSurface9(IDirect3DSurface9 *iface) DECLSPEC_HIDDEN;
|
2009-09-11 19:01:16 +02:00
|
|
|
|
2012-05-31 16:46:49 +02:00
|
|
|
struct d3d9_vertexbuffer
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
2011-07-06 13:29:02 +02:00
|
|
|
IDirect3DVertexBuffer9 IDirect3DVertexBuffer9_iface;
|
2014-03-24 12:17:14 +01:00
|
|
|
struct d3d9_resource resource;
|
2012-05-31 16:46:49 +02:00
|
|
|
struct wined3d_buffer *wined3d_buffer;
|
|
|
|
IDirect3DDevice9Ex *parent_device;
|
2018-12-17 20:29:21 +01:00
|
|
|
struct wined3d_buffer *draw_buffer;
|
2019-01-30 16:25:58 +01:00
|
|
|
DWORD fvf, usage;
|
2012-05-31 16:46:49 +02:00
|
|
|
};
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2012-05-31 16:46:49 +02:00
|
|
|
HRESULT vertexbuffer_init(struct d3d9_vertexbuffer *buffer, struct d3d9_device *device,
|
2009-09-17 23:03:29 +02:00
|
|
|
UINT size, UINT usage, DWORD fvf, D3DPOOL pool) DECLSPEC_HIDDEN;
|
2012-05-31 16:46:49 +02:00
|
|
|
struct d3d9_vertexbuffer *unsafe_impl_from_IDirect3DVertexBuffer9(IDirect3DVertexBuffer9 *iface) DECLSPEC_HIDDEN;
|
2009-09-17 23:03:29 +02:00
|
|
|
|
2012-05-31 16:46:50 +02:00
|
|
|
struct d3d9_indexbuffer
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
2011-07-05 12:02:25 +02:00
|
|
|
IDirect3DIndexBuffer9 IDirect3DIndexBuffer9_iface;
|
2014-03-24 12:17:14 +01:00
|
|
|
struct d3d9_resource resource;
|
2012-05-31 16:46:50 +02:00
|
|
|
struct wined3d_buffer *wined3d_buffer;
|
|
|
|
IDirect3DDevice9Ex *parent_device;
|
2018-12-17 20:29:22 +01:00
|
|
|
struct wined3d_buffer *draw_buffer;
|
2010-08-23 18:28:10 +02:00
|
|
|
enum wined3d_format_id format;
|
2019-01-30 16:25:58 +01:00
|
|
|
DWORD usage;
|
2012-05-31 16:46:50 +02:00
|
|
|
};
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2012-05-31 16:46:50 +02:00
|
|
|
HRESULT indexbuffer_init(struct d3d9_indexbuffer *buffer, struct d3d9_device *device,
|
2009-09-17 23:03:28 +02:00
|
|
|
UINT size, DWORD usage, D3DFORMAT format, D3DPOOL pool) DECLSPEC_HIDDEN;
|
2012-05-31 16:46:50 +02:00
|
|
|
struct d3d9_indexbuffer *unsafe_impl_from_IDirect3DIndexBuffer9(IDirect3DIndexBuffer9 *iface) DECLSPEC_HIDDEN;
|
2009-09-17 23:03:28 +02:00
|
|
|
|
2012-04-22 22:47:43 +02:00
|
|
|
struct d3d9_texture
|
|
|
|
{
|
2012-04-22 22:47:44 +02:00
|
|
|
IDirect3DBaseTexture9 IDirect3DBaseTexture9_iface;
|
2014-03-24 12:17:14 +01:00
|
|
|
struct d3d9_resource resource;
|
2012-04-22 22:47:43 +02:00
|
|
|
struct wined3d_texture *wined3d_texture;
|
|
|
|
IDirect3DDevice9Ex *parent_device;
|
2014-08-21 09:55:55 +02:00
|
|
|
struct list rtv_list;
|
2018-02-13 01:00:42 +01:00
|
|
|
DWORD usage;
|
|
|
|
BOOL flags;
|
|
|
|
struct wined3d_shader_resource_view *wined3d_srv;
|
|
|
|
D3DTEXTUREFILTERTYPE autogen_filter_type;
|
2012-04-22 22:47:43 +02:00
|
|
|
};
|
|
|
|
|
2012-05-28 18:17:28 +02:00
|
|
|
HRESULT cubetexture_init(struct d3d9_texture *texture, struct d3d9_device *device,
|
2009-09-17 12:35:23 +02:00
|
|
|
UINT edge_length, UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool) DECLSPEC_HIDDEN;
|
2012-05-28 18:17:28 +02:00
|
|
|
HRESULT texture_init(struct d3d9_texture *texture, struct d3d9_device *device,
|
2009-09-17 12:35:29 +02:00
|
|
|
UINT width, UINT height, UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool) DECLSPEC_HIDDEN;
|
2012-05-28 18:17:28 +02:00
|
|
|
HRESULT volumetexture_init(struct d3d9_texture *texture, struct d3d9_device *device,
|
2009-09-16 08:37:22 +02:00
|
|
|
UINT width, UINT height, UINT depth, UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool) DECLSPEC_HIDDEN;
|
2012-04-24 20:54:15 +02:00
|
|
|
struct d3d9_texture *unsafe_impl_from_IDirect3DBaseTexture9(IDirect3DBaseTexture9 *iface) DECLSPEC_HIDDEN;
|
2018-02-13 01:00:42 +01:00
|
|
|
void d3d9_texture_flag_auto_gen_mipmap(struct d3d9_texture *texture) DECLSPEC_HIDDEN;
|
|
|
|
void d3d9_texture_gen_auto_mipmap(struct d3d9_texture *texture) DECLSPEC_HIDDEN;
|
2009-09-16 08:37:22 +02:00
|
|
|
|
2012-06-01 17:22:51 +02:00
|
|
|
struct d3d9_stateblock
|
|
|
|
{
|
|
|
|
IDirect3DStateBlock9 IDirect3DStateBlock9_iface;
|
|
|
|
LONG refcount;
|
2011-01-28 20:05:41 +01:00
|
|
|
struct wined3d_stateblock *wined3d_stateblock;
|
2012-06-01 17:22:51 +02:00
|
|
|
IDirect3DDevice9Ex *parent_device;
|
|
|
|
};
|
2005-08-23 11:34:57 +02:00
|
|
|
|
2012-06-01 17:22:51 +02:00
|
|
|
HRESULT stateblock_init(struct d3d9_stateblock *stateblock, struct d3d9_device *device,
|
2011-01-28 20:05:41 +01:00
|
|
|
D3DSTATEBLOCKTYPE type, struct wined3d_stateblock *wined3d_stateblock) DECLSPEC_HIDDEN;
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2012-06-01 17:22:52 +02:00
|
|
|
struct d3d9_vertex_declaration
|
|
|
|
{
|
|
|
|
IDirect3DVertexDeclaration9 IDirect3DVertexDeclaration9_iface;
|
|
|
|
LONG refcount;
|
|
|
|
D3DVERTEXELEMENT9 *elements;
|
|
|
|
UINT element_count;
|
2019-03-05 18:47:19 +01:00
|
|
|
DWORD stream_map;
|
2012-06-01 17:22:52 +02:00
|
|
|
struct wined3d_vertex_declaration *wined3d_declaration;
|
|
|
|
DWORD fvf;
|
|
|
|
IDirect3DDevice9Ex *parent_device;
|
|
|
|
};
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2012-05-28 18:17:28 +02:00
|
|
|
HRESULT d3d9_vertex_declaration_create(struct d3d9_device *device,
|
2012-06-01 17:22:52 +02:00
|
|
|
const D3DVERTEXELEMENT9 *elements, struct d3d9_vertex_declaration **declaration) DECLSPEC_HIDDEN;
|
|
|
|
struct d3d9_vertex_declaration *unsafe_impl_from_IDirect3DVertexDeclaration9(
|
2012-04-12 22:49:03 +02:00
|
|
|
IDirect3DVertexDeclaration9 *iface) DECLSPEC_HIDDEN;
|
2007-04-17 20:04:26 +02:00
|
|
|
|
2012-06-12 17:03:46 +02:00
|
|
|
struct d3d9_vertexshader
|
|
|
|
{
|
|
|
|
IDirect3DVertexShader9 IDirect3DVertexShader9_iface;
|
|
|
|
LONG refcount;
|
|
|
|
struct wined3d_shader *wined3d_shader;
|
|
|
|
IDirect3DDevice9Ex *parent_device;
|
|
|
|
};
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2012-06-12 17:03:46 +02:00
|
|
|
HRESULT vertexshader_init(struct d3d9_vertexshader *shader,
|
2012-05-28 18:17:28 +02:00
|
|
|
struct d3d9_device *device, const DWORD *byte_code) DECLSPEC_HIDDEN;
|
2012-06-12 17:03:46 +02:00
|
|
|
struct d3d9_vertexshader *unsafe_impl_from_IDirect3DVertexShader9(IDirect3DVertexShader9 *iface) DECLSPEC_HIDDEN;
|
2009-09-23 18:42:06 +02:00
|
|
|
|
2012-06-12 17:03:47 +02:00
|
|
|
struct d3d9_pixelshader
|
|
|
|
{
|
2011-07-05 12:05:01 +02:00
|
|
|
IDirect3DPixelShader9 IDirect3DPixelShader9_iface;
|
2012-06-12 17:03:47 +02:00
|
|
|
LONG refcount;
|
2011-03-30 20:49:25 +02:00
|
|
|
struct wined3d_shader *wined3d_shader;
|
2012-06-12 17:03:47 +02:00
|
|
|
IDirect3DDevice9Ex *parent_device;
|
|
|
|
};
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2012-06-12 17:03:47 +02:00
|
|
|
HRESULT pixelshader_init(struct d3d9_pixelshader *shader,
|
2012-05-28 18:17:28 +02:00
|
|
|
struct d3d9_device *device, const DWORD *byte_code) DECLSPEC_HIDDEN;
|
2012-06-12 17:03:47 +02:00
|
|
|
struct d3d9_pixelshader *unsafe_impl_from_IDirect3DPixelShader9(IDirect3DPixelShader9 *iface) DECLSPEC_HIDDEN;
|
2009-09-23 18:42:11 +02:00
|
|
|
|
2012-06-12 17:03:48 +02:00
|
|
|
struct d3d9_query
|
|
|
|
{
|
|
|
|
IDirect3DQuery9 IDirect3DQuery9_iface;
|
|
|
|
LONG refcount;
|
|
|
|
struct wined3d_query *wined3d_query;
|
|
|
|
IDirect3DDevice9Ex *parent_device;
|
2017-02-03 14:08:48 +01:00
|
|
|
DWORD data_size;
|
2012-06-12 17:03:48 +02:00
|
|
|
};
|
2003-07-01 03:09:17 +02:00
|
|
|
|
2012-06-12 17:03:48 +02:00
|
|
|
HRESULT query_init(struct d3d9_query *query, struct d3d9_device *device, D3DQUERYTYPE type) DECLSPEC_HIDDEN;
|
2010-01-17 21:31:29 +01:00
|
|
|
|
2013-09-09 15:43:00 +02:00
|
|
|
static inline struct d3d9_device *impl_from_IDirect3DDevice9Ex(IDirect3DDevice9Ex *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct d3d9_device, IDirect3DDevice9Ex_iface);
|
|
|
|
}
|
|
|
|
|
2018-10-31 10:31:47 +01:00
|
|
|
static inline DWORD d3dusage_from_wined3dusage(unsigned int wined3d_usage, unsigned int bind_flags)
|
2018-01-29 18:40:23 +01:00
|
|
|
{
|
2018-10-31 10:31:47 +01:00
|
|
|
DWORD usage = wined3d_usage & WINED3DUSAGE_MASK;
|
|
|
|
if (bind_flags & WINED3D_BIND_RENDER_TARGET)
|
|
|
|
usage |= D3DUSAGE_RENDERTARGET;
|
|
|
|
if (bind_flags & WINED3D_BIND_DEPTH_STENCIL)
|
|
|
|
usage |= D3DUSAGE_DEPTHSTENCIL;
|
|
|
|
return usage;
|
2018-01-29 18:40:23 +01:00
|
|
|
}
|
|
|
|
|
2018-02-02 17:58:53 +01:00
|
|
|
static inline D3DPOOL d3dpool_from_wined3daccess(unsigned int access, unsigned int usage)
|
|
|
|
{
|
|
|
|
switch (access & (WINED3D_RESOURCE_ACCESS_GPU | WINED3D_RESOURCE_ACCESS_CPU))
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case WINED3D_RESOURCE_ACCESS_GPU:
|
|
|
|
return D3DPOOL_DEFAULT;
|
|
|
|
case WINED3D_RESOURCE_ACCESS_CPU:
|
|
|
|
if (usage & WINED3DUSAGE_SCRATCH)
|
|
|
|
return D3DPOOL_SCRATCH;
|
|
|
|
return D3DPOOL_SYSTEMMEM;
|
|
|
|
case WINED3D_RESOURCE_ACCESS_GPU | WINED3D_RESOURCE_ACCESS_CPU:
|
|
|
|
return D3DPOOL_MANAGED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:17:21 +01:00
|
|
|
static inline unsigned int map_access_from_usage(unsigned int usage)
|
|
|
|
{
|
|
|
|
if (usage & D3DUSAGE_WRITEONLY)
|
|
|
|
return WINED3D_RESOURCE_ACCESS_MAP_W;
|
|
|
|
return WINED3D_RESOURCE_ACCESS_MAP_R | WINED3D_RESOURCE_ACCESS_MAP_W;
|
|
|
|
}
|
|
|
|
|
2018-02-14 07:39:56 +01:00
|
|
|
static inline unsigned int wined3daccess_from_d3dpool(D3DPOOL pool, unsigned int usage)
|
2018-01-29 18:40:23 +01:00
|
|
|
{
|
2019-01-31 13:17:21 +01:00
|
|
|
unsigned int access;
|
|
|
|
|
2018-02-02 17:58:54 +01:00
|
|
|
switch (pool)
|
|
|
|
{
|
|
|
|
case D3DPOOL_DEFAULT:
|
2019-01-31 13:17:21 +01:00
|
|
|
access = WINED3D_RESOURCE_ACCESS_GPU;
|
|
|
|
break;
|
2018-02-02 17:58:54 +01:00
|
|
|
case D3DPOOL_MANAGED:
|
2019-01-31 13:17:21 +01:00
|
|
|
access = WINED3D_RESOURCE_ACCESS_GPU | WINED3D_RESOURCE_ACCESS_CPU;
|
|
|
|
break;
|
2018-02-02 17:58:54 +01:00
|
|
|
case D3DPOOL_SYSTEMMEM:
|
|
|
|
case D3DPOOL_SCRATCH:
|
2019-01-31 13:17:21 +01:00
|
|
|
access = WINED3D_RESOURCE_ACCESS_CPU;
|
|
|
|
break;
|
2018-02-02 17:58:54 +01:00
|
|
|
default:
|
2019-01-31 13:17:21 +01:00
|
|
|
access = 0;
|
2018-02-02 17:58:54 +01:00
|
|
|
}
|
2019-01-31 13:17:21 +01:00
|
|
|
if (pool != D3DPOOL_DEFAULT || usage & D3DUSAGE_DYNAMIC)
|
|
|
|
access |= map_access_from_usage(usage);
|
|
|
|
return access;
|
2018-01-29 18:40:23 +01:00
|
|
|
}
|
|
|
|
|
2018-10-31 10:31:47 +01:00
|
|
|
static inline unsigned int wined3d_bind_flags_from_d3d9_usage(DWORD usage)
|
|
|
|
{
|
|
|
|
unsigned int bind_flags = 0;
|
|
|
|
|
|
|
|
if (usage & D3DUSAGE_RENDERTARGET)
|
|
|
|
bind_flags |= WINED3D_BIND_RENDER_TARGET;
|
|
|
|
if (usage & D3DUSAGE_DEPTHSTENCIL)
|
|
|
|
bind_flags |= WINED3D_BIND_DEPTH_STENCIL;
|
|
|
|
|
|
|
|
return bind_flags;
|
|
|
|
}
|
|
|
|
|
2018-02-13 01:00:42 +01:00
|
|
|
static inline DWORD wined3dusage_from_d3dusage(unsigned int usage)
|
|
|
|
{
|
2018-02-13 01:00:44 +01:00
|
|
|
return usage & WINED3DUSAGE_MASK;
|
2018-02-13 01:00:42 +01:00
|
|
|
}
|
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
#endif /* __WINE_D3D9_PRIVATE_H */
|