2002-03-09 23:29:33 +00:00
|
|
|
/*
|
2008-10-18 17:19:45 +00:00
|
|
|
* Copyright 2006 Stefan Dösinger
|
2002-03-09 23:29:33 +00: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 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-03-09 23:29:33 +00:00
|
|
|
*/
|
2001-01-04 22:44:55 +00:00
|
|
|
|
2000-04-09 14:30:50 +00:00
|
|
|
#ifndef __WINE_DLLS_DDRAW_DDRAW_PRIVATE_H
|
|
|
|
#define __WINE_DLLS_DDRAW_DDRAW_PRIVATE_H
|
1999-03-27 16:53:09 +00:00
|
|
|
|
2010-08-18 17:26:20 +00:00
|
|
|
#include <assert.h>
|
|
|
|
#define COBJMACROS
|
|
|
|
#define NONAMELESSSTRUCT
|
|
|
|
#define NONAMELESSUNION
|
|
|
|
#include "wine/debug.h"
|
1999-12-04 04:22:04 +00:00
|
|
|
|
2000-04-09 14:30:50 +00:00
|
|
|
#include "winbase.h"
|
|
|
|
#include "wingdi.h"
|
1999-05-08 12:50:36 +00:00
|
|
|
#include "winuser.h"
|
2006-06-09 17:36:12 +00:00
|
|
|
|
2010-08-18 17:26:20 +00:00
|
|
|
#include "d3d.h"
|
|
|
|
#include "ddraw.h"
|
2009-01-16 09:14:24 +00:00
|
|
|
#ifdef DDRAW_INIT_GUID
|
|
|
|
#include "initguid.h"
|
|
|
|
#endif
|
2010-08-18 17:26:20 +00:00
|
|
|
#include "wine/list.h"
|
2009-01-16 09:14:24 +00:00
|
|
|
#include "wine/wined3d.h"
|
2004-07-30 18:54:32 +00:00
|
|
|
|
2011-04-20 20:09:26 +00:00
|
|
|
extern const struct wined3d_parent_ops ddraw_surface_wined3d_parent_ops DECLSPEC_HIDDEN;
|
2009-09-17 21:03:32 +00:00
|
|
|
extern const struct wined3d_parent_ops ddraw_null_wined3d_parent_ops DECLSPEC_HIDDEN;
|
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* Typdef the interfaces */
|
|
|
|
typedef struct IDirectDrawPaletteImpl IDirectDrawPaletteImpl;
|
|
|
|
typedef struct IDirect3DDeviceImpl IDirect3DDeviceImpl;
|
|
|
|
typedef struct IDirect3DLightImpl IDirect3DLightImpl;
|
|
|
|
typedef struct IDirect3DViewportImpl IDirect3DViewportImpl;
|
|
|
|
typedef struct IDirect3DMaterialImpl IDirect3DMaterialImpl;
|
|
|
|
typedef struct IDirect3DExecuteBufferImpl IDirect3DExecuteBufferImpl;
|
|
|
|
typedef struct IDirect3DVertexBufferImpl IDirect3DVertexBufferImpl;
|
1999-03-27 16:53:09 +00:00
|
|
|
|
2009-09-17 10:35:28 +00:00
|
|
|
extern DWORD force_refresh_rate DECLSPEC_HIDDEN;
|
2008-03-10 16:44:38 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirectDraw implementation structure
|
|
|
|
*****************************************************************************/
|
2007-04-22 15:55:30 +00:00
|
|
|
struct FvfToDecl
|
|
|
|
{
|
|
|
|
DWORD fvf;
|
2011-02-02 19:22:50 +00:00
|
|
|
struct wined3d_vertex_declaration *decl;
|
2007-04-22 15:55:30 +00:00
|
|
|
};
|
1999-03-27 16:53:09 +00:00
|
|
|
|
2012-03-08 19:27:16 +00:00
|
|
|
struct ddraw
|
1999-03-27 16:53:09 +00:00
|
|
|
{
|
2011-01-19 00:42:43 +00:00
|
|
|
/* Interfaces */
|
|
|
|
IDirectDraw7 IDirectDraw7_iface;
|
2011-01-19 00:40:53 +00:00
|
|
|
IDirectDraw4 IDirectDraw4_iface;
|
2011-01-19 00:36:36 +00:00
|
|
|
IDirectDraw2 IDirectDraw2_iface;
|
2011-01-19 00:33:42 +00:00
|
|
|
IDirectDraw IDirectDraw_iface;
|
2011-01-19 00:32:36 +00:00
|
|
|
IDirect3D7 IDirect3D7_iface;
|
2011-01-19 00:30:21 +00:00
|
|
|
IDirect3D3 IDirect3D3_iface;
|
2011-01-18 11:30:17 +00:00
|
|
|
IDirect3D2 IDirect3D2_iface;
|
2011-01-18 11:28:15 +00:00
|
|
|
IDirect3D IDirect3D_iface;
|
2011-05-18 20:30:13 +00:00
|
|
|
struct wined3d_device_parent device_parent;
|
2001-01-04 22:44:55 +00:00
|
|
|
|
2006-07-10 14:06:33 +00:00
|
|
|
/* See comment in IDirectDraw::AddRef */
|
2006-12-15 16:15:28 +00:00
|
|
|
LONG ref7, ref4, ref2, ref3, ref1, numIfaces;
|
2011-09-18 19:05:28 +00:00
|
|
|
BOOL initialized;
|
2001-01-04 22:44:55 +00:00
|
|
|
|
2011-11-28 20:30:58 +00:00
|
|
|
struct wined3d *wined3d;
|
2011-05-16 21:01:22 +00:00
|
|
|
struct wined3d_device *wined3d_device;
|
2006-06-09 17:36:12 +00:00
|
|
|
BOOL d3d_initialized;
|
2000-07-23 13:39:52 +00:00
|
|
|
|
2012-03-11 21:03:12 +00:00
|
|
|
struct ddraw_surface *primary;
|
2011-10-24 19:24:37 +00:00
|
|
|
RECT primary_lock;
|
2011-09-15 18:01:51 +00:00
|
|
|
struct wined3d_surface *wined3d_frontbuffer;
|
2011-09-19 19:50:24 +00:00
|
|
|
struct wined3d_swapchain *wined3d_swapchain;
|
2011-10-24 19:24:38 +00:00
|
|
|
HWND swapchain_window;
|
2011-09-15 18:01:49 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* DirectDraw things, which are not handled by WineD3D */
|
|
|
|
DWORD cooperative_level;
|
2001-04-16 19:06:13 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
DWORD orig_width, orig_height;
|
|
|
|
DWORD orig_bpp;
|
2001-01-04 22:44:55 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* D3D things */
|
|
|
|
HWND d3d_window;
|
|
|
|
IDirect3DDeviceImpl *d3ddevice;
|
2006-06-24 14:17:10 +00:00
|
|
|
int d3dversion;
|
2000-04-09 14:30:50 +00:00
|
|
|
|
2006-06-23 16:18:02 +00:00
|
|
|
/* Various HWNDs */
|
2006-06-09 17:36:12 +00:00
|
|
|
HWND focuswindow;
|
|
|
|
HWND devicewindow;
|
2008-08-05 19:24:10 +00:00
|
|
|
HWND dest_window;
|
2000-04-09 14:30:50 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* Helpers for surface creation */
|
2012-03-11 21:03:12 +00:00
|
|
|
struct ddraw_surface *tex_root;
|
2006-06-09 17:36:12 +00:00
|
|
|
|
|
|
|
/* For the dll unload cleanup code */
|
2006-10-09 12:40:30 +00:00
|
|
|
struct list ddraw_list_entry;
|
2006-10-14 19:57:09 +00:00
|
|
|
/* The surface list - can't relay this to WineD3D
|
|
|
|
* because of IParent
|
|
|
|
*/
|
|
|
|
struct list surface_list;
|
2007-04-22 15:55:30 +00:00
|
|
|
|
|
|
|
/* FVF management */
|
|
|
|
struct FvfToDecl *decls;
|
|
|
|
UINT numConvertedDecls, declArraySize;
|
1999-03-27 16:53:09 +00:00
|
|
|
};
|
|
|
|
|
2011-12-22 20:51:22 +00:00
|
|
|
#define DDRAW_WINDOW_CLASS_NAME "DirectDrawDeviceWnd"
|
2010-06-18 11:09:50 +00:00
|
|
|
|
2012-03-08 19:27:16 +00:00
|
|
|
HRESULT ddraw_init(struct ddraw *ddraw, enum wined3d_device_type device_type) DECLSPEC_HIDDEN;
|
|
|
|
void ddraw_destroy_swapchain(struct ddraw *ddraw) DECLSPEC_HIDDEN;
|
2006-06-09 17:36:12 +00:00
|
|
|
|
2012-03-08 19:27:16 +00:00
|
|
|
static inline void ddraw_set_swapchain_window(struct ddraw *ddraw, HWND window)
|
2011-11-17 19:11:40 +00:00
|
|
|
{
|
|
|
|
if (window == GetDesktopWindow())
|
|
|
|
window = NULL;
|
|
|
|
ddraw->swapchain_window = window;
|
|
|
|
}
|
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* Utility functions */
|
2009-09-17 10:35:28 +00:00
|
|
|
void DDRAW_Convert_DDSCAPS_1_To_2(const DDSCAPS *pIn, DDSCAPS2 *pOut) DECLSPEC_HIDDEN;
|
|
|
|
void DDRAW_Convert_DDDEVICEIDENTIFIER_2_To_1(const DDDEVICEIDENTIFIER2 *pIn, DDDEVICEIDENTIFIER *pOut) DECLSPEC_HIDDEN;
|
2012-03-08 19:27:16 +00:00
|
|
|
struct wined3d_vertex_declaration *ddraw_find_decl(struct ddraw *ddraw, DWORD fvf) DECLSPEC_HIDDEN;
|
2007-04-22 15:55:30 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* The default surface type */
|
2012-01-19 23:36:28 +00:00
|
|
|
extern enum wined3d_surface_type DefaultSurfaceType DECLSPEC_HIDDEN;
|
2006-06-09 17:36:12 +00:00
|
|
|
|
1999-03-27 16:53:09 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirectDrawSurface implementation structure
|
2006-06-09 17:36:12 +00:00
|
|
|
*****************************************************************************/
|
2001-01-04 22:44:55 +00:00
|
|
|
|
2012-03-11 21:03:12 +00:00
|
|
|
struct ddraw_surface
|
1999-03-27 16:53:09 +00:00
|
|
|
{
|
2001-01-04 22:44:55 +00:00
|
|
|
/* IUnknown fields */
|
2011-06-05 16:55:04 +00:00
|
|
|
IDirectDrawSurface7 IDirectDrawSurface7_iface;
|
2011-06-06 11:39:04 +00:00
|
|
|
IDirectDrawSurface4 IDirectDrawSurface4_iface;
|
2011-05-31 11:57:04 +00:00
|
|
|
IDirectDrawSurface3 IDirectDrawSurface3_iface;
|
2011-06-09 14:35:15 +00:00
|
|
|
IDirectDrawSurface2 IDirectDrawSurface2_iface;
|
2011-06-09 15:29:36 +00:00
|
|
|
IDirectDrawSurface IDirectDrawSurface_iface;
|
2011-06-08 15:23:17 +00:00
|
|
|
IDirectDrawGammaControl IDirectDrawGammaControl_iface;
|
2011-07-29 15:55:50 +00:00
|
|
|
IDirect3DTexture2 IDirect3DTexture2_iface;
|
2011-07-27 14:45:13 +00:00
|
|
|
IDirect3DTexture IDirect3DTexture_iface;
|
1999-07-03 11:57:29 +00:00
|
|
|
|
2011-06-27 23:53:17 +00:00
|
|
|
LONG ref7, ref4, ref3, ref2, ref1, iface_count, gamma_count;
|
2006-07-10 14:06:33 +00:00
|
|
|
IUnknown *ifaceToRelease;
|
1999-03-27 16:53:09 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
int version;
|
1999-04-06 07:10:48 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* Connections to other Objects */
|
2012-03-08 19:27:16 +00:00
|
|
|
struct ddraw *ddraw;
|
2011-04-29 11:03:41 +00:00
|
|
|
struct wined3d_surface *wined3d_surface;
|
2011-03-18 18:10:59 +00:00
|
|
|
struct wined3d_texture *wined3d_texture;
|
1999-03-27 16:53:09 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* This implementation handles attaching surfaces to other surfaces */
|
2012-03-11 21:03:12 +00:00
|
|
|
struct ddraw_surface *next_attached;
|
|
|
|
struct ddraw_surface *first_attached;
|
2011-10-11 19:59:21 +00:00
|
|
|
IUnknown *attached_iface;
|
2007-04-27 13:31:12 +00:00
|
|
|
|
|
|
|
/* Complex surfaces are organized in a tree, although the tree is degenerated to a list in most cases.
|
|
|
|
* In mipmap and primary surfaces each level has only one attachment, which is the next surface level.
|
|
|
|
* Only the cube texture root has 6 surfaces attached, which then have a normal mipmap chain attached
|
|
|
|
* to them. So hardcode the array to 6, a dynamic array or a list would be an overkill.
|
|
|
|
*/
|
|
|
|
#define MAX_COMPLEX_ATTACHED 6
|
2012-03-11 21:03:12 +00:00
|
|
|
struct ddraw_surface *complex_array[MAX_COMPLEX_ATTACHED];
|
2007-04-27 13:31:12 +00:00
|
|
|
/* You can't traverse the tree upwards. Only a flag for Surface::Release because its needed there,
|
|
|
|
* but no pointer to prevent temptations to traverse it in the wrong direction.
|
|
|
|
*/
|
|
|
|
BOOL is_complex_root;
|
1999-12-04 03:55:58 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* Surface description, for GetAttachedSurface */
|
|
|
|
DDSURFACEDESC2 surface_desc;
|
1999-03-27 16:53:09 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* Misc things */
|
|
|
|
DWORD uniqueness_value;
|
|
|
|
UINT mipmap_level;
|
2001-01-04 22:44:55 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* Clipper objects */
|
2011-12-12 19:53:55 +00:00
|
|
|
struct ddraw_clipper *clipper;
|
2001-01-04 22:44:55 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* For the ddraw surface list */
|
2006-10-14 19:57:09 +00:00
|
|
|
struct list surface_list_entry;
|
2006-06-16 21:44:33 +00:00
|
|
|
|
|
|
|
DWORD Handle;
|
2006-06-09 17:36:12 +00:00
|
|
|
};
|
2000-04-09 14:30:50 +00:00
|
|
|
|
2012-03-11 21:03:12 +00:00
|
|
|
HRESULT ddraw_surface_create_texture(struct ddraw_surface *surface) DECLSPEC_HIDDEN;
|
|
|
|
HRESULT ddraw_surface_init(struct ddraw_surface *surface, struct ddraw *ddraw,
|
2011-08-30 18:12:33 +00:00
|
|
|
DDSURFACEDESC2 *desc, UINT mip_level, UINT version) DECLSPEC_HIDDEN;
|
2012-03-11 21:03:12 +00:00
|
|
|
ULONG ddraw_surface_release_iface(struct ddraw_surface *This) DECLSPEC_HIDDEN;
|
2007-05-04 16:31:14 +00:00
|
|
|
|
2012-03-11 21:03:12 +00:00
|
|
|
static inline struct ddraw_surface *impl_from_IDirect3DTexture(IDirect3DTexture *iface)
|
2009-01-22 09:33:37 +00:00
|
|
|
{
|
2012-03-11 21:03:12 +00:00
|
|
|
return CONTAINING_RECORD(iface, struct ddraw_surface, IDirect3DTexture_iface);
|
2009-01-22 09:33:37 +00:00
|
|
|
}
|
|
|
|
|
2012-03-11 21:03:12 +00:00
|
|
|
static inline struct ddraw_surface *impl_from_IDirect3DTexture2(IDirect3DTexture2 *iface)
|
2009-01-22 09:33:37 +00:00
|
|
|
{
|
2012-03-11 21:03:12 +00:00
|
|
|
return CONTAINING_RECORD(iface, struct ddraw_surface, IDirect3DTexture2_iface);
|
2009-01-22 09:33:37 +00:00
|
|
|
}
|
|
|
|
|
2012-03-11 21:03:12 +00:00
|
|
|
static inline struct ddraw_surface *impl_from_IDirectDrawSurface(IDirectDrawSurface *iface)
|
2011-06-09 15:29:36 +00:00
|
|
|
{
|
2012-03-11 21:03:12 +00:00
|
|
|
return CONTAINING_RECORD(iface, struct ddraw_surface, IDirectDrawSurface_iface);
|
2011-06-09 15:29:36 +00:00
|
|
|
}
|
|
|
|
|
2012-03-11 21:03:12 +00:00
|
|
|
static inline struct ddraw_surface *impl_from_IDirectDrawSurface2(IDirectDrawSurface2 *iface)
|
2011-06-09 14:35:15 +00:00
|
|
|
{
|
2012-03-11 21:03:12 +00:00
|
|
|
return CONTAINING_RECORD(iface, struct ddraw_surface, IDirectDrawSurface2_iface);
|
2011-06-09 14:35:15 +00:00
|
|
|
}
|
|
|
|
|
2012-03-11 21:03:12 +00:00
|
|
|
static inline struct ddraw_surface *impl_from_IDirectDrawSurface3(IDirectDrawSurface3 *iface)
|
2009-01-22 09:33:37 +00:00
|
|
|
{
|
2012-03-11 21:03:12 +00:00
|
|
|
return CONTAINING_RECORD(iface, struct ddraw_surface, IDirectDrawSurface3_iface);
|
2009-01-22 09:33:37 +00:00
|
|
|
}
|
|
|
|
|
2012-03-11 21:03:12 +00:00
|
|
|
static inline struct ddraw_surface *impl_from_IDirectDrawSurface4(IDirectDrawSurface4 *iface)
|
2011-06-06 11:39:04 +00:00
|
|
|
{
|
2012-03-11 21:03:12 +00:00
|
|
|
return CONTAINING_RECORD(iface, struct ddraw_surface, IDirectDrawSurface4_iface);
|
2011-06-06 11:39:04 +00:00
|
|
|
}
|
|
|
|
|
2012-03-11 21:03:12 +00:00
|
|
|
static inline struct ddraw_surface *impl_from_IDirectDrawSurface7(IDirectDrawSurface7 *iface)
|
2011-06-06 10:57:55 +00:00
|
|
|
{
|
2012-03-11 21:03:12 +00:00
|
|
|
return CONTAINING_RECORD(iface, struct ddraw_surface, IDirectDrawSurface7_iface);
|
2011-06-06 10:57:55 +00:00
|
|
|
}
|
|
|
|
|
2012-03-11 21:03:12 +00:00
|
|
|
struct ddraw_surface *unsafe_impl_from_IDirectDrawSurface(IDirectDrawSurface *iface) DECLSPEC_HIDDEN;
|
|
|
|
struct ddraw_surface *unsafe_impl_from_IDirectDrawSurface4(IDirectDrawSurface4 *iface) DECLSPEC_HIDDEN;
|
|
|
|
struct ddraw_surface *unsafe_impl_from_IDirectDrawSurface7(IDirectDrawSurface7 *iface) DECLSPEC_HIDDEN;
|
2011-05-31 12:49:37 +00:00
|
|
|
|
2012-03-11 21:03:12 +00:00
|
|
|
struct ddraw_surface *unsafe_impl_from_IDirect3DTexture(IDirect3DTexture *iface) DECLSPEC_HIDDEN;
|
|
|
|
struct ddraw_surface *unsafe_impl_from_IDirect3DTexture2(IDirect3DTexture2 *iface) DECLSPEC_HIDDEN;
|
2011-07-27 14:43:24 +00:00
|
|
|
|
2010-07-29 10:56:57 +00:00
|
|
|
#define DDRAW_INVALID_HANDLE ~0U
|
|
|
|
|
|
|
|
enum ddraw_handle_type
|
|
|
|
{
|
|
|
|
DDRAW_HANDLE_FREE,
|
|
|
|
DDRAW_HANDLE_MATERIAL,
|
2010-07-29 10:56:58 +00:00
|
|
|
DDRAW_HANDLE_MATRIX,
|
2010-07-30 08:15:23 +00:00
|
|
|
DDRAW_HANDLE_STATEBLOCK,
|
2010-07-30 08:15:24 +00:00
|
|
|
DDRAW_HANDLE_SURFACE,
|
2010-07-29 10:56:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ddraw_handle_entry
|
|
|
|
{
|
|
|
|
void *object;
|
|
|
|
enum ddraw_handle_type type;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ddraw_handle_table
|
|
|
|
{
|
|
|
|
struct ddraw_handle_entry *entries;
|
|
|
|
struct ddraw_handle_entry *free_entries;
|
|
|
|
UINT table_size;
|
|
|
|
UINT entry_count;
|
|
|
|
};
|
|
|
|
|
|
|
|
BOOL ddraw_handle_table_init(struct ddraw_handle_table *t, UINT initial_size) DECLSPEC_HIDDEN;
|
|
|
|
void ddraw_handle_table_destroy(struct ddraw_handle_table *t) DECLSPEC_HIDDEN;
|
|
|
|
DWORD ddraw_allocate_handle(struct ddraw_handle_table *t, void *object, enum ddraw_handle_type type) DECLSPEC_HIDDEN;
|
|
|
|
void *ddraw_free_handle(struct ddraw_handle_table *t, DWORD handle, enum ddraw_handle_type type) DECLSPEC_HIDDEN;
|
|
|
|
void *ddraw_get_object(struct ddraw_handle_table *t, DWORD handle, enum ddraw_handle_type type) DECLSPEC_HIDDEN;
|
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
struct IDirect3DDeviceImpl
|
|
|
|
{
|
|
|
|
/* IUnknown */
|
2011-10-17 13:58:51 +00:00
|
|
|
IDirect3DDevice7 IDirect3DDevice7_iface;
|
2011-10-17 13:58:11 +00:00
|
|
|
IDirect3DDevice3 IDirect3DDevice3_iface;
|
2011-10-17 13:57:46 +00:00
|
|
|
IDirect3DDevice2 IDirect3DDevice2_iface;
|
2011-10-17 13:57:11 +00:00
|
|
|
IDirect3DDevice IDirect3DDevice_iface;
|
2006-06-09 17:36:12 +00:00
|
|
|
LONG ref;
|
|
|
|
|
|
|
|
/* Other object connections */
|
2011-05-16 21:01:22 +00:00
|
|
|
struct wined3d_device *wined3d_device;
|
2012-03-08 19:27:16 +00:00
|
|
|
struct ddraw *ddraw;
|
2011-03-03 20:49:09 +00:00
|
|
|
struct wined3d_buffer *indexbuffer;
|
2012-03-11 21:03:12 +00:00
|
|
|
struct ddraw_surface *target;
|
2006-06-09 17:36:12 +00:00
|
|
|
|
|
|
|
/* Viewport management */
|
2011-04-19 18:05:52 +00:00
|
|
|
struct list viewport_list;
|
2006-06-09 17:36:12 +00:00
|
|
|
IDirect3DViewportImpl *current_viewport;
|
|
|
|
D3DVIEWPORT7 active_viewport;
|
|
|
|
|
2008-05-05 17:09:40 +00:00
|
|
|
/* Required to keep track which of two available texture blending modes in d3ddevice3 is used */
|
|
|
|
BOOL legacyTextureBlending;
|
2012-01-17 20:13:32 +00:00
|
|
|
BOOL from_surface;
|
|
|
|
|
2011-12-21 20:34:56 +00:00
|
|
|
D3DMATRIX legacy_projection;
|
|
|
|
D3DMATRIX legacy_clipspace;
|
2008-05-05 17:09:40 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* Light state */
|
|
|
|
DWORD material;
|
|
|
|
|
|
|
|
/* Rendering functions to wrap D3D(1-3) to D3D7 */
|
|
|
|
D3DPRIMITIVETYPE primitive_type;
|
|
|
|
DWORD vertex_type;
|
|
|
|
DWORD render_flags;
|
|
|
|
DWORD nb_vertices;
|
|
|
|
LPBYTE vertex_buffer;
|
|
|
|
DWORD vertex_size;
|
|
|
|
DWORD buffer_size;
|
2006-06-16 21:44:33 +00:00
|
|
|
|
|
|
|
/* Handle management */
|
2010-07-29 10:56:57 +00:00
|
|
|
struct ddraw_handle_table handle_table;
|
2007-07-01 21:28:21 +00:00
|
|
|
D3DMATRIXHANDLE world, proj, view;
|
2006-06-09 17:36:12 +00:00
|
|
|
};
|
2004-08-02 18:24:40 +00:00
|
|
|
|
2012-03-08 19:27:16 +00:00
|
|
|
HRESULT d3d_device_init(IDirect3DDeviceImpl *device, struct ddraw *ddraw,
|
2012-03-11 21:03:12 +00:00
|
|
|
struct ddraw_surface *target) DECLSPEC_HIDDEN;
|
2004-08-02 18:24:40 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* The IID */
|
2009-09-17 10:35:28 +00:00
|
|
|
extern const GUID IID_D3DDEVICE_WineD3D DECLSPEC_HIDDEN;
|
2000-04-09 14:30:50 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* Helper functions */
|
2011-02-01 18:39:53 +00:00
|
|
|
HRESULT IDirect3DImpl_GetCaps(const struct wined3d *wined3d,
|
|
|
|
D3DDEVICEDESC *Desc123, D3DDEVICEDESC7 *Desc7) DECLSPEC_HIDDEN;
|
2011-12-21 20:34:59 +00:00
|
|
|
enum wined3d_depth_buffer_type IDirect3DDeviceImpl_UpdateDepthStencil(IDirect3DDeviceImpl *device) DECLSPEC_HIDDEN;
|
2002-11-30 19:06:52 +00:00
|
|
|
|
2011-10-17 13:57:00 +00:00
|
|
|
static inline IDirect3DDeviceImpl *impl_from_IDirect3DDevice(IDirect3DDevice *iface)
|
2009-01-22 09:33:37 +00:00
|
|
|
{
|
2011-10-17 13:57:11 +00:00
|
|
|
return CONTAINING_RECORD(iface, IDirect3DDeviceImpl, IDirect3DDevice_iface);
|
2009-01-22 09:33:37 +00:00
|
|
|
}
|
|
|
|
|
2011-10-17 13:57:34 +00:00
|
|
|
static inline IDirect3DDeviceImpl *impl_from_IDirect3DDevice2(IDirect3DDevice2 *iface)
|
2009-01-22 09:33:37 +00:00
|
|
|
{
|
2011-10-17 13:57:46 +00:00
|
|
|
return CONTAINING_RECORD(iface, IDirect3DDeviceImpl, IDirect3DDevice2_iface);
|
2009-01-22 09:33:37 +00:00
|
|
|
}
|
|
|
|
|
2011-10-17 13:58:00 +00:00
|
|
|
static inline IDirect3DDeviceImpl *impl_from_IDirect3DDevice3(IDirect3DDevice3 *iface)
|
2009-01-22 09:33:37 +00:00
|
|
|
{
|
2011-10-17 13:58:11 +00:00
|
|
|
return CONTAINING_RECORD(iface, IDirect3DDeviceImpl, IDirect3DDevice3_iface);
|
2009-01-22 09:33:37 +00:00
|
|
|
}
|
|
|
|
|
2011-10-17 13:58:40 +00:00
|
|
|
static inline IDirect3DDeviceImpl *impl_from_IDirect3DDevice7(IDirect3DDevice7 *iface)
|
|
|
|
{
|
2011-10-17 13:58:51 +00:00
|
|
|
return CONTAINING_RECORD(iface, IDirect3DDeviceImpl, IDirect3DDevice7_iface);
|
2011-10-17 13:58:40 +00:00
|
|
|
}
|
|
|
|
|
2011-10-17 13:56:43 +00:00
|
|
|
IDirect3DDeviceImpl *unsafe_impl_from_IDirect3DDevice(IDirect3DDevice *iface) DECLSPEC_HIDDEN;
|
2011-10-17 13:57:19 +00:00
|
|
|
IDirect3DDeviceImpl *unsafe_impl_from_IDirect3DDevice2(IDirect3DDevice2 *iface) DECLSPEC_HIDDEN;
|
2011-10-17 13:57:53 +00:00
|
|
|
IDirect3DDeviceImpl *unsafe_impl_from_IDirect3DDevice3(IDirect3DDevice3 *iface) DECLSPEC_HIDDEN;
|
2011-10-17 13:58:25 +00:00
|
|
|
IDirect3DDeviceImpl *unsafe_impl_from_IDirect3DDevice7(IDirect3DDevice7 *iface) DECLSPEC_HIDDEN;
|
2011-10-17 13:56:43 +00:00
|
|
|
|
2011-12-12 19:53:55 +00:00
|
|
|
struct ddraw_clipper
|
2006-06-09 17:36:12 +00:00
|
|
|
{
|
2011-06-20 09:20:41 +00:00
|
|
|
IDirectDrawClipper IDirectDrawClipper_iface;
|
2006-06-09 17:36:12 +00:00
|
|
|
LONG ref;
|
2011-12-12 19:53:55 +00:00
|
|
|
HWND window;
|
2012-01-06 10:20:04 +00:00
|
|
|
HRGN region;
|
2010-07-19 10:47:57 +00:00
|
|
|
BOOL initialized;
|
2006-06-09 17:36:12 +00:00
|
|
|
};
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2011-12-12 19:53:55 +00:00
|
|
|
HRESULT ddraw_clipper_init(struct ddraw_clipper *clipper) DECLSPEC_HIDDEN;
|
|
|
|
struct ddraw_clipper *unsafe_impl_from_IDirectDrawClipper(IDirectDrawClipper *iface) DECLSPEC_HIDDEN;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
|
|
|
/*****************************************************************************
|
2006-06-09 17:36:12 +00:00
|
|
|
* IDirectDrawPalette implementation structure
|
|
|
|
*****************************************************************************/
|
|
|
|
struct IDirectDrawPaletteImpl
|
|
|
|
{
|
|
|
|
/* IUnknown fields */
|
2011-10-03 22:14:27 +00:00
|
|
|
IDirectDrawPalette IDirectDrawPalette_iface;
|
2006-06-09 17:36:12 +00:00
|
|
|
LONG ref;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2011-02-02 19:22:52 +00:00
|
|
|
struct wined3d_palette *wineD3DPalette;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* IDirectDrawPalette fields */
|
2006-07-10 08:53:11 +00:00
|
|
|
IUnknown *ifaceToRelease;
|
2006-06-09 17:36:12 +00:00
|
|
|
};
|
2010-08-19 16:57:46 +00:00
|
|
|
|
2011-10-03 22:14:27 +00:00
|
|
|
static inline IDirectDrawPaletteImpl *impl_from_IDirectDrawPalette(IDirectDrawPalette *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, IDirectDrawPaletteImpl, IDirectDrawPalette_iface);
|
|
|
|
}
|
|
|
|
|
2011-10-03 22:14:08 +00:00
|
|
|
IDirectDrawPaletteImpl *unsafe_impl_from_IDirectDrawPalette(IDirectDrawPalette *iface) DECLSPEC_HIDDEN;
|
|
|
|
|
2010-08-19 16:57:46 +00:00
|
|
|
HRESULT ddraw_palette_init(IDirectDrawPaletteImpl *palette,
|
2012-03-08 19:27:16 +00:00
|
|
|
struct ddraw *ddraw, DWORD flags, PALETTEENTRY *entries) DECLSPEC_HIDDEN;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* Helper structures */
|
|
|
|
struct object_creation_info
|
|
|
|
{
|
|
|
|
const CLSID *clsid;
|
|
|
|
HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, REFIID riid,
|
|
|
|
void **ppObj);
|
|
|
|
};
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* IDirect3DLight implementation structure - Wraps to D3D7
|
|
|
|
******************************************************************************/
|
|
|
|
struct IDirect3DLightImpl
|
|
|
|
{
|
2011-06-09 09:53:52 +00:00
|
|
|
IDirect3DLight IDirect3DLight_iface;
|
2006-06-09 17:36:12 +00:00
|
|
|
LONG ref;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* IDirect3DLight fields */
|
2012-03-08 19:27:16 +00:00
|
|
|
struct ddraw *ddraw;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* If this light is active for one viewport, put the viewport here */
|
|
|
|
IDirect3DViewportImpl *active_viewport;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
D3DLIGHT2 light;
|
|
|
|
D3DLIGHT7 light7;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
DWORD dwLightIndex;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2011-04-21 20:39:28 +00:00
|
|
|
struct list entry;
|
2006-06-09 17:36:12 +00:00
|
|
|
};
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* Helper functions */
|
2010-08-17 17:03:23 +00:00
|
|
|
void light_activate(IDirect3DLightImpl *light) DECLSPEC_HIDDEN;
|
|
|
|
void light_deactivate(IDirect3DLightImpl *light) DECLSPEC_HIDDEN;
|
2012-03-08 19:27:16 +00:00
|
|
|
void d3d_light_init(IDirect3DLightImpl *light, struct ddraw *ddraw) DECLSPEC_HIDDEN;
|
2011-06-09 09:57:45 +00:00
|
|
|
IDirect3DLightImpl *unsafe_impl_from_IDirect3DLight(IDirect3DLight *iface) DECLSPEC_HIDDEN;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* IDirect3DMaterial implementation structure - Wraps to D3D7
|
|
|
|
******************************************************************************/
|
|
|
|
struct IDirect3DMaterialImpl
|
2005-06-02 10:33:06 +00:00
|
|
|
{
|
2011-06-08 15:38:16 +00:00
|
|
|
IDirect3DMaterial3 IDirect3DMaterial3_iface;
|
2011-06-07 07:44:03 +00:00
|
|
|
IDirect3DMaterial2 IDirect3DMaterial2_iface;
|
2011-06-07 07:54:33 +00:00
|
|
|
IDirect3DMaterial IDirect3DMaterial_iface;
|
2006-06-09 17:36:12 +00:00
|
|
|
LONG ref;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* IDirect3DMaterial2 fields */
|
2012-03-08 19:27:16 +00:00
|
|
|
struct ddraw *ddraw;
|
2006-06-09 17:36:12 +00:00
|
|
|
IDirect3DDeviceImpl *active_device;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
D3DMATERIAL mat;
|
2006-06-16 21:44:33 +00:00
|
|
|
DWORD Handle;
|
2006-06-09 17:36:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Helper functions */
|
2009-09-17 10:35:28 +00:00
|
|
|
void material_activate(IDirect3DMaterialImpl* This) DECLSPEC_HIDDEN;
|
2012-03-08 19:27:16 +00:00
|
|
|
IDirect3DMaterialImpl *d3d_material_create(struct ddraw *ddraw) DECLSPEC_HIDDEN;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
|
|
|
/*****************************************************************************
|
2006-06-09 17:36:12 +00:00
|
|
|
* IDirect3DViewport - Wraps to D3D7
|
|
|
|
*****************************************************************************/
|
|
|
|
struct IDirect3DViewportImpl
|
2005-06-02 10:33:06 +00:00
|
|
|
{
|
2011-10-03 22:14:51 +00:00
|
|
|
IDirect3DViewport3 IDirect3DViewport3_iface;
|
2006-06-09 17:36:12 +00:00
|
|
|
LONG ref;
|
|
|
|
|
|
|
|
/* IDirect3DViewport fields */
|
2012-03-08 19:27:16 +00:00
|
|
|
struct ddraw *ddraw;
|
2006-06-09 17:36:12 +00:00
|
|
|
|
|
|
|
/* If this viewport is active for one device, put the device here */
|
|
|
|
IDirect3DDeviceImpl *active_device;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
DWORD num_lights;
|
|
|
|
DWORD map_lights;
|
|
|
|
|
|
|
|
int use_vp2;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
|
|
|
union
|
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
D3DVIEWPORT vp1;
|
|
|
|
D3DVIEWPORT2 vp2;
|
|
|
|
} viewports;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2011-04-19 18:05:52 +00:00
|
|
|
struct list entry;
|
2011-04-21 20:39:28 +00:00
|
|
|
struct list light_list;
|
2006-06-09 17:36:12 +00:00
|
|
|
|
|
|
|
/* Background material */
|
|
|
|
IDirect3DMaterialImpl *background;
|
2005-06-02 10:33:06 +00:00
|
|
|
};
|
|
|
|
|
2011-10-03 22:14:37 +00:00
|
|
|
IDirect3DViewportImpl *unsafe_impl_from_IDirect3DViewport3(IDirect3DViewport3 *iface) DECLSPEC_HIDDEN;
|
2011-10-03 22:14:59 +00:00
|
|
|
IDirect3DViewportImpl *unsafe_impl_from_IDirect3DViewport2(IDirect3DViewport2 *iface) DECLSPEC_HIDDEN;
|
2011-10-03 22:14:54 +00:00
|
|
|
IDirect3DViewportImpl *unsafe_impl_from_IDirect3DViewport(IDirect3DViewport *iface) DECLSPEC_HIDDEN;
|
2011-10-03 22:14:37 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* Helper functions */
|
2009-09-17 10:35:28 +00:00
|
|
|
void viewport_activate(IDirect3DViewportImpl* This, BOOL ignore_lights) DECLSPEC_HIDDEN;
|
2012-03-08 19:27:16 +00:00
|
|
|
void d3d_viewport_init(IDirect3DViewportImpl *viewport, struct ddraw *ddraw) DECLSPEC_HIDDEN;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
|
|
|
/*****************************************************************************
|
2006-06-09 17:36:12 +00:00
|
|
|
* IDirect3DExecuteBuffer - Wraps to D3D7
|
|
|
|
*****************************************************************************/
|
|
|
|
struct IDirect3DExecuteBufferImpl
|
2005-06-02 10:33:06 +00:00
|
|
|
{
|
2011-07-08 10:26:57 +00:00
|
|
|
IDirect3DExecuteBuffer IDirect3DExecuteBuffer_iface;
|
|
|
|
LONG ref;
|
2006-06-09 17:36:12 +00:00
|
|
|
/* IDirect3DExecuteBuffer fields */
|
2012-03-08 19:27:16 +00:00
|
|
|
struct ddraw *ddraw;
|
2006-06-09 17:36:12 +00:00
|
|
|
IDirect3DDeviceImpl *d3ddev;
|
|
|
|
|
|
|
|
D3DEXECUTEBUFFERDESC desc;
|
|
|
|
D3DEXECUTEDATA data;
|
|
|
|
|
|
|
|
/* This buffer will store the transformed vertices */
|
|
|
|
void *vertex_data;
|
|
|
|
WORD *indices;
|
|
|
|
int nb_indices;
|
|
|
|
|
|
|
|
/* This flags is set to TRUE if we allocated ourselves the
|
|
|
|
* data buffer
|
|
|
|
*/
|
|
|
|
BOOL need_free;
|
2005-06-02 10:33:06 +00:00
|
|
|
};
|
|
|
|
|
2010-08-19 16:57:45 +00:00
|
|
|
HRESULT d3d_execute_buffer_init(IDirect3DExecuteBufferImpl *execute_buffer,
|
|
|
|
IDirect3DDeviceImpl *device, D3DEXECUTEBUFFERDESC *desc) DECLSPEC_HIDDEN;
|
2011-07-08 10:28:27 +00:00
|
|
|
IDirect3DExecuteBufferImpl *unsafe_impl_from_IDirect3DExecuteBuffer(IDirect3DExecuteBuffer *iface) DECLSPEC_HIDDEN;
|
2006-06-09 17:36:12 +00:00
|
|
|
|
|
|
|
/* The execute function */
|
2011-04-18 22:08:00 +00:00
|
|
|
HRESULT d3d_execute_buffer_execute(IDirect3DExecuteBufferImpl *execute_buffer,
|
|
|
|
IDirect3DDeviceImpl *device, IDirect3DViewportImpl *viewport) DECLSPEC_HIDDEN;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
|
|
|
/*****************************************************************************
|
2006-06-09 17:36:12 +00:00
|
|
|
* IDirect3DVertexBuffer
|
|
|
|
*****************************************************************************/
|
|
|
|
struct IDirect3DVertexBufferImpl
|
|
|
|
{
|
2011-06-15 10:48:18 +00:00
|
|
|
IDirect3DVertexBuffer7 IDirect3DVertexBuffer7_iface;
|
2011-06-15 10:46:31 +00:00
|
|
|
IDirect3DVertexBuffer IDirect3DVertexBuffer_iface;
|
|
|
|
LONG ref;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2007-01-06 17:26:08 +00:00
|
|
|
/*** WineD3D and ddraw links ***/
|
2011-03-03 20:49:09 +00:00
|
|
|
struct wined3d_buffer *wineD3DVertexBuffer;
|
2011-02-02 19:22:50 +00:00
|
|
|
struct wined3d_vertex_declaration *wineD3DVertexDeclaration;
|
2012-03-08 19:27:16 +00:00
|
|
|
struct ddraw *ddraw;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/*** Storage for D3D7 specific things ***/
|
|
|
|
DWORD Caps;
|
2009-04-06 12:09:54 +00:00
|
|
|
DWORD fvf;
|
2005-06-02 10:33:06 +00:00
|
|
|
};
|
|
|
|
|
2012-03-08 19:27:16 +00:00
|
|
|
HRESULT d3d_vertex_buffer_create(IDirect3DVertexBufferImpl **vertex_buf, struct ddraw *ddraw,
|
2011-06-15 10:36:49 +00:00
|
|
|
D3DVERTEXBUFFERDESC *desc) DECLSPEC_HIDDEN;
|
2011-06-15 10:40:44 +00:00
|
|
|
IDirect3DVertexBufferImpl *unsafe_impl_from_IDirect3DVertexBuffer(IDirect3DVertexBuffer *iface) DECLSPEC_HIDDEN;
|
|
|
|
IDirect3DVertexBufferImpl *unsafe_impl_from_IDirect3DVertexBuffer7(IDirect3DVertexBuffer7 *iface) DECLSPEC_HIDDEN;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
|
|
|
/*****************************************************************************
|
2006-06-09 17:36:12 +00:00
|
|
|
* Helper functions from utils.c
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#define GET_TEXCOUNT_FROM_FVF(d3dvtVertexType) \
|
|
|
|
(((d3dvtVertexType) & D3DFVF_TEXCOUNT_MASK) >> D3DFVF_TEXCOUNT_SHIFT)
|
|
|
|
|
|
|
|
#define GET_TEXCOORD_SIZE_FROM_FVF(d3dvtVertexType, tex_num) \
|
|
|
|
(((((d3dvtVertexType) >> (16 + (2 * (tex_num)))) + 1) & 0x03) + 1)
|
|
|
|
|
2010-08-23 16:28:10 +00:00
|
|
|
void PixelFormat_WineD3DtoDD(DDPIXELFORMAT *DDPixelFormat, enum wined3d_format_id WineD3DFormat) DECLSPEC_HIDDEN;
|
|
|
|
enum wined3d_format_id PixelFormat_DD2WineD3D(const DDPIXELFORMAT *DDPixelFormat) DECLSPEC_HIDDEN;
|
2009-09-17 10:35:28 +00:00
|
|
|
void DDRAW_dump_surface_desc(const DDSURFACEDESC2 *lpddsd) DECLSPEC_HIDDEN;
|
|
|
|
void dump_D3DMATRIX(const D3DMATRIX *mat) DECLSPEC_HIDDEN;
|
|
|
|
void DDRAW_dump_DDCAPS(const DDCAPS *lpcaps) DECLSPEC_HIDDEN;
|
|
|
|
DWORD get_flexible_vertex_size(DWORD d3dvtVertexType) DECLSPEC_HIDDEN;
|
|
|
|
void DDRAW_dump_DDSCAPS2(const DDSCAPS2 *in) DECLSPEC_HIDDEN;
|
|
|
|
void DDRAW_dump_cooperativelevel(DWORD cooplevel) DECLSPEC_HIDDEN;
|
2011-08-26 12:22:40 +00:00
|
|
|
void DDSD_to_DDSD2(const DDSURFACEDESC *in, DDSURFACEDESC2 *out) DECLSPEC_HIDDEN;
|
2011-08-28 13:00:59 +00:00
|
|
|
void DDSD2_to_DDSD(const DDSURFACEDESC2 *in, DDSURFACEDESC *out) DECLSPEC_HIDDEN;
|
2006-06-09 17:36:12 +00:00
|
|
|
|
|
|
|
/* This only needs to be here as long the processvertices functionality of
|
|
|
|
* IDirect3DExecuteBuffer isn't in WineD3D */
|
2009-09-17 10:35:28 +00:00
|
|
|
void multiply_matrix(LPD3DMATRIX dest, const D3DMATRIX *src1, const D3DMATRIX *src2) DECLSPEC_HIDDEN;
|
2006-06-09 17:36:12 +00:00
|
|
|
|
|
|
|
/* Used for generic dumping */
|
2005-06-02 10:33:06 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
DWORD val;
|
|
|
|
const char* name;
|
|
|
|
} flag_info;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
#define FE(x) { x, #x }
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
DWORD val;
|
|
|
|
const char* name;
|
|
|
|
void (*func)(const void *);
|
|
|
|
ptrdiff_t offset;
|
|
|
|
} member_info;
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/* Structure copy */
|
|
|
|
#define ME(x,f,e) { x, #x, (void (*)(const void *))(f), offsetof(STRUCT, e) }
|
2005-06-02 10:33:06 +00:00
|
|
|
|
2011-05-23 21:58:46 +00:00
|
|
|
#define DD_STRUCT_COPY_BYSIZE_(to,from,from_size) \
|
2011-05-23 21:58:36 +00:00
|
|
|
do { \
|
|
|
|
DWORD __size = (to)->dwSize; \
|
2011-06-28 16:41:21 +00:00
|
|
|
DWORD __resetsize = min(__size, sizeof(*to)); \
|
|
|
|
DWORD __copysize = min(__resetsize, from_size); \
|
2011-05-23 21:58:36 +00:00
|
|
|
assert(to != from); \
|
|
|
|
memcpy(to, from, __copysize); \
|
2011-06-28 16:41:21 +00:00
|
|
|
memset((char*)(to) + __copysize, 0, __resetsize - __copysize); \
|
2011-05-23 21:58:36 +00:00
|
|
|
(to)->dwSize = __size; /* restore size */ \
|
|
|
|
} while (0)
|
2006-06-09 17:36:12 +00:00
|
|
|
|
2011-05-23 21:58:46 +00:00
|
|
|
#define DD_STRUCT_COPY_BYSIZE(to,from) DD_STRUCT_COPY_BYSIZE_(to,from,(from)->dwSize)
|
|
|
|
|
|
|
|
#define SIZEOF_END_PADDING(type, last_field) \
|
|
|
|
(sizeof(type) - offsetof(type, last_field) - sizeof(((type *)0)->last_field))
|
|
|
|
|
|
|
|
static inline void copy_to_surfacedesc2(DDSURFACEDESC2 *to, DDSURFACEDESC2 *from)
|
|
|
|
{
|
|
|
|
DWORD from_size = from->dwSize;
|
|
|
|
if (from_size == sizeof(DDSURFACEDESC))
|
|
|
|
from_size -= SIZEOF_END_PADDING(DDSURFACEDESC, ddsCaps);
|
|
|
|
to->dwSize = sizeof(DDSURFACEDESC2); /* for struct copy */
|
|
|
|
DD_STRUCT_COPY_BYSIZE_(to, from, from_size);
|
|
|
|
}
|
|
|
|
|
2011-05-23 21:58:53 +00:00
|
|
|
HRESULT hr_ddraw_from_wined3d(HRESULT hr) DECLSPEC_HIDDEN;
|
2006-06-09 17:36:12 +00:00
|
|
|
|
|
|
|
#endif
|