2003-11-14 03:50:35 +00:00
|
|
|
/*
|
|
|
|
* Direct3D wine internal private include file
|
|
|
|
*
|
|
|
|
* Copyright 2002-2003 The wine-d3d team
|
|
|
|
* Copyright 2002-2003 Raphael Junqueira
|
2004-09-23 04:34:27 +00:00
|
|
|
* Copyright 2004 Jason Edmeades
|
2003-11-14 03:50:35 +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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_WINED3D_PRIVATE_H
|
|
|
|
#define __WINE_WINED3D_PRIVATE_H
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
2004-09-23 04:34:27 +00:00
|
|
|
#define NONAMELESSUNION
|
|
|
|
#define NONAMELESSSTRUCT
|
2003-11-14 03:50:35 +00:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
2004-09-23 04:34:27 +00:00
|
|
|
#include "winreg.h"
|
2003-11-14 03:50:35 +00:00
|
|
|
#include "wingdi.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "wine/debug.h"
|
2004-10-08 20:52:33 +00:00
|
|
|
#include "wine/unicode.h"
|
2003-11-14 03:50:35 +00:00
|
|
|
|
2004-09-23 04:34:27 +00:00
|
|
|
#include "d3d9.h"
|
|
|
|
#include "d3d9types.h"
|
2003-11-14 03:50:35 +00:00
|
|
|
#include "wine/wined3d_interface.h"
|
2004-09-29 21:26:47 +00:00
|
|
|
#include "wine/wined3d_gl.h"
|
2003-11-14 03:50:35 +00:00
|
|
|
|
2004-09-23 04:34:27 +00:00
|
|
|
extern int vs_mode;
|
|
|
|
#define VS_NONE 0
|
|
|
|
#define VS_HW 1
|
|
|
|
#define VS_SW 2
|
|
|
|
|
|
|
|
extern int ps_mode;
|
|
|
|
#define PS_NONE 0
|
|
|
|
#define PS_HW 1
|
|
|
|
|
2004-09-29 21:26:47 +00:00
|
|
|
/* X11 locking */
|
|
|
|
|
|
|
|
extern void (*wine_tsx11_lock_ptr)(void);
|
|
|
|
extern void (*wine_tsx11_unlock_ptr)(void);
|
|
|
|
|
|
|
|
/* As GLX relies on X, this is needed */
|
|
|
|
extern int num_lock;
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
#define ENTER_GL() ++num_lock; if (num_lock > 1) FIXME("Recursive use of GL lock to: %d\n", num_lock); wine_tsx11_lock_ptr()
|
|
|
|
#define LEAVE_GL() if (num_lock != 1) FIXME("Recursive use of GL lock: %d\n", num_lock); --num_lock; wine_tsx11_unlock_ptr()
|
|
|
|
#else
|
|
|
|
#define ENTER_GL() wine_tsx11_lock_ptr()
|
|
|
|
#define LEAVE_GL() wine_tsx11_unlock_ptr()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* Defines
|
|
|
|
*/
|
2004-10-05 02:14:06 +00:00
|
|
|
#define GL_SUPPORT(ExtName) (This->gl_info.supported[ExtName] != 0)
|
2004-09-29 21:26:47 +00:00
|
|
|
|
2004-10-06 00:05:29 +00:00
|
|
|
|
|
|
|
#define MAX_STREAMS 16 /* Maximum possible streams - used for fixed size arrays
|
|
|
|
See MaxStreams in MSDN under GetDeviceCaps */
|
|
|
|
|
|
|
|
#define WINED3D_VSHADER_MAX_CONSTANTS 96
|
|
|
|
/* Maximum number of constants provided to the shaders */
|
|
|
|
|
2004-10-08 20:52:33 +00:00
|
|
|
#define checkGLcall(A) \
|
|
|
|
{ \
|
|
|
|
GLint err = glGetError(); \
|
|
|
|
if (err != GL_NO_ERROR) { \
|
|
|
|
FIXME(">>>>>>>>>>>>>>>>> %x from %s @ %s / %d\n", err, A, __FILE__, __LINE__); \
|
|
|
|
} else { \
|
|
|
|
TRACE("%s call ok %s / %d\n", A, __FILE__, __LINE__); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2004-09-23 04:34:27 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* IWineD3D implementation structure
|
|
|
|
*/
|
|
|
|
typedef struct IWineD3DImpl
|
|
|
|
{
|
|
|
|
/* IUnknown fields */
|
|
|
|
IWineD3DVtbl *lpVtbl;
|
|
|
|
DWORD ref; /* Note: Ref counting not required */
|
|
|
|
|
|
|
|
/* WineD3D Information */
|
|
|
|
UINT dxVersion;
|
2004-09-29 21:26:47 +00:00
|
|
|
|
|
|
|
/* GL Information */
|
|
|
|
BOOL isGLInfoValid;
|
|
|
|
WineD3D_GL_Info gl_info;
|
2004-09-23 04:34:27 +00:00
|
|
|
} IWineD3DImpl;
|
|
|
|
|
|
|
|
extern IWineD3DVtbl IWineD3D_Vtbl;
|
|
|
|
|
2004-10-07 04:22:21 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* IWineD3DDevice implementation structure
|
|
|
|
*/
|
|
|
|
typedef struct IWineD3DDeviceImpl
|
|
|
|
{
|
2004-10-08 20:52:33 +00:00
|
|
|
/* IUnknown fields */
|
2004-10-07 04:22:21 +00:00
|
|
|
IWineD3DDeviceVtbl *lpVtbl;
|
|
|
|
DWORD ref; /* Note: Ref counting not required */
|
|
|
|
|
2004-10-08 20:52:33 +00:00
|
|
|
/* WineD3D Information */
|
2004-10-07 04:22:21 +00:00
|
|
|
IWineD3D *WineD3D;
|
|
|
|
|
2004-10-08 20:52:33 +00:00
|
|
|
/* X and GL Information */
|
|
|
|
HWND win_handle;
|
|
|
|
Window win;
|
|
|
|
Display *display;
|
|
|
|
GLXContext glCtx;
|
|
|
|
XVisualInfo *visInfo;
|
|
|
|
GLXContext render_ctx;
|
|
|
|
Drawable drawable;
|
|
|
|
GLint maxConcurrentLights;
|
|
|
|
|
|
|
|
/* Optimization */
|
|
|
|
BOOL modelview_valid;
|
|
|
|
BOOL proj_valid;
|
|
|
|
BOOL view_ident; /* true iff view matrix is identity */
|
|
|
|
BOOL last_was_rhw; /* true iff last draw_primitive was in xyzrhw mode */
|
|
|
|
|
|
|
|
/* Internal use fields */
|
|
|
|
D3DDEVICE_CREATION_PARAMETERS createParms;
|
|
|
|
D3DPRESENT_PARAMETERS presentParms;
|
|
|
|
UINT adapterNo;
|
|
|
|
D3DDEVTYPE devType;
|
|
|
|
|
2004-10-07 04:22:21 +00:00
|
|
|
} IWineD3DDeviceImpl;
|
|
|
|
|
|
|
|
extern IWineD3DDeviceVtbl IWineD3DDevice_Vtbl;
|
|
|
|
|
2004-09-28 02:12:12 +00:00
|
|
|
/* Utility function prototypes */
|
|
|
|
const char* debug_d3dformat(D3DFORMAT fmt);
|
2004-10-05 02:14:06 +00:00
|
|
|
const char* debug_d3ddevicetype(D3DDEVTYPE devtype);
|
|
|
|
const char* debug_d3dresourcetype(D3DRESOURCETYPE res);
|
|
|
|
const char* debug_d3dusage(DWORD usage);
|
2004-09-28 02:12:12 +00:00
|
|
|
|
2004-09-23 04:34:27 +00:00
|
|
|
|
2003-11-14 03:50:35 +00:00
|
|
|
|
2004-09-23 04:34:27 +00:00
|
|
|
#if 0 /* Needs fixing during rework */
|
2003-11-14 03:50:35 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DVertexShaderDeclaration implementation structure
|
|
|
|
*/
|
|
|
|
struct IDirect3DVertexShaderDeclarationImpl {
|
|
|
|
/* The device */
|
|
|
|
/*IDirect3DDeviceImpl* device;*/
|
|
|
|
|
|
|
|
/** precomputed fvf if simple declaration */
|
|
|
|
DWORD fvf[MAX_STREAMS];
|
|
|
|
DWORD allFVF;
|
|
|
|
|
|
|
|
/** dx8 compatible Declaration fields */
|
|
|
|
DWORD* pDeclaration8;
|
|
|
|
DWORD declaration8Length;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DVertexShader implementation structure
|
|
|
|
*/
|
|
|
|
struct IDirect3DVertexShaderImpl {
|
|
|
|
/* The device */
|
|
|
|
/*IDirect3DDeviceImpl* device;*/
|
|
|
|
|
|
|
|
DWORD* function;
|
|
|
|
UINT functionLength;
|
|
|
|
DWORD usage;
|
|
|
|
DWORD version;
|
|
|
|
/* run time datas */
|
|
|
|
VSHADERDATA* data;
|
|
|
|
VSHADERINPUTDATA input;
|
|
|
|
VSHADEROUTPUTDATA output;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DPixelShader implementation structure
|
|
|
|
*/
|
|
|
|
struct IDirect3DPixelShaderImpl {
|
|
|
|
/* The device */
|
|
|
|
/*IDirect3DDeviceImpl* device;*/
|
|
|
|
|
|
|
|
DWORD* function;
|
|
|
|
UINT functionLength;
|
|
|
|
DWORD version;
|
|
|
|
/* run time datas */
|
|
|
|
PSHADERDATA* data;
|
|
|
|
PSHADERINPUTDATA input;
|
|
|
|
PSHADEROUTPUTDATA output;
|
|
|
|
};
|
|
|
|
|
2004-09-23 04:34:27 +00:00
|
|
|
#endif /* Needs fixing during rework */
|
2003-11-14 03:50:35 +00:00
|
|
|
#endif
|