2002-09-28 00:46:16 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DDevice8 implementation
|
|
|
|
*
|
2004-05-02 06:22:31 +02:00
|
|
|
* Copyright 2002-2004 Jason Edmeades
|
|
|
|
* Copyright 2004 Christian Costa
|
2002-09-28 00:46:16 +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
|
2002-09-28 00:46:16 +02:00
|
|
|
*/
|
|
|
|
|
2003-01-15 00:05:39 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2002-10-13 19:53:15 +02:00
|
|
|
#include <math.h>
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2003-01-07 21:36:20 +01:00
|
|
|
|
|
|
|
#define NONAMELESSUNION
|
|
|
|
#define NONAMELESSSTRUCT
|
2002-09-28 00:46:16 +02:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "wingdi.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
#include "d3d8_private.h"
|
|
|
|
|
2006-03-19 23:26:00 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d8);
|
2003-07-19 05:02:42 +02:00
|
|
|
|
2006-08-27 22:07:09 +02:00
|
|
|
/* Shader handle functions */
|
|
|
|
static shader_handle *alloc_shader_handle(IDirect3DDevice8Impl *This) {
|
|
|
|
if (This->free_shader_handles) {
|
|
|
|
/* Use a free handle */
|
|
|
|
shader_handle *handle = This->free_shader_handles;
|
|
|
|
This->free_shader_handles = *handle;
|
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
if (!(This->allocated_shader_handles < This->shader_handle_table_size)) {
|
|
|
|
/* Grow the table */
|
|
|
|
DWORD new_size = This->shader_handle_table_size + (This->shader_handle_table_size >> 1);
|
|
|
|
shader_handle *new_handles = HeapReAlloc(GetProcessHeap(), 0, This->shader_handles, new_size * sizeof(shader_handle));
|
|
|
|
if (!new_handles) return NULL;
|
|
|
|
This->shader_handles = new_handles;
|
|
|
|
This->shader_handle_table_size = new_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
return &This->shader_handles[This->allocated_shader_handles++];
|
|
|
|
}
|
|
|
|
|
|
|
|
static void free_shader_handle(IDirect3DDevice8Impl *This, shader_handle *handle) {
|
|
|
|
*handle = This->free_shader_handles;
|
|
|
|
This->free_shader_handles = handle;
|
|
|
|
}
|
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
/* IDirect3D IUnknown parts follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_QueryInterface(LPDIRECT3DDEVICE8 iface,REFIID riid,LPVOID *ppobj)
|
2002-09-28 00:46:16 +02:00
|
|
|
{
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
2002-12-17 02:15:15 +01:00
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DDevice8)) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IUnknown_AddRef(iface);
|
2002-09-28 00:46:16 +02:00
|
|
|
*ppobj = This;
|
2006-06-07 15:13:29 +02:00
|
|
|
return S_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
2006-06-07 15:13:29 +02:00
|
|
|
*ppobj = NULL;
|
2002-09-28 00:46:16 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static ULONG WINAPI IDirect3DDevice8Impl_AddRef(LPDIRECT3DDEVICE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : AddRef from %d\n", This, ref - 1);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
|
|
|
return ref;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static ULONG WINAPI IDirect3DDevice8Impl_Release(LPDIRECT3DDEVICE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-12-05 00:29:48 +01:00
|
|
|
ULONG ref;
|
|
|
|
|
|
|
|
if (This->inDestruction) return 0;
|
|
|
|
ref = InterlockedDecrement(&This->ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : ReleaseRef to %d\n", This, ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
if (ref == 0) {
|
2007-06-19 22:20:26 +02:00
|
|
|
int i;
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("Releasing wined3d device %p\n", This->WineD3DDevice);
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-12-05 00:29:48 +01:00
|
|
|
This->inDestruction = TRUE;
|
2007-06-19 22:20:26 +02:00
|
|
|
|
|
|
|
for(i = 0; i < This->numConvertedDecls; i++) {
|
|
|
|
IWineD3DVertexDeclaration_Release(This->decls[i].decl);
|
|
|
|
}
|
2007-11-16 17:25:12 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, This->decls);
|
2007-06-19 22:20:26 +02:00
|
|
|
|
2006-12-18 00:17:24 +01:00
|
|
|
IWineD3DDevice_Uninit3D(This->WineD3DDevice, D3D8CB_DestroyDepthStencilSurface, D3D8CB_DestroySwapChain);
|
2004-10-08 22:52:33 +02:00
|
|
|
IWineD3DDevice_Release(This->WineD3DDevice);
|
2006-09-11 18:51:09 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This->shader_handles);
|
2004-10-08 22:52:33 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DDevice Interface follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_TestCooperativeLevel(LPDIRECT3DDEVICE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) : Relay\n", This);
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_TestCooperativeLevel(This->WineD3DDevice);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static UINT WINAPI IDirect3DDevice8Impl_GetAvailableTextureMem(LPDIRECT3DDEVICE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
|
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetAvailableTextureMem(This->WineD3DDevice);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_ResourceManagerDiscardBytes(LPDIRECT3DDEVICE8 iface, DWORD Bytes) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : Relay bytes(%d)\n", This, Bytes);
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_EvictManagedResources(This->WineD3DDevice);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetDirect3D(LPDIRECT3DDEVICE8 iface, IDirect3D8** ppD3D8) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
HRESULT hr = D3D_OK;
|
|
|
|
IWineD3D* pWineD3D;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if (NULL == ppD3D8) {
|
|
|
|
return D3DERR_INVALIDCALL;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2007-06-09 14:16:41 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
hr = IWineD3DDevice_GetDirect3D(This->WineD3DDevice, &pWineD3D);
|
|
|
|
if (hr == D3D_OK && pWineD3D != NULL)
|
|
|
|
{
|
2006-12-01 00:15:42 +01:00
|
|
|
IWineD3D_GetParent(pWineD3D,(IUnknown **)ppD3D8);
|
|
|
|
IWineD3D_Release(pWineD3D);
|
2006-02-25 13:15:08 +01:00
|
|
|
} else {
|
|
|
|
FIXME("Call to IWineD3DDevice_GetDirect3D failed\n");
|
|
|
|
*ppD3D8 = NULL;
|
|
|
|
}
|
2006-10-05 11:05:49 +02:00
|
|
|
TRACE("(%p) returning %p\n",This , *ppD3D8);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetDeviceCaps(LPDIRECT3DDEVICE8 iface, D3DCAPS8* pCaps) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
HRESULT hrc = D3D_OK;
|
|
|
|
WINED3DCAPS *pWineCaps;
|
2003-06-04 23:55:29 +02:00
|
|
|
|
2006-02-27 20:59:20 +01:00
|
|
|
TRACE("(%p) : Relay pCaps %p\n", This, pCaps);
|
2006-02-25 13:15:08 +01:00
|
|
|
if(NULL == pCaps){
|
|
|
|
return D3DERR_INVALIDCALL;
|
2003-06-04 23:55:29 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
pWineCaps = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WINED3DCAPS));
|
|
|
|
if(pWineCaps == NULL){
|
|
|
|
return D3DERR_INVALIDCALL; /* well this is what MSDN says to return */
|
2003-06-04 23:55:29 +02:00
|
|
|
}
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
D3D8CAPSTOWINECAPS(pCaps, pWineCaps)
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
hrc = IWineD3DDevice_GetDeviceCaps(This->WineD3DDevice, pWineCaps);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, pWineCaps);
|
2006-12-23 14:41:53 +01:00
|
|
|
|
|
|
|
/* D3D8 doesn't support SM 2.0 or higher, so clamp to 1.x */
|
|
|
|
if(pCaps->PixelShaderVersion > D3DPS_VERSION(1,4)){
|
|
|
|
pCaps->PixelShaderVersion = D3DPS_VERSION(1,4);
|
|
|
|
}
|
|
|
|
if(pCaps->VertexShaderVersion > D3DVS_VERSION(1,1)){
|
|
|
|
pCaps->VertexShaderVersion = D3DVS_VERSION(1,1);
|
|
|
|
}
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("Returning %p %p\n", This, pCaps);
|
|
|
|
return hrc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetDisplayMode(LPDIRECT3DDEVICE8 iface, D3DDISPLAYMODE* pMode) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-09 14:16:41 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetDisplayMode(This->WineD3DDevice, 0, (WINED3DDISPLAYMODE *) pMode);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetCreationParameters(LPDIRECT3DDEVICE8 iface, D3DDEVICE_CREATION_PARAMETERS *pParameters) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-09 14:16:41 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetCreationParameters(This->WineD3DDevice, (WINED3DDEVICE_CREATION_PARAMETERS *) pParameters);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-06-05 00:55:19 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetCursorProperties(LPDIRECT3DDEVICE8 iface, UINT XHotSpot, UINT YHotSpot, IDirect3DSurface8* pCursorBitmap) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DSurface8Impl *pSurface = (IDirect3DSurface8Impl*)pCursorBitmap;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2006-11-09 02:38:22 +01:00
|
|
|
if(!pCursorBitmap) {
|
|
|
|
WARN("No cursor bitmap, returning WINED3DERR_INVALIDCALL\n");
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
|
|
|
}
|
2007-06-09 14:16:41 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2007-12-04 22:45:06 +01:00
|
|
|
hr = IWineD3DDevice_SetCursorProperties(This->WineD3DDevice,XHotSpot,YHotSpot,pSurface->wineD3DSurface);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static void WINAPI IDirect3DDevice8Impl_SetCursorPosition(LPDIRECT3DDEVICE8 iface, UINT XScreenSpace, UINT YScreenSpace, DWORD Flags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-09 14:16:41 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2007-04-07 22:27:55 +02:00
|
|
|
IWineD3DDevice_SetCursorPosition(This->WineD3DDevice, XScreenSpace, YScreenSpace, Flags);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static BOOL WINAPI IDirect3DDevice8Impl_ShowCursor(LPDIRECT3DDEVICE8 iface, BOOL bShow) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
BOOL ret;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
ret = IWineD3DDevice_ShowCursor(This->WineD3DDevice, bShow);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return ret;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-11-17 21:04:30 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateAdditionalSwapChain(LPDIRECT3DDEVICE8 iface, D3DPRESENT_PARAMETERS* pPresentationParameters, IDirect3DSwapChain8** pSwapChain) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
|
|
|
IDirect3DSwapChain8Impl* object;
|
|
|
|
HRESULT hrc = D3D_OK;
|
|
|
|
WINED3DPRESENT_PARAMETERS localParameters;
|
2003-11-17 21:04:30 +01:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2003-06-13 20:09:05 +02:00
|
|
|
|
2006-05-30 23:32:32 +02:00
|
|
|
/* Fix the back buffer count */
|
|
|
|
if(pPresentationParameters->BackBufferCount == 0) {
|
|
|
|
pPresentationParameters->BackBufferCount = 1;
|
|
|
|
}
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
|
|
|
if (NULL == object) {
|
|
|
|
FIXME("Allocation of memory failed\n");
|
|
|
|
*pSwapChain = NULL;
|
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
2003-07-19 05:02:42 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
object->ref = 1;
|
|
|
|
object->lpVtbl = &Direct3DSwapChain8_Vtbl;
|
2003-07-19 05:02:42 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
/* Allocate an associated WineD3DDevice object */
|
2007-02-15 22:36:50 +01:00
|
|
|
localParameters.BackBufferWidth = pPresentationParameters->BackBufferWidth;
|
|
|
|
localParameters.BackBufferHeight = pPresentationParameters->BackBufferHeight;
|
|
|
|
localParameters.BackBufferFormat = pPresentationParameters->BackBufferFormat;
|
|
|
|
localParameters.BackBufferCount = pPresentationParameters->BackBufferCount;
|
|
|
|
localParameters.MultiSampleType = pPresentationParameters->MultiSampleType;
|
|
|
|
localParameters.MultiSampleQuality = 0; /* d3d9 only */
|
|
|
|
localParameters.SwapEffect = pPresentationParameters->SwapEffect;
|
|
|
|
localParameters.hDeviceWindow = pPresentationParameters->hDeviceWindow;
|
|
|
|
localParameters.Windowed = pPresentationParameters->Windowed;
|
|
|
|
localParameters.EnableAutoDepthStencil = pPresentationParameters->EnableAutoDepthStencil;
|
|
|
|
localParameters.AutoDepthStencilFormat = pPresentationParameters->AutoDepthStencilFormat;
|
|
|
|
localParameters.Flags = pPresentationParameters->Flags;
|
|
|
|
localParameters.FullScreen_RefreshRateInHz = pPresentationParameters->FullScreen_RefreshRateInHz;
|
|
|
|
localParameters.PresentationInterval = pPresentationParameters->FullScreen_PresentationInterval;
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
hrc = IWineD3DDevice_CreateAdditionalSwapChain(This->WineD3DDevice, &localParameters, &object->wineD3DSwapChain, (IUnknown*)object, D3D8CB_CreateRenderTarget, D3D8CB_CreateDepthStencilSurface);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2007-02-15 22:36:50 +01:00
|
|
|
|
|
|
|
pPresentationParameters->BackBufferWidth = localParameters.BackBufferWidth;
|
|
|
|
pPresentationParameters->BackBufferHeight = localParameters.BackBufferHeight;
|
|
|
|
pPresentationParameters->BackBufferFormat = localParameters.BackBufferFormat;
|
|
|
|
pPresentationParameters->BackBufferCount = localParameters.BackBufferCount;
|
|
|
|
pPresentationParameters->MultiSampleType = localParameters.MultiSampleType;
|
|
|
|
pPresentationParameters->SwapEffect = localParameters.SwapEffect;
|
|
|
|
pPresentationParameters->hDeviceWindow = localParameters.hDeviceWindow;
|
|
|
|
pPresentationParameters->Windowed = localParameters.Windowed;
|
|
|
|
pPresentationParameters->EnableAutoDepthStencil = localParameters.EnableAutoDepthStencil;
|
|
|
|
pPresentationParameters->AutoDepthStencilFormat = localParameters.AutoDepthStencilFormat;
|
|
|
|
pPresentationParameters->Flags = localParameters.Flags;
|
|
|
|
pPresentationParameters->FullScreen_RefreshRateInHz = localParameters.FullScreen_RefreshRateInHz;
|
|
|
|
pPresentationParameters->FullScreen_PresentationInterval = localParameters.PresentationInterval;
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if (hrc != D3D_OK) {
|
|
|
|
FIXME("(%p) call to IWineD3DDevice_CreateAdditionalSwapChain failed\n", This);
|
|
|
|
HeapFree(GetProcessHeap(), 0 , object);
|
|
|
|
*pSwapChain = NULL;
|
|
|
|
}else{
|
2006-05-20 18:39:03 +02:00
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
object->parentDevice = iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
*pSwapChain = (IDirect3DSwapChain8 *)object;
|
2003-06-13 20:09:05 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) returning %p\n", This, *pSwapChain);
|
|
|
|
return hrc;
|
2003-06-13 20:09:05 +02:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_Reset(LPDIRECT3DDEVICE8 iface, D3DPRESENT_PARAMETERS* pPresentationParameters) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
|
|
|
WINED3DPRESENT_PARAMETERS localParameters;
|
2007-02-15 22:36:50 +01:00
|
|
|
HRESULT hr;
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay pPresentationParameters(%p)\n", This, pPresentationParameters);
|
2007-02-15 22:36:50 +01:00
|
|
|
|
|
|
|
localParameters.BackBufferWidth = pPresentationParameters->BackBufferWidth;
|
|
|
|
localParameters.BackBufferHeight = pPresentationParameters->BackBufferHeight;
|
|
|
|
localParameters.BackBufferFormat = pPresentationParameters->BackBufferFormat;
|
|
|
|
localParameters.BackBufferCount = pPresentationParameters->BackBufferCount;
|
|
|
|
localParameters.MultiSampleType = pPresentationParameters->MultiSampleType;
|
|
|
|
localParameters.MultiSampleQuality = 0; /* d3d9 only */
|
|
|
|
localParameters.SwapEffect = pPresentationParameters->SwapEffect;
|
|
|
|
localParameters.hDeviceWindow = pPresentationParameters->hDeviceWindow;
|
|
|
|
localParameters.Windowed = pPresentationParameters->Windowed;
|
|
|
|
localParameters.EnableAutoDepthStencil = pPresentationParameters->EnableAutoDepthStencil;
|
|
|
|
localParameters.AutoDepthStencilFormat = pPresentationParameters->AutoDepthStencilFormat;
|
|
|
|
localParameters.Flags = pPresentationParameters->Flags;
|
|
|
|
localParameters.FullScreen_RefreshRateInHz = pPresentationParameters->FullScreen_RefreshRateInHz;
|
|
|
|
localParameters.PresentationInterval = pPresentationParameters->FullScreen_PresentationInterval;
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2007-02-15 22:36:50 +01:00
|
|
|
hr = IWineD3DDevice_Reset(This->WineD3DDevice, &localParameters);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2007-02-15 22:36:50 +01:00
|
|
|
|
|
|
|
pPresentationParameters->BackBufferWidth = localParameters.BackBufferWidth;
|
|
|
|
pPresentationParameters->BackBufferHeight = localParameters.BackBufferHeight;
|
|
|
|
pPresentationParameters->BackBufferFormat = localParameters.BackBufferFormat;
|
|
|
|
pPresentationParameters->BackBufferCount = localParameters.BackBufferCount;
|
|
|
|
pPresentationParameters->MultiSampleType = localParameters.MultiSampleType;
|
|
|
|
pPresentationParameters->SwapEffect = localParameters.SwapEffect;
|
|
|
|
pPresentationParameters->hDeviceWindow = localParameters.hDeviceWindow;
|
|
|
|
pPresentationParameters->Windowed = localParameters.Windowed;
|
|
|
|
pPresentationParameters->EnableAutoDepthStencil = localParameters.EnableAutoDepthStencil;
|
|
|
|
pPresentationParameters->AutoDepthStencilFormat = localParameters.AutoDepthStencilFormat;
|
|
|
|
pPresentationParameters->Flags = localParameters.Flags;
|
|
|
|
pPresentationParameters->FullScreen_RefreshRateInHz = localParameters.FullScreen_RefreshRateInHz;
|
|
|
|
pPresentationParameters->FullScreen_PresentationInterval = localParameters.PresentationInterval;
|
|
|
|
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_Present(LPDIRECT3DDEVICE8 iface, CONST RECT* pSourceRect,CONST RECT* pDestRect,HWND hDestWindowOverride,CONST RGNDATA* pDirtyRegion) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-09 14:16:41 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_Present(This->WineD3DDevice, pSourceRect, pDestRect, hDestWindowOverride, pDirtyRegion);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetBackBuffer(LPDIRECT3DDEVICE8 iface, UINT BackBuffer, D3DBACKBUFFER_TYPE Type, IDirect3DSurface8** ppBackBuffer) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
|
|
|
IWineD3DSurface *retSurface = NULL;
|
|
|
|
HRESULT rc = D3D_OK;
|
2003-05-11 05:35:27 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2007-12-04 22:45:06 +01:00
|
|
|
rc = IWineD3DDevice_GetBackBuffer(This->WineD3DDevice, 0, BackBuffer, (WINED3DBACKBUFFER_TYPE) Type, &retSurface);
|
2006-02-25 13:15:08 +01:00
|
|
|
if (rc == D3D_OK && NULL != retSurface && NULL != ppBackBuffer) {
|
|
|
|
IWineD3DSurface_GetParent(retSurface, (IUnknown **)ppBackBuffer);
|
2006-11-30 13:33:52 +01:00
|
|
|
IWineD3DSurface_Release(retSurface);
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
return rc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetRasterStatus(LPDIRECT3DDEVICE8 iface, D3DRASTER_STATUS* pRasterStatus) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetRasterStatus(This->WineD3DDevice, 0, (WINED3DRASTER_STATUS *) pRasterStatus);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static void WINAPI IDirect3DDevice8Impl_SetGammaRamp(LPDIRECT3DDEVICE8 iface, DWORD Flags, CONST D3DGAMMARAMP* pRamp) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2003-06-05 01:01:49 +02:00
|
|
|
|
2006-10-11 03:58:01 +02:00
|
|
|
/* Note: D3DGAMMARAMP is compatible with WINED3DGAMMARAMP */
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2007-04-07 22:27:55 +02:00
|
|
|
IWineD3DDevice_SetGammaRamp(This->WineD3DDevice, 0, Flags, (CONST WINED3DGAMMARAMP *) pRamp);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static void WINAPI IDirect3DDevice8Impl_GetGammaRamp(LPDIRECT3DDEVICE8 iface, D3DGAMMARAMP* pRamp) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2003-06-05 01:01:49 +02:00
|
|
|
|
2006-10-11 03:58:01 +02:00
|
|
|
/* Note: D3DGAMMARAMP is compatible with WINED3DGAMMARAMP */
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2007-04-07 22:27:55 +02:00
|
|
|
IWineD3DDevice_GetGammaRamp(This->WineD3DDevice, 0, (WINED3DGAMMARAMP *) pRamp);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateTexture(LPDIRECT3DDEVICE8 iface, UINT Width, UINT Height, UINT Levels, DWORD Usage,
|
2006-02-20 11:11:35 +01:00
|
|
|
D3DFORMAT Format, D3DPOOL Pool, IDirect3DTexture8 **ppTexture) {
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DTexture8Impl *object;
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
HRESULT hrc = D3D_OK;
|
|
|
|
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : W(%d) H(%d), Lvl(%d) d(%d), Fmt(%u), Pool(%d)\n", This, Width, Height, Levels, Usage, Format, Pool);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
|
|
|
/* Allocate the storage for the device */
|
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirect3DTexture8Impl));
|
2006-02-20 11:11:35 +01:00
|
|
|
|
|
|
|
if (NULL == object) {
|
|
|
|
FIXME("Allocation of memory failed\n");
|
|
|
|
/* *ppTexture = NULL; */
|
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
object->lpVtbl = &Direct3DTexture8_Vtbl;
|
|
|
|
object->ref = 1;
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-10-05 17:56:54 +02:00
|
|
|
hrc = IWineD3DDevice_CreateTexture(This->WineD3DDevice, Width, Height, Levels, Usage & WINED3DUSAGE_MASK,
|
2006-03-28 14:20:47 +02:00
|
|
|
(WINED3DFORMAT)Format, (WINED3DPOOL) Pool, &object->wineD3DTexture, NULL, (IUnknown *)object, D3D8CB_CreateSurface);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
if (FAILED(hrc)) {
|
|
|
|
/* free up object */
|
|
|
|
FIXME("(%p) call to IWineD3DDevice_CreateTexture failed\n", This);
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
/* *ppTexture = NULL; */
|
|
|
|
} else {
|
2006-05-20 18:39:03 +02:00
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
object->parentDevice = iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
*ppTexture = (LPDIRECT3DTEXTURE8) object;
|
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Created Texture %p, %p\n",This,object,object->wineD3DTexture);
|
|
|
|
return hrc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateVolumeTexture(LPDIRECT3DDEVICE8 iface,
|
2003-06-04 23:55:29 +02:00
|
|
|
UINT Width, UINT Height, UINT Depth, UINT Levels, DWORD Usage,
|
|
|
|
D3DFORMAT Format, D3DPOOL Pool, IDirect3DVolumeTexture8** ppVolumeTexture) {
|
2002-09-28 00:46:16 +02:00
|
|
|
|
|
|
|
IDirect3DVolumeTexture8Impl *object;
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
HRESULT hrc = D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
|
|
|
/* Allocate the storage for the device */
|
2002-09-28 00:46:16 +02:00
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirect3DVolumeTexture8Impl));
|
2006-02-20 11:11:35 +01:00
|
|
|
if (NULL == object) {
|
|
|
|
FIXME("(%p) allocation of memory failed\n", This);
|
|
|
|
*ppVolumeTexture = NULL;
|
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
object->lpVtbl = &Direct3DVolumeTexture8_Vtbl;
|
2002-10-21 20:21:59 +02:00
|
|
|
object->ref = 1;
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-10-05 17:56:54 +02:00
|
|
|
hrc = IWineD3DDevice_CreateVolumeTexture(This->WineD3DDevice, Width, Height, Depth, Levels, Usage & WINED3DUSAGE_MASK,
|
2006-03-28 14:20:47 +02:00
|
|
|
(WINED3DFORMAT)Format, (WINED3DPOOL) Pool, &object->wineD3DVolumeTexture, NULL,
|
2006-02-20 11:11:35 +01:00
|
|
|
(IUnknown *)object, D3D8CB_CreateVolume);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2002-10-21 20:21:59 +02:00
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
if (hrc != D3D_OK) {
|
2002-10-21 20:21:59 +02:00
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
/* free up object */
|
|
|
|
FIXME("(%p) call to IWineD3DDevice_CreateVolumeTexture failed\n", This);
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
*ppVolumeTexture = NULL;
|
|
|
|
} else {
|
2006-05-20 18:39:03 +02:00
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
object->parentDevice = iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
*ppVolumeTexture = (LPDIRECT3DVOLUMETEXTURE8) object;
|
2002-10-21 20:21:59 +02:00
|
|
|
}
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) returning %p\n", This , *ppVolumeTexture);
|
|
|
|
return hrc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateCubeTexture(LPDIRECT3DDEVICE8 iface, UINT EdgeLength, UINT Levels, DWORD Usage,
|
2003-06-04 23:55:29 +02:00
|
|
|
D3DFORMAT Format, D3DPOOL Pool, IDirect3DCubeTexture8** ppCubeTexture) {
|
2002-09-28 00:46:16 +02:00
|
|
|
|
|
|
|
IDirect3DCubeTexture8Impl *object;
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
HRESULT hr = D3D_OK;
|
|
|
|
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : ELen(%d) Lvl(%d) Usage(%d) fmt(%u), Pool(%d)\n" , This, EdgeLength, Levels, Usage, Format, Pool);
|
2006-02-20 11:11:35 +01:00
|
|
|
|
|
|
|
/* Allocate the storage for the device */
|
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
|
|
|
|
|
|
|
if (NULL == object) {
|
|
|
|
FIXME("(%p) allocation of CubeTexture failed\n", This);
|
|
|
|
*ppCubeTexture = NULL;
|
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
|
|
|
object->lpVtbl = &Direct3DCubeTexture8_Vtbl;
|
|
|
|
object->ref = 1;
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-10-05 17:56:54 +02:00
|
|
|
hr = IWineD3DDevice_CreateCubeTexture(This->WineD3DDevice, EdgeLength, Levels, Usage & WINED3DUSAGE_MASK,
|
2006-03-28 14:20:47 +02:00
|
|
|
(WINED3DFORMAT)Format, (WINED3DPOOL) Pool, &object->wineD3DCubeTexture, NULL, (IUnknown*)object,
|
2006-02-20 11:11:35 +01:00
|
|
|
D3D8CB_CreateSurface);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
if (hr != D3D_OK){
|
|
|
|
|
|
|
|
/* free up object */
|
|
|
|
FIXME("(%p) call to IWineD3DDevice_CreateCubeTexture failed\n", This);
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
*ppCubeTexture = NULL;
|
|
|
|
} else {
|
2006-05-20 18:39:03 +02:00
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
object->parentDevice = iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
*ppCubeTexture = (LPDIRECT3DCUBETEXTURE8) object;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-20 11:11:35 +01:00
|
|
|
|
|
|
|
TRACE("(%p) returning %p\n",This, *ppCubeTexture);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateVertexBuffer(LPDIRECT3DDEVICE8 iface, UINT Size, DWORD Usage, DWORD FVF, D3DPOOL Pool, IDirect3DVertexBuffer8** ppVertexBuffer) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DVertexBuffer8Impl *object;
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
HRESULT hrc = D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-03-26 04:19:00 +02:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2002-09-28 00:46:16 +02:00
|
|
|
/* Allocate the storage for the device */
|
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirect3DVertexBuffer8Impl));
|
2006-02-25 13:15:08 +01:00
|
|
|
if (NULL == object) {
|
|
|
|
FIXME("Allocation of memory failed\n");
|
|
|
|
*ppVertexBuffer = NULL;
|
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
object->lpVtbl = &Direct3DVertexBuffer8_Vtbl;
|
|
|
|
object->ref = 1;
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-10-05 17:56:54 +02:00
|
|
|
hrc = IWineD3DDevice_CreateVertexBuffer(This->WineD3DDevice, Size, Usage & WINED3DUSAGE_MASK, FVF, (WINED3DPOOL) Pool, &(object->wineD3DVertexBuffer), NULL, (IUnknown *)object);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if (D3D_OK != hrc) {
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
/* free up object */
|
|
|
|
FIXME("(%p) call to IWineD3DDevice_CreateVertexBuffer failed\n", This);
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
*ppVertexBuffer = NULL;
|
|
|
|
} else {
|
2006-04-02 21:24:00 +02:00
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
object->parentDevice = iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
*ppVertexBuffer = (LPDIRECT3DVERTEXBUFFER8) object;
|
|
|
|
}
|
|
|
|
return hrc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateIndexBuffer(LPDIRECT3DDEVICE8 iface, UINT Length, DWORD Usage, D3DFORMAT Format, D3DPOOL Pool, IDirect3DIndexBuffer8** ppIndexBuffer) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DIndexBuffer8Impl *object;
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
HRESULT hrc = D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2002-09-28 00:46:16 +02:00
|
|
|
/* Allocate the storage for the device */
|
2006-02-25 13:15:08 +01:00
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
|
|
|
if (NULL == object) {
|
|
|
|
FIXME("Allocation of memory failed\n");
|
|
|
|
*ppIndexBuffer = NULL;
|
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
object->lpVtbl = &Direct3DIndexBuffer8_Vtbl;
|
2003-05-11 05:35:27 +02:00
|
|
|
object->ref = 1;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("Calling wined3d create index buffer\n");
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-10-05 17:56:54 +02:00
|
|
|
hrc = IWineD3DDevice_CreateIndexBuffer(This->WineD3DDevice, Length, Usage & WINED3DUSAGE_MASK, Format, (WINED3DPOOL) Pool, &object->wineD3DIndexBuffer, NULL, (IUnknown *)object);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if (D3D_OK != hrc) {
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
/* free up object */
|
|
|
|
FIXME("(%p) call to IWineD3DDevice_CreateIndexBuffer failed\n", This);
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
*ppIndexBuffer = NULL;
|
|
|
|
} else {
|
2006-05-20 18:39:03 +02:00
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
object->parentDevice = iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
*ppIndexBuffer = (LPDIRECT3DINDEXBUFFER8)object;
|
|
|
|
}
|
|
|
|
return hrc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-14 17:13:19 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateSurface(LPDIRECT3DDEVICE8 iface, UINT Width, UINT Height, D3DFORMAT Format, BOOL Lockable, BOOL Discard, UINT Level, IDirect3DSurface8 **ppSurface,D3DRESOURCETYPE Type, UINT Usage,D3DPOOL Pool, D3DMULTISAMPLE_TYPE MultiSample, DWORD MultisampleQuality) {
|
2006-02-14 17:13:19 +01:00
|
|
|
HRESULT hrc;
|
2003-05-11 05:35:27 +02:00
|
|
|
IDirect3DSurface8Impl *object;
|
2006-02-14 17:13:19 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
if(MultisampleQuality < 0) {
|
2006-10-10 19:23:08 +02:00
|
|
|
FIXME("MultisampleQuality out of range %d, substituting 0\n", MultisampleQuality);
|
2006-02-14 17:13:19 +01:00
|
|
|
/*FIXME: Find out what windows does with a MultisampleQuality < 0 */
|
|
|
|
MultisampleQuality=0;
|
2003-05-12 05:10:27 +02:00
|
|
|
}
|
2003-05-11 05:35:27 +02:00
|
|
|
|
2006-02-14 17:13:19 +01:00
|
|
|
if(MultisampleQuality > 0){
|
2006-10-10 19:23:08 +02:00
|
|
|
FIXME("MultisampleQuality set to %d, substituting 0\n" , MultisampleQuality);
|
2006-02-14 17:13:19 +01:00
|
|
|
/*
|
|
|
|
MultisampleQuality
|
|
|
|
[in] Quality level. The valid range is between zero and one less than the level returned by pQualityLevels used by IDirect3D8::CheckDeviceMultiSampleType. Passing a larger value returns the error D3DERR_INVALIDCALL. The MultisampleQuality values of paired render targets, depth stencil surfaces, and the MultiSample type must all match.
|
|
|
|
*/
|
|
|
|
MultisampleQuality=0;
|
2003-09-19 02:20:19 +02:00
|
|
|
}
|
2006-02-14 17:13:19 +01:00
|
|
|
/*FIXME: Check MAX bounds of MultisampleQuality*/
|
2003-06-05 01:05:46 +02:00
|
|
|
|
2006-02-14 17:13:19 +01:00
|
|
|
/* Allocate the storage for the device */
|
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirect3DSurface8Impl));
|
2003-05-12 05:10:27 +02:00
|
|
|
if (NULL == object) {
|
2006-02-14 17:13:19 +01:00
|
|
|
FIXME("Allocation of memory failed\n");
|
|
|
|
*ppSurface = NULL;
|
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
2003-05-12 05:10:27 +02:00
|
|
|
}
|
2003-05-11 05:35:27 +02:00
|
|
|
|
2006-02-14 17:13:19 +01:00
|
|
|
object->lpVtbl = &Direct3DSurface8_Vtbl;
|
2003-05-11 05:35:27 +02:00
|
|
|
object->ref = 1;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-14 17:13:19 +01:00
|
|
|
TRACE("(%p) : w(%d) h(%d) fmt(%d) surf@%p\n", This, Width, Height, Format, *ppSurface);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
/* Not called from the VTable, no locking needed */
|
2006-10-05 17:56:54 +02:00
|
|
|
hrc = IWineD3DDevice_CreateSurface(This->WineD3DDevice, Width, Height, Format, Lockable, Discard, Level, &object->wineD3DSurface, Type, Usage & WINED3DUSAGE_MASK, (WINED3DPOOL) Pool,MultiSample,MultisampleQuality, NULL, SURFACE_OPENGL, (IUnknown *)object);
|
2006-02-14 17:13:19 +01:00
|
|
|
if (hrc != D3D_OK || NULL == object->wineD3DSurface) {
|
|
|
|
/* free up object */
|
|
|
|
FIXME("(%p) call to IWineD3DDevice_CreateSurface failed\n", This);
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
*ppSurface = NULL;
|
2003-09-19 02:20:19 +02:00
|
|
|
} else {
|
2006-07-07 15:31:56 +02:00
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
object->parentDevice = iface;
|
2006-02-14 17:13:19 +01:00
|
|
|
*ppSurface = (LPDIRECT3DSURFACE8) object;
|
2003-09-19 02:20:19 +02:00
|
|
|
}
|
2006-02-14 17:13:19 +01:00
|
|
|
return hrc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateRenderTarget(LPDIRECT3DDEVICE8 iface, UINT Width, UINT Height, D3DFORMAT Format, D3DMULTISAMPLE_TYPE MultiSample, BOOL Lockable, IDirect3DSurface8** ppSurface) {
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-14 17:13:19 +01:00
|
|
|
TRACE("Relay\n");
|
2003-01-14 23:53:50 +01:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IDirect3DDevice8Impl_CreateSurface(iface, Width, Height, Format, Lockable, FALSE /* Discard */, 0 /* Level */ , ppSurface, D3DRTYPE_SURFACE, D3DUSAGE_RENDERTARGET, D3DPOOL_DEFAULT, MultiSample, 0);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-14 17:13:19 +01:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateDepthStencilSurface(LPDIRECT3DDEVICE8 iface, UINT Width, UINT Height, D3DFORMAT Format, D3DMULTISAMPLE_TYPE MultiSample, IDirect3DSurface8** ppSurface) {
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-14 17:13:19 +01:00
|
|
|
TRACE("Relay\n");
|
2007-06-09 14:16:41 +02:00
|
|
|
|
2006-02-14 17:13:19 +01:00
|
|
|
/* TODO: Verify that Discard is false */
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IDirect3DDevice8Impl_CreateSurface(iface, Width, Height, Format, TRUE /* Lockable */, FALSE, 0 /* Level */
|
2006-02-14 17:13:19 +01:00
|
|
|
,ppSurface, D3DRTYPE_SURFACE, D3DUSAGE_DEPTHSTENCIL,
|
|
|
|
D3DPOOL_DEFAULT, MultiSample, 0);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-14 17:13:19 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateImageSurface(LPDIRECT3DDEVICE8 iface, UINT Width, UINT Height, D3DFORMAT Format, IDirect3DSurface8** ppSurface) {
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-14 17:13:19 +01:00
|
|
|
TRACE("Relay\n");
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IDirect3DDevice8Impl_CreateSurface(iface, Width, Height, Format, TRUE /* Loackable */ , FALSE /*Discard*/ , 0 /* Level */ , ppSurface, D3DRTYPE_SURFACE, 0 /* Usage (undefined/none) */ , D3DPOOL_SCRATCH, D3DMULTISAMPLE_NONE, 0 /* MultisampleQuality */);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-14 17:13:19 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CopyRects(LPDIRECT3DDEVICE8 iface, IDirect3DSurface8 *pSourceSurface, CONST RECT *pSourceRects, UINT cRects, IDirect3DSurface8 *pDestinationSurface, CONST POINT *pDestPoints) {
|
2006-10-13 12:14:59 +02:00
|
|
|
IDirect3DSurface8Impl *Source = (IDirect3DSurface8Impl *) pSourceSurface;
|
|
|
|
IDirect3DSurface8Impl *Dest = (IDirect3DSurface8Impl *) pDestinationSurface;
|
|
|
|
|
|
|
|
HRESULT hr = WINED3D_OK;
|
|
|
|
WINED3DFORMAT srcFormat, destFormat;
|
|
|
|
UINT srcWidth, destWidth;
|
|
|
|
UINT srcHeight, destHeight;
|
|
|
|
UINT srcSize;
|
|
|
|
WINED3DSURFACE_DESC winedesc;
|
|
|
|
|
|
|
|
TRACE("(%p) pSrcSur=%p, pSourceRects=%p, cRects=%d, pDstSur=%p, pDestPtsArr=%p\n", iface,
|
|
|
|
pSourceSurface, pSourceRects, cRects, pDestinationSurface, pDestPoints);
|
|
|
|
|
|
|
|
|
|
|
|
/* Check that the source texture is in WINED3DPOOL_SYSTEMMEM and the destination texture is in WINED3DPOOL_DEFAULT */
|
|
|
|
memset(&winedesc, 0, sizeof(winedesc));
|
|
|
|
|
|
|
|
winedesc.Format = &srcFormat;
|
|
|
|
winedesc.Width = &srcWidth;
|
|
|
|
winedesc.Height = &srcHeight;
|
|
|
|
winedesc.Size = &srcSize;
|
|
|
|
IWineD3DSurface_GetDesc(Source->wineD3DSurface, &winedesc);
|
|
|
|
|
|
|
|
winedesc.Format = &destFormat;
|
|
|
|
winedesc.Width = &destWidth;
|
|
|
|
winedesc.Height = &destHeight;
|
|
|
|
winedesc.Size = NULL;
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-10-13 12:14:59 +02:00
|
|
|
IWineD3DSurface_GetDesc(Dest->wineD3DSurface, &winedesc);
|
|
|
|
|
|
|
|
/* Check that the source and destination formats match */
|
|
|
|
if (srcFormat != destFormat && WINED3DFMT_UNKNOWN != destFormat) {
|
|
|
|
WARN("(%p) source %p format must match the dest %p format, returning WINED3DERR_INVALIDCALL\n", iface, pSourceSurface, pDestinationSurface);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2006-10-13 12:14:59 +02:00
|
|
|
return WINED3DERR_INVALIDCALL;
|
|
|
|
} else if (WINED3DFMT_UNKNOWN == destFormat) {
|
|
|
|
TRACE("(%p) : Converting destination surface from WINED3DFMT_UNKNOWN to the source format\n", iface);
|
|
|
|
IWineD3DSurface_SetFormat(Dest->wineD3DSurface, srcFormat);
|
|
|
|
destFormat = srcFormat;
|
|
|
|
}
|
2003-05-14 01:39:53 +02:00
|
|
|
|
2006-10-13 12:14:59 +02:00
|
|
|
/* Quick if complete copy ... */
|
|
|
|
if (cRects == 0 && pSourceRects == NULL && pDestPoints == NULL) {
|
2007-04-14 22:44:55 +02:00
|
|
|
IWineD3DSurface_BltFast(Dest->wineD3DSurface, 0, 0, Source->wineD3DSurface, NULL, WINEDDBLTFAST_NOCOLORKEY);
|
2006-10-13 12:14:59 +02:00
|
|
|
} else {
|
|
|
|
unsigned int i;
|
|
|
|
/* Copy rect by rect */
|
|
|
|
if (NULL != pSourceRects && NULL != pDestPoints) {
|
|
|
|
for (i = 0; i < cRects; ++i) {
|
2007-04-14 22:44:55 +02:00
|
|
|
IWineD3DSurface_BltFast(Dest->wineD3DSurface, pDestPoints[i].x, pDestPoints[i].y, Source->wineD3DSurface, (RECT *) &pSourceRects[i], WINEDDBLTFAST_NOCOLORKEY);
|
2006-10-13 12:14:59 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < cRects; ++i) {
|
2007-04-14 22:44:55 +02:00
|
|
|
IWineD3DSurface_BltFast(Dest->wineD3DSurface, 0, 0, Source->wineD3DSurface, (RECT *) &pSourceRects[i], WINEDDBLTFAST_NOCOLORKEY);
|
2006-10-13 12:14:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2003-01-14 23:53:50 +01:00
|
|
|
|
2006-10-13 12:14:59 +02:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-14 17:13:19 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_UpdateTexture(LPDIRECT3DDEVICE8 iface, IDirect3DBaseTexture8* pSourceTexture, IDirect3DBaseTexture8* pDestinationTexture) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2003-06-04 23:55:29 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_UpdateTexture(This->WineD3DDevice, ((IDirect3DBaseTexture8Impl *)pSourceTexture)->wineD3DBaseTexture, ((IDirect3DBaseTexture8Impl *)pDestinationTexture)->wineD3DBaseTexture);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-05-11 05:35:27 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetFrontBuffer(LPDIRECT3DDEVICE8 iface, IDirect3DSurface8* pDestSurface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DSurface8Impl *destSurface = (IDirect3DSurface8Impl *)pDestSurface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2003-05-11 05:35:27 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2003-05-11 05:35:27 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if (pDestSurface == NULL) {
|
|
|
|
WARN("(%p) : Caller passed NULL as pDestSurface returning D3DERR_INVALIDCALL\n", This);
|
|
|
|
return D3DERR_INVALIDCALL;
|
2003-05-14 21:33:35 +02:00
|
|
|
}
|
2003-05-11 05:35:27 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetFrontBufferData(This->WineD3DDevice, 0, destSurface->wineD3DSurface);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-06-04 23:55:29 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetRenderTarget(LPDIRECT3DDEVICE8 iface, IDirect3DSurface8* pRenderTarget, IDirect3DSurface8* pNewZStencil) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DSurface8Impl *pSurface = (IDirect3DSurface8Impl *)pRenderTarget;
|
|
|
|
IDirect3DSurface8Impl *pZSurface = (IDirect3DSurface8Impl *)pNewZStencil;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2003-05-12 05:10:27 +02:00
|
|
|
|
2007-12-04 22:45:06 +01:00
|
|
|
IWineD3DDevice_SetDepthStencilSurface(This->WineD3DDevice, NULL == pZSurface ? NULL : pZSurface->wineD3DSurface);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2007-12-04 22:45:06 +01:00
|
|
|
hr = IWineD3DDevice_SetRenderTarget(This->WineD3DDevice, 0, pSurface ? pSurface->wineD3DSurface : NULL);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-06-04 23:55:29 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetRenderTarget(LPDIRECT3DDEVICE8 iface, IDirect3DSurface8** ppRenderTarget) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
HRESULT hr = D3D_OK;
|
|
|
|
IWineD3DSurface *pRenderTarget;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
|
|
|
|
if (ppRenderTarget == NULL) {
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
hr = IWineD3DDevice_GetRenderTarget(This->WineD3DDevice, 0, &pRenderTarget);
|
|
|
|
|
|
|
|
if (hr == D3D_OK && pRenderTarget != NULL) {
|
2006-12-01 00:15:42 +01:00
|
|
|
IWineD3DSurface_GetParent(pRenderTarget,(IUnknown**)ppRenderTarget);
|
|
|
|
IWineD3DSurface_Release(pRenderTarget);
|
2006-02-25 13:15:08 +01:00
|
|
|
} else {
|
|
|
|
FIXME("Call to IWineD3DDevice_GetRenderTarget failed\n");
|
|
|
|
*ppRenderTarget = NULL;
|
|
|
|
}
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-06-04 23:55:29 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetDepthStencilSurface(LPDIRECT3DDEVICE8 iface, IDirect3DSurface8** ppZStencilSurface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
HRESULT hr = D3D_OK;
|
|
|
|
IWineD3DSurface *pZStencilSurface;
|
|
|
|
|
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
if(ppZStencilSurface == NULL){
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
hr=IWineD3DDevice_GetDepthStencilSurface(This->WineD3DDevice,&pZStencilSurface);
|
|
|
|
if(hr == D3D_OK && pZStencilSurface != NULL){
|
2006-12-01 00:15:42 +01:00
|
|
|
IWineD3DSurface_GetParent(pZStencilSurface,(IUnknown**)ppZStencilSurface);
|
|
|
|
IWineD3DSurface_Release(pZStencilSurface);
|
2006-02-25 13:15:08 +01:00
|
|
|
}else{
|
2006-10-17 00:40:29 +02:00
|
|
|
FIXME("Call to IWineD3DDevice_GetDepthStencilSurface failed\n");
|
2006-02-25 13:15:08 +01:00
|
|
|
*ppZStencilSurface = NULL;
|
|
|
|
}
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_BeginScene(LPDIRECT3DDEVICE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2007-04-07 06:02:33 +02:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_BeginScene(This->WineD3DDevice);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2004-04-27 01:34:17 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_EndScene(LPDIRECT3DDEVICE8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2003-06-04 23:55:29 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_EndScene(This->WineD3DDevice);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_Clear(LPDIRECT3DDEVICE8 iface, DWORD Count, CONST D3DRECT* pRects, DWORD Flags, D3DCOLOR Color, float Z, DWORD Stencil) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-10-12 08:22:18 +02:00
|
|
|
/* Note: D3DRECT is compatible with WINED3DRECT */
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_Clear(This->WineD3DDevice, Count, (CONST WINED3DRECT*) pRects, Flags, Color, Z, Stencil);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-05-22 05:35:24 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetTransform(LPDIRECT3DDEVICE8 iface, D3DTRANSFORMSTATETYPE State, CONST D3DMATRIX* lpMatrix) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2003-05-22 05:35:24 +02:00
|
|
|
|
2006-10-12 08:21:39 +02:00
|
|
|
/* Note: D3DMATRIX is compatible with WINED3DMATRIX */
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_SetTransform(This->WineD3DDevice, State, (CONST WINED3DMATRIX*) lpMatrix);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-05-22 05:35:24 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetTransform(LPDIRECT3DDEVICE8 iface, D3DTRANSFORMSTATETYPE State,D3DMATRIX* pMatrix) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-10-12 08:21:39 +02:00
|
|
|
/* Note: D3DMATRIX is compatible with WINED3DMATRIX */
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetTransform(This->WineD3DDevice, State, (WINED3DMATRIX*) pMatrix);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_MultiplyTransform(LPDIRECT3DDEVICE8 iface, D3DTRANSFORMSTATETYPE State, CONST D3DMATRIX* pMatrix) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-10-12 08:21:39 +02:00
|
|
|
/* Note: D3DMATRIX is compatible with WINED3DMATRIX */
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_MultiplyTransform(This->WineD3DDevice, State, (CONST WINED3DMATRIX*) pMatrix);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-05-22 05:35:24 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetViewport(LPDIRECT3DDEVICE8 iface, CONST D3DVIEWPORT8* pViewport) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-10-11 03:57:25 +02:00
|
|
|
/* Note: D3DVIEWPORT8 is compatible with WINED3DVIEWPORT */
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_SetViewport(This->WineD3DDevice, (const WINED3DVIEWPORT *)pViewport);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetViewport(LPDIRECT3DDEVICE8 iface, D3DVIEWPORT8* pViewport) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-10-11 03:57:25 +02:00
|
|
|
/* Note: D3DVIEWPORT8 is compatible with WINED3DVIEWPORT */
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetViewport(This->WineD3DDevice, (WINED3DVIEWPORT *)pViewport);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-05-06 02:19:11 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetMaterial(LPDIRECT3DDEVICE8 iface, CONST D3DMATERIAL8* pMaterial) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2006-10-11 03:56:41 +02:00
|
|
|
|
|
|
|
/* Note: D3DMATERIAL8 is compatible with WINED3DMATERIAL */
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_SetMaterial(This->WineD3DDevice, (const WINED3DMATERIAL *)pMaterial);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetMaterial(LPDIRECT3DDEVICE8 iface, D3DMATERIAL8* pMaterial) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2006-10-11 03:56:41 +02:00
|
|
|
|
|
|
|
/* Note: D3DMATERIAL8 is compatible with WINED3DMATERIAL */
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetMaterial(This->WineD3DDevice, (WINED3DMATERIAL *)pMaterial);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetLight(LPDIRECT3DDEVICE8 iface, DWORD Index, CONST D3DLIGHT8* pLight) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2006-10-11 03:55:47 +02:00
|
|
|
|
|
|
|
/* Note: D3DLIGHT8 is compatible with WINED3DLIGHT */
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_SetLight(This->WineD3DDevice, Index, (const WINED3DLIGHT *)pLight);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetLight(LPDIRECT3DDEVICE8 iface, DWORD Index,D3DLIGHT8* pLight) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2006-10-11 03:55:47 +02:00
|
|
|
|
|
|
|
/* Note: D3DLIGHT8 is compatible with WINED3DLIGHT */
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetLight(This->WineD3DDevice, Index, (WINED3DLIGHT *)pLight);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_LightEnable(LPDIRECT3DDEVICE8 iface, DWORD Index,BOOL Enable) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_SetLightEnable(This->WineD3DDevice, Index, Enable);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-01-23 23:38:51 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetLightEnable(LPDIRECT3DDEVICE8 iface, DWORD Index,BOOL* pEnable) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2003-09-30 02:21:07 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetLightEnable(This->WineD3DDevice, Index, pEnable);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-09-30 02:21:07 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetClipPlane(LPDIRECT3DDEVICE8 iface, DWORD Index,CONST float* pPlane) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2003-06-18 05:17:42 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_SetClipPlane(This->WineD3DDevice, Index, pPlane);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-01-23 23:38:51 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetClipPlane(LPDIRECT3DDEVICE8 iface, DWORD Index,float* pPlane) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2002-12-17 05:14:34 +01:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetClipPlane(This->WineD3DDevice, Index, pPlane);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-01-15 00:12:37 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetRenderState(LPDIRECT3DDEVICE8 iface, D3DRENDERSTATETYPE State,DWORD Value) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2003-01-15 00:12:37 +01:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_SetRenderState(This->WineD3DDevice, State, Value);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-01-24 01:48:10 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetRenderState(LPDIRECT3DDEVICE8 iface, D3DRENDERSTATETYPE State,DWORD* pValue) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2003-06-04 22:10:43 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetRenderState(This->WineD3DDevice, State, pValue);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-06-04 22:10:43 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_BeginStateBlock(LPDIRECT3DDEVICE8 iface) {
|
2007-06-09 14:16:41 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
|
|
|
HRESULT hr;
|
|
|
|
TRACE("(%p)\n", This);
|
2003-06-04 22:10:43 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_BeginStateBlock(This->WineD3DDevice);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-06-04 22:10:43 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_EndStateBlock(LPDIRECT3DDEVICE8 iface, DWORD* pToken) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
|
|
|
HRESULT hr;
|
|
|
|
IWineD3DStateBlock* wineD3DStateBlock;
|
|
|
|
IDirect3DStateBlock8Impl* object;
|
2003-06-04 22:10:43 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2003-06-04 22:10:43 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
/* Tell wineD3D to endstatablock before anything else (in case we run out
|
|
|
|
* of memory later and cause locking problems)
|
|
|
|
*/
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
hr = IWineD3DDevice_EndStateBlock(This->WineD3DDevice , &wineD3DStateBlock);
|
|
|
|
if (hr != D3D_OK) {
|
2007-06-09 14:16:41 +02:00
|
|
|
FIXME("IWineD3DDevice_EndStateBlock returned an error\n");
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-01-17 15:58:43 +01:00
|
|
|
}
|
2006-01-23 11:26:25 +01:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
/* allocate a new IDirectD3DStateBlock */
|
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY ,sizeof(IDirect3DStateBlock8Impl));
|
|
|
|
object->ref = 1;
|
|
|
|
object->lpVtbl = &Direct3DStateBlock8_Vtbl;
|
2006-01-23 11:26:25 +01:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
object->wineD3DStateBlock = wineD3DStateBlock;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
*pToken = (DWORD)object;
|
|
|
|
TRACE("(%p)Returning %p %p\n", This, object, wineD3DStateBlock);
|
2003-06-18 05:17:42 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_ApplyStateBlock(LPDIRECT3DDEVICE8 iface, DWORD Token) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DStateBlock8Impl *pSB = (IDirect3DStateBlock8Impl*) Token;
|
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-27 20:59:20 +01:00
|
|
|
TRACE("(%p) %p Relay\n", This, pSB);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DStateBlock_Apply(pSB->wineD3DStateBlock);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CaptureStateBlock(LPDIRECT3DDEVICE8 iface, DWORD Token) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DStateBlock8Impl* pSB = (IDirect3DStateBlock8Impl *)Token;
|
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-27 20:59:20 +01:00
|
|
|
TRACE("(%p) %p Relay\n", This, pSB);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DStateBlock_Capture(pSB->wineD3DStateBlock);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DeleteStateBlock(LPDIRECT3DDEVICE8 iface, DWORD Token) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DStateBlock8Impl* pSB = (IDirect3DStateBlock8Impl *)Token;
|
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2002-10-07 20:24:28 +02:00
|
|
|
|
2006-02-27 20:59:20 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
while(IUnknown_Release((IUnknown *)pSB));
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
return D3D_OK;
|
2003-01-28 02:12:23 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateStateBlock(LPDIRECT3DDEVICE8 iface, D3DSTATEBLOCKTYPE Type, DWORD* pToken) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
|
|
|
IDirect3DStateBlock8Impl *object;
|
|
|
|
HRESULT hrc = D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2007-08-03 22:48:42 +02:00
|
|
|
if(Type != D3DSBT_ALL && Type != D3DSBT_PIXELSTATE &&
|
|
|
|
Type != D3DSBT_VERTEXSTATE ) {
|
|
|
|
WARN("Unexpected stateblock type, returning D3DERR_INVALIDCALL\n");
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirect3DStateBlock8Impl));
|
|
|
|
if (NULL == object) {
|
|
|
|
*pToken = 0;
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
object->lpVtbl = &Direct3DStateBlock8_Vtbl;
|
|
|
|
object->ref = 1;
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
hrc = IWineD3DDevice_CreateStateBlock(This->WineD3DDevice, (WINED3DSTATEBLOCKTYPE)Type, &object->wineD3DStateBlock, (IUnknown *)object);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
if(D3D_OK != hrc){
|
|
|
|
FIXME("(%p) Call to IWineD3DDevice_CreateStateBlock failed.\n", This);
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
*pToken = 0;
|
|
|
|
} else {
|
|
|
|
*pToken = (DWORD)object;
|
|
|
|
}
|
|
|
|
TRACE("(%p) returning token (ptr to stateblock) of %p\n", This, object);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
return hrc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetClipStatus(LPDIRECT3DDEVICE8 iface, CONST D3DCLIPSTATUS8* pClipStatus) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
/* FIXME: Verify that D3DCLIPSTATUS8 ~= WINED3DCLIPSTATUS */
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_SetClipStatus(This->WineD3DDevice, (const WINED3DCLIPSTATUS *)pClipStatus);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetClipStatus(LPDIRECT3DDEVICE8 iface, D3DCLIPSTATUS8* pClipStatus) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetClipStatus(This->WineD3DDevice, (WINED3DCLIPSTATUS *)pClipStatus);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetTexture(LPDIRECT3DDEVICE8 iface, DWORD Stage,IDirect3DBaseTexture8** ppTexture) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
IWineD3DBaseTexture *retTexture = NULL;
|
|
|
|
HRESULT rc = D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if(ppTexture == NULL){
|
2003-05-08 05:49:04 +02:00
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2007-12-04 22:45:06 +01:00
|
|
|
rc = IWineD3DDevice_GetTexture(This->WineD3DDevice, Stage, &retTexture);
|
2006-02-25 13:15:08 +01:00
|
|
|
if (rc == D3D_OK && NULL != retTexture) {
|
|
|
|
IWineD3DBaseTexture_GetParent(retTexture, (IUnknown **)ppTexture);
|
2006-11-30 13:33:29 +01:00
|
|
|
IWineD3DBaseTexture_Release(retTexture);
|
2002-10-28 20:00:23 +01:00
|
|
|
} else {
|
2006-10-10 19:23:08 +02:00
|
|
|
FIXME("Call to get texture (%d) failed (%p)\n", Stage, retTexture);
|
2006-02-25 13:15:08 +01:00
|
|
|
*ppTexture = NULL;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2002-10-28 20:00:23 +01:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
return rc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetTexture(LPDIRECT3DDEVICE8 iface, DWORD Stage, IDirect3DBaseTexture8* pTexture) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) Relay %d %p\n" , This, Stage, pTexture);
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_SetTexture(This->WineD3DDevice, Stage,
|
|
|
|
pTexture==NULL ? NULL : ((IDirect3DBaseTexture8Impl *)pTexture)->wineD3DBaseTexture);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetTextureStageState(LPDIRECT3DDEVICE8 iface, DWORD Stage,D3DTEXTURESTAGESTATETYPE Type,DWORD* pValue) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2003-01-03 22:28:05 +01:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
switch(Type) {
|
|
|
|
case D3DTSS_ADDRESSU:
|
|
|
|
Type = WINED3DSAMP_ADDRESSU;
|
2002-09-28 00:46:16 +02:00
|
|
|
break;
|
2006-02-25 13:15:08 +01:00
|
|
|
case D3DTSS_ADDRESSV:
|
|
|
|
Type = WINED3DSAMP_ADDRESSV;
|
2003-01-14 23:50:00 +01:00
|
|
|
break;
|
2006-02-25 13:15:08 +01:00
|
|
|
case D3DTSS_ADDRESSW:
|
|
|
|
Type = WINED3DSAMP_ADDRESSW;
|
|
|
|
break;
|
|
|
|
case D3DTSS_BORDERCOLOR:
|
|
|
|
Type = WINED3DSAMP_BORDERCOLOR;
|
|
|
|
break;
|
|
|
|
case D3DTSS_MAGFILTER:
|
|
|
|
Type = WINED3DSAMP_MAGFILTER;
|
|
|
|
break;
|
|
|
|
case D3DTSS_MAXANISOTROPY:
|
|
|
|
Type = WINED3DSAMP_MAXANISOTROPY;
|
|
|
|
break;
|
|
|
|
case D3DTSS_MAXMIPLEVEL:
|
|
|
|
Type = WINED3DSAMP_MAXMIPLEVEL;
|
2003-01-14 23:50:00 +01:00
|
|
|
break;
|
2006-02-25 13:15:08 +01:00
|
|
|
case D3DTSS_MINFILTER:
|
|
|
|
Type = WINED3DSAMP_MINFILTER;
|
2003-05-06 02:15:49 +02:00
|
|
|
break;
|
2006-02-25 13:15:08 +01:00
|
|
|
case D3DTSS_MIPFILTER:
|
|
|
|
Type = WINED3DSAMP_MIPFILTER;
|
2003-05-16 22:11:14 +02:00
|
|
|
break;
|
2006-02-25 13:15:08 +01:00
|
|
|
case D3DTSS_MIPMAPLODBIAS:
|
|
|
|
Type = WINED3DSAMP_MIPMAPLODBIAS;
|
2003-05-16 22:11:14 +02:00
|
|
|
break;
|
2006-02-25 13:15:08 +01:00
|
|
|
default:
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetTextureStageState(This->WineD3DDevice, Stage, Type, pValue);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-05-16 22:11:14 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetSamplerState(This->WineD3DDevice, Stage, Type, pValue);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2004-04-29 02:20:18 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetTextureStageState(LPDIRECT3DDEVICE8 iface, DWORD Stage, D3DTEXTURESTAGESTATETYPE Type, DWORD Value) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2004-04-29 02:20:18 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
switch(Type) {
|
|
|
|
case D3DTSS_ADDRESSU:
|
|
|
|
Type = WINED3DSAMP_ADDRESSU;
|
|
|
|
break;
|
|
|
|
case D3DTSS_ADDRESSV:
|
|
|
|
Type = WINED3DSAMP_ADDRESSV;
|
|
|
|
break;
|
|
|
|
case D3DTSS_ADDRESSW:
|
|
|
|
Type = WINED3DSAMP_ADDRESSW;
|
|
|
|
break;
|
|
|
|
case D3DTSS_BORDERCOLOR:
|
|
|
|
Type = WINED3DSAMP_BORDERCOLOR;
|
|
|
|
break;
|
|
|
|
case D3DTSS_MAGFILTER:
|
|
|
|
Type = WINED3DSAMP_MAGFILTER;
|
|
|
|
break;
|
|
|
|
case D3DTSS_MAXANISOTROPY:
|
|
|
|
Type = WINED3DSAMP_MAXANISOTROPY;
|
|
|
|
break;
|
|
|
|
case D3DTSS_MAXMIPLEVEL:
|
|
|
|
Type = WINED3DSAMP_MAXMIPLEVEL;
|
|
|
|
break;
|
|
|
|
case D3DTSS_MINFILTER:
|
|
|
|
Type = WINED3DSAMP_MINFILTER;
|
|
|
|
break;
|
|
|
|
case D3DTSS_MIPFILTER:
|
|
|
|
Type = WINED3DSAMP_MIPFILTER;
|
|
|
|
break;
|
|
|
|
case D3DTSS_MIPMAPLODBIAS:
|
|
|
|
Type = WINED3DSAMP_MIPMAPLODBIAS;
|
|
|
|
break;
|
2002-09-28 00:46:16 +02:00
|
|
|
default:
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_SetTextureStageState(This->WineD3DDevice, Stage, Type, Value);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-06-18 05:17:42 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_SetSamplerState(This->WineD3DDevice, Stage, Type, Value);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_ValidateDevice(LPDIRECT3DDEVICE8 iface, DWORD* pNumPasses) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_ValidateDevice(This->WineD3DDevice, pNumPasses);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetInfo(LPDIRECT3DDEVICE8 iface, DWORD DevInfoID, void* pDevInfoStruct, DWORD DevInfoStructSize) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
FIXME("(%p) : stub\n", This);
|
2003-05-17 20:33:02 +02:00
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetPaletteEntries(LPDIRECT3DDEVICE8 iface, UINT PaletteNumber, CONST PALETTEENTRY* pEntries) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_SetPaletteEntries(This->WineD3DDevice, PaletteNumber, pEntries);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetPaletteEntries(LPDIRECT3DDEVICE8 iface, UINT PaletteNumber, PALETTEENTRY* pEntries) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetPaletteEntries(This->WineD3DDevice, PaletteNumber, pEntries);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetCurrentTexturePalette(LPDIRECT3DDEVICE8 iface, UINT PaletteNumber) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2003-06-18 05:17:42 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_SetCurrentTexturePalette(This->WineD3DDevice, PaletteNumber);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-06-18 05:17:42 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetCurrentTexturePalette(LPDIRECT3DDEVICE8 iface, UINT *PaletteNumber) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2003-06-18 05:17:42 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetCurrentTexturePalette(This->WineD3DDevice, PaletteNumber);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-06-18 05:17:42 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DrawPrimitive(LPDIRECT3DDEVICE8 iface, D3DPRIMITIVETYPE PrimitiveType, UINT StartVertex, UINT PrimitiveCount) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2003-06-18 05:17:42 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_DrawPrimitive(This->WineD3DDevice, PrimitiveType, StartVertex, PrimitiveCount);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DrawIndexedPrimitive(LPDIRECT3DDEVICE8 iface, D3DPRIMITIVETYPE PrimitiveType,
|
2006-02-25 13:15:08 +01:00
|
|
|
UINT MinVertexIndex,UINT NumVertices,UINT startIndex,UINT primCount) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_DrawIndexedPrimitive(This->WineD3DDevice, PrimitiveType, MinVertexIndex, NumVertices, startIndex, primCount);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DrawPrimitiveUP(LPDIRECT3DDEVICE8 iface, D3DPRIMITIVETYPE PrimitiveType,UINT PrimitiveCount,CONST void* pVertexStreamZeroData,UINT VertexStreamZeroStride) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_DrawPrimitiveUP(This->WineD3DDevice, PrimitiveType, PrimitiveCount, pVertexStreamZeroData, VertexStreamZeroStride);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DrawIndexedPrimitiveUP(LPDIRECT3DDEVICE8 iface, D3DPRIMITIVETYPE PrimitiveType,UINT MinVertexIndex,
|
2006-02-25 13:15:08 +01:00
|
|
|
UINT NumVertexIndices,UINT PrimitiveCount,CONST void* pIndexData,
|
|
|
|
D3DFORMAT IndexDataFormat,CONST void* pVertexStreamZeroData,
|
|
|
|
UINT VertexStreamZeroStride) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_DrawIndexedPrimitiveUP(This->WineD3DDevice, PrimitiveType, MinVertexIndex, NumVertexIndices, PrimitiveCount,
|
|
|
|
pIndexData, IndexDataFormat, pVertexStreamZeroData, VertexStreamZeroStride);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_ProcessVertices(LPDIRECT3DDEVICE8 iface, UINT SrcStartIndex,UINT DestIndex,UINT VertexCount,IDirect3DVertexBuffer8* pDestBuffer,DWORD Flags) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_ProcessVertices(This->WineD3DDevice,SrcStartIndex, DestIndex, VertexCount, ((IDirect3DVertexBuffer8Impl *)pDestBuffer)->wineD3DVertexBuffer, NULL, Flags);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2007-02-13 23:12:24 +01:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateVertexDeclaration(IDirect3DDevice8 *iface, CONST DWORD *declaration, IDirect3DVertexDeclaration8 **decl_ptr) {
|
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
|
|
|
IDirect3DVertexDeclaration8Impl *object;
|
2007-02-13 23:12:45 +01:00
|
|
|
WINED3DVERTEXELEMENT *wined3d_elements;
|
|
|
|
size_t wined3d_element_count;
|
2007-02-13 23:12:24 +01:00
|
|
|
HRESULT hr = D3D_OK;
|
|
|
|
|
|
|
|
TRACE("(%p) : declaration %p\n", This, declaration);
|
|
|
|
|
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
|
|
|
if (!object) {
|
|
|
|
ERR("Memory allocation failed\n");
|
|
|
|
*decl_ptr = NULL;
|
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
object->ref_count = 1;
|
|
|
|
object->lpVtbl = &Direct3DVertexDeclaration8_Vtbl;
|
|
|
|
|
2007-03-08 01:15:46 +01:00
|
|
|
wined3d_element_count = convert_to_wined3d_declaration(declaration, &object->elements_size, &wined3d_elements);
|
|
|
|
object->elements = HeapAlloc(GetProcessHeap(), 0, object->elements_size);
|
|
|
|
if (!object->elements) {
|
|
|
|
ERR("Memory allocation failed\n");
|
|
|
|
HeapFree(GetProcessHeap(), 0, wined3d_elements);
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
*decl_ptr = NULL;
|
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
CopyMemory(object->elements, declaration, object->elements_size);
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2007-02-13 23:12:45 +01:00
|
|
|
hr = IWineD3DDevice_CreateVertexDeclaration(This->WineD3DDevice, &object->wined3d_vertex_declaration,
|
|
|
|
(IUnknown *)object, wined3d_elements, wined3d_element_count);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2007-02-13 23:12:45 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, wined3d_elements);
|
|
|
|
|
2007-02-13 23:12:24 +01:00
|
|
|
if (FAILED(hr)) {
|
|
|
|
ERR("(%p) : IWineD3DDevice_CreateVertexDeclaration call failed\n", This);
|
2007-03-08 01:15:46 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, object->elements);
|
2007-02-13 23:12:24 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
} else {
|
|
|
|
*decl_ptr = (IDirect3DVertexDeclaration8 *)object;
|
|
|
|
TRACE("(%p) : Created vertex declaration %p\n", This, object);
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreateVertexShader(LPDIRECT3DDEVICE8 iface, CONST DWORD* pDeclaration, CONST DWORD* pFunction, DWORD* ppShader, DWORD Usage) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
HRESULT hrc = D3D_OK;
|
|
|
|
IDirect3DVertexShader8Impl *object;
|
2007-02-13 23:12:29 +01:00
|
|
|
IWineD3DVertexDeclaration *wined3d_vertex_declaration;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
/* Setup a stub object for now */
|
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
|
|
|
TRACE("(%p) : pFunction(%p), ppShader(%p)\n", This, pFunction, ppShader);
|
|
|
|
if (NULL == object) {
|
|
|
|
FIXME("Allocation of memory failed\n");
|
|
|
|
*ppShader = 0;
|
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
object->ref = 1;
|
|
|
|
object->lpVtbl = &Direct3DVertexShader8_Vtbl;
|
2007-02-13 23:12:24 +01:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2007-02-13 23:12:24 +01:00
|
|
|
hrc = IDirect3DDevice8Impl_CreateVertexDeclaration(iface, pDeclaration, &object->vertex_declaration);
|
|
|
|
if (FAILED(hrc)) {
|
|
|
|
ERR("(%p) : IDirect3DDeviceImpl_CreateVertexDeclaration call failed\n", This);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2007-02-13 23:12:24 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
*ppShader = 0;
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
2007-02-13 23:12:29 +01:00
|
|
|
wined3d_vertex_declaration = ((IDirect3DVertexDeclaration8Impl *)object->vertex_declaration)->wined3d_vertex_declaration;
|
2007-02-13 23:12:24 +01:00
|
|
|
|
2007-02-19 15:19:19 +01:00
|
|
|
/* Usage is missing ... Use SetRenderState to set the sw vp render state in SetVertexShader */
|
2007-02-13 23:12:29 +01:00
|
|
|
hrc = IWineD3DDevice_CreateVertexShader(This->WineD3DDevice, wined3d_vertex_declaration, pFunction, &object->wineD3DVertexShader, (IUnknown *)object);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if (FAILED(hrc)) {
|
|
|
|
/* free up object */
|
|
|
|
FIXME("Call to IWineD3DDevice_CreateVertexShader failed\n");
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
*ppShader = 0;
|
|
|
|
} else {
|
|
|
|
/* TODO: Store the VS declarations locally so that they can be derefferenced with a value higher than VS_HIGHESTFIXEDFXF */
|
2006-08-27 22:07:09 +02:00
|
|
|
shader_handle *handle = alloc_shader_handle(This);
|
|
|
|
if (!handle) {
|
|
|
|
ERR("Failed to allocate shader handle\n");
|
|
|
|
IDirect3DVertexShader8_Release((IUnknown *)object);
|
2006-02-25 13:15:08 +01:00
|
|
|
hrc = E_OUTOFMEMORY;
|
|
|
|
} else {
|
2006-08-27 22:07:09 +02:00
|
|
|
object->handle = handle;
|
|
|
|
*handle = object;
|
|
|
|
*ppShader = (handle - This->shader_handles) + VS_HIGHESTFIXEDFXF + 1;
|
2007-02-13 23:12:40 +01:00
|
|
|
|
|
|
|
load_local_constants(pDeclaration, object->wineD3DVertexShader);
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
|
|
|
}
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : returning %p (handle %#x)\n", This, object, *ppShader);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
return hrc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2007-06-19 22:20:26 +02:00
|
|
|
IWineD3DVertexDeclaration *IDirect3DDevice8Impl_FindDecl(IDirect3DDevice8Impl *This, DWORD fvf)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
IWineD3DVertexDeclaration* pDecl = NULL;
|
|
|
|
int p, low, high; /* deliberately signed */
|
|
|
|
struct FvfToDecl *convertedDecls = This->decls;
|
|
|
|
|
|
|
|
TRACE("Searching for declaration for fvf %08x... ", fvf);
|
|
|
|
|
|
|
|
low = 0;
|
|
|
|
high = This->numConvertedDecls - 1;
|
|
|
|
while(low <= high) {
|
|
|
|
p = (low + high) >> 1;
|
|
|
|
TRACE("%d ", p);
|
|
|
|
if(convertedDecls[p].fvf == fvf) {
|
|
|
|
TRACE("found %p\n", convertedDecls[p].decl);
|
|
|
|
return convertedDecls[p].decl;
|
|
|
|
} else if(convertedDecls[p].fvf < fvf) {
|
|
|
|
low = p + 1;
|
|
|
|
} else {
|
|
|
|
high = p - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TRACE("not found. Creating and inserting at position %d.\n", low);
|
|
|
|
|
|
|
|
hr = IWineD3DDevice_CreateVertexDeclarationFromFVF(This->WineD3DDevice,
|
|
|
|
&pDecl,
|
|
|
|
(IUnknown *) This,
|
|
|
|
fvf);
|
|
|
|
if (FAILED(hr)) return NULL;
|
|
|
|
|
|
|
|
if(This->declArraySize == This->numConvertedDecls) {
|
|
|
|
int grow = This->declArraySize / 2;
|
|
|
|
convertedDecls = HeapReAlloc(GetProcessHeap(), 0, convertedDecls,
|
|
|
|
sizeof(convertedDecls[0]) * (This->numConvertedDecls + grow));
|
|
|
|
if(!convertedDecls) {
|
|
|
|
/* This will destroy it */
|
|
|
|
IWineD3DVertexDeclaration_Release(pDecl);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
This->decls = convertedDecls;
|
|
|
|
This->declArraySize += grow;
|
|
|
|
}
|
|
|
|
|
|
|
|
memmove(convertedDecls + low + 1, convertedDecls + low, sizeof(convertedDecls[0]) * (This->numConvertedDecls - low));
|
|
|
|
convertedDecls[low].decl = pDecl;
|
|
|
|
convertedDecls[low].fvf = fvf;
|
|
|
|
This->numConvertedDecls++;
|
|
|
|
|
|
|
|
TRACE("Returning %p. %d decls in array\n", pDecl, This->numConvertedDecls);
|
|
|
|
return pDecl;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetVertexShader(LPDIRECT3DDEVICE8 iface, DWORD pShader) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
HRESULT hrc = D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-27 20:59:20 +01:00
|
|
|
TRACE("(%p) : Relay\n", This);
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
if (VS_HIGHESTFIXEDFXF >= pShader) {
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("Setting FVF, %d %d\n", VS_HIGHESTFIXEDFXF, pShader);
|
2006-02-25 13:15:08 +01:00
|
|
|
IWineD3DDevice_SetFVF(This->WineD3DDevice, pShader);
|
2007-06-19 22:20:26 +02:00
|
|
|
IWineD3DDevice_SetVertexDeclaration(This->WineD3DDevice, IDirect3DDevice8Impl_FindDecl(This, pShader));
|
2006-03-16 22:42:00 +01:00
|
|
|
IWineD3DDevice_SetVertexShader(This->WineD3DDevice, NULL);
|
2002-09-28 00:46:16 +02:00
|
|
|
} else {
|
2006-03-19 23:25:49 +01:00
|
|
|
TRACE("Setting shader\n");
|
2006-08-27 22:07:09 +02:00
|
|
|
if (This->allocated_shader_handles <= pShader - (VS_HIGHESTFIXEDFXF + 1)) {
|
2006-02-25 13:15:08 +01:00
|
|
|
FIXME("(%p) : Number of shaders exceeds the maximum number of possible shaders\n", This);
|
|
|
|
hrc = D3DERR_INVALIDCALL;
|
|
|
|
} else {
|
2006-08-27 22:07:09 +02:00
|
|
|
IDirect3DVertexShader8Impl *shader = This->shader_handles[pShader - (VS_HIGHESTFIXEDFXF + 1)];
|
2007-02-13 23:12:29 +01:00
|
|
|
IWineD3DDevice_SetVertexDeclaration(This->WineD3DDevice,
|
|
|
|
shader ? ((IDirect3DVertexDeclaration8Impl *)shader->vertex_declaration)->wined3d_vertex_declaration : NULL);
|
|
|
|
hrc = IWineD3DDevice_SetVertexShader(This->WineD3DDevice, 0 == shader ? NULL : shader->wineD3DVertexShader);
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : returning hr(%u)\n", This, hrc);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
return hrc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2002-12-17 02:15:15 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetVertexShader(LPDIRECT3DDEVICE8 iface, DWORD* ppShader) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
|
|
|
IWineD3DVertexShader *pShader;
|
|
|
|
HRESULT hrc = D3D_OK;
|
2003-01-28 02:12:23 +01:00
|
|
|
|
2006-02-27 20:59:20 +01:00
|
|
|
TRACE("(%p) : Relay device@%p\n", This, This->WineD3DDevice);
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
hrc = IWineD3DDevice_GetVertexShader(This->WineD3DDevice, &pShader);
|
|
|
|
if (D3D_OK == hrc) {
|
|
|
|
if(0 != pShader) {
|
2006-08-27 22:07:09 +02:00
|
|
|
IDirect3DVertexShader8Impl *d3d8_shader;
|
|
|
|
hrc = IWineD3DVertexShader_GetParent(pShader, (IUnknown **)&d3d8_shader);
|
2006-02-25 13:15:08 +01:00
|
|
|
IWineD3DVertexShader_Release(pShader);
|
2006-08-27 22:07:09 +02:00
|
|
|
*ppShader = (d3d8_shader->handle - This->shader_handles) + (VS_HIGHESTFIXEDFXF + 1);
|
2006-02-25 13:15:08 +01:00
|
|
|
} else {
|
|
|
|
*ppShader = 0;
|
2007-02-12 19:21:45 +01:00
|
|
|
hrc = D3D_OK;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
|
|
|
} else {
|
2006-10-10 19:23:08 +02:00
|
|
|
WARN("(%p) : Call to IWineD3DDevice_GetVertexShader failed %u (device %p)\n", This, hrc, This->WineD3DDevice);
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : returning %#x\n", This, *ppShader);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2002-12-17 02:15:15 +01:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
return hrc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DeleteVertexShader(LPDIRECT3DDEVICE8 iface, DWORD pShader) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-08-27 22:07:09 +02:00
|
|
|
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : pShader %#x\n", This, pShader);
|
2006-08-27 22:07:09 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-08-27 22:07:09 +02:00
|
|
|
if (pShader <= VS_HIGHESTFIXEDFXF || This->allocated_shader_handles <= pShader - (VS_HIGHESTFIXEDFXF + 1)) {
|
|
|
|
ERR("(%p) : Trying to delete an invalid handle\n", This);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2006-08-27 22:07:09 +02:00
|
|
|
return D3DERR_INVALIDCALL;
|
2006-02-25 13:15:08 +01:00
|
|
|
} else {
|
2007-02-12 19:21:45 +01:00
|
|
|
IWineD3DVertexShader *cur = NULL;
|
2006-08-27 22:07:09 +02:00
|
|
|
shader_handle *handle = &This->shader_handles[pShader - (VS_HIGHESTFIXEDFXF + 1)];
|
|
|
|
IDirect3DVertexShader8Impl *shader = *handle;
|
2007-02-12 19:21:45 +01:00
|
|
|
|
|
|
|
IWineD3DDevice_GetVertexShader(This->WineD3DDevice, &cur);
|
|
|
|
if(cur) {
|
|
|
|
if(cur == shader->wineD3DVertexShader) IDirect3DDevice8_SetVertexShader(iface, 0);
|
|
|
|
IWineD3DVertexShader_Release(cur);
|
|
|
|
}
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
while(IUnknown_Release((IUnknown *)shader));
|
2006-08-27 22:07:09 +02:00
|
|
|
free_shader_handle(This, handle);
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-08-27 22:07:09 +02:00
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetVertexShaderConstant(LPDIRECT3DDEVICE8 iface, DWORD Register, CONST void* pConstantData, DWORD ConstantCount) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) : Relay\n", This);
|
2003-01-28 02:12:23 +01:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_SetVertexShaderConstantF(This->WineD3DDevice, Register, (CONST float *)pConstantData, ConstantCount);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2003-01-28 02:12:23 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetVertexShaderConstant(LPDIRECT3DDEVICE8 iface, DWORD Register, void* pConstantData, DWORD ConstantCount) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) : Relay\n", This);
|
2003-01-28 02:12:23 +01:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetVertexShaderConstantF(This->WineD3DDevice, Register, (float *)pConstantData, ConstantCount);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2002-12-17 02:15:15 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetVertexShaderDeclaration(LPDIRECT3DDEVICE8 iface, DWORD pVertexShader, void* pData, DWORD* pSizeOfData) {
|
2007-01-06 18:04:01 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-03-08 01:15:57 +01:00
|
|
|
IDirect3DVertexDeclaration8Impl *declaration;
|
2007-01-06 18:04:01 +01:00
|
|
|
IDirect3DVertexShader8Impl *shader = NULL;
|
2002-12-17 02:15:15 +01:00
|
|
|
|
2007-03-08 01:15:57 +01:00
|
|
|
TRACE("(%p) : pVertexShader 0x%08x, pData %p, *pSizeOfData %u\n", This, pVertexShader, pData, *pSizeOfData);
|
2007-01-06 18:04:01 +01:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2007-01-06 18:04:01 +01:00
|
|
|
if (pVertexShader <= VS_HIGHESTFIXEDFXF || This->allocated_shader_handles <= pVertexShader - (VS_HIGHESTFIXEDFXF + 1)) {
|
|
|
|
ERR("Passed an invalid shader handle.\n");
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2007-01-06 18:04:01 +01:00
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
shader = This->shader_handles[pVertexShader - (VS_HIGHESTFIXEDFXF + 1)];
|
2007-03-08 01:15:57 +01:00
|
|
|
declaration = (IDirect3DVertexDeclaration8Impl *)shader->vertex_declaration;
|
|
|
|
|
|
|
|
/* If pData is NULL, we just return the required size of the buffer. */
|
|
|
|
if (!pData) {
|
|
|
|
*pSizeOfData = declaration->elements_size;
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2007-03-08 01:15:57 +01:00
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* MSDN claims that if *pSizeOfData is smaller than the required size
|
|
|
|
* we should write the required size and return D3DERR_MOREDATA.
|
|
|
|
* That's not actually true. */
|
|
|
|
if (*pSizeOfData < declaration->elements_size) {
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2007-03-08 01:15:57 +01:00
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
CopyMemory(pData, declaration->elements, declaration->elements_size);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2007-03-08 01:15:57 +01:00
|
|
|
|
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2007-01-06 18:04:01 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetVertexShaderFunction(LPDIRECT3DDEVICE8 iface, DWORD pVertexShader, void* pData, DWORD* pSizeOfData) {
|
2007-01-06 18:03:54 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
|
|
|
IDirect3DVertexShader8Impl *shader = NULL;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2002-12-17 02:15:15 +01:00
|
|
|
|
2007-01-06 18:03:54 +01:00
|
|
|
TRACE("(%p) : pVertexShader %#x, pData %p, pSizeOfData %p\n", This, pVertexShader, pData, pSizeOfData);
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2007-01-06 18:03:54 +01:00
|
|
|
if (pVertexShader <= VS_HIGHESTFIXEDFXF || This->allocated_shader_handles <= pVertexShader - (VS_HIGHESTFIXEDFXF + 1)) {
|
|
|
|
ERR("Passed an invalid shader handle.\n");
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2007-01-06 18:03:54 +01:00
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
shader = This->shader_handles[pVertexShader - (VS_HIGHESTFIXEDFXF + 1)];
|
2007-12-31 23:23:21 +01:00
|
|
|
hr = IWineD3DVertexShader_GetFunction(shader->wineD3DVertexShader, pData, pSizeOfData);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetIndices(LPDIRECT3DDEVICE8 iface, IDirect3DIndexBuffer8* pIndexData, UINT baseVertexIndex) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-09 14:16:41 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2007-08-25 00:09:33 +02:00
|
|
|
/* WineD3D takes an INT(due to d3d9), but d3d8 uses UINTs. Do I have to add a check here that
|
|
|
|
* the UINT doesn't cause an overflow in the INT? It seems rather unlikely because such large
|
|
|
|
* vertex buffers can't be created to address them with an index that requires the 32nd bit
|
|
|
|
* (4 Byte minimum vertex size * 2^31-1 -> 8 gb buffer. The index sign would be the least
|
|
|
|
* problem)
|
|
|
|
*/
|
2007-06-05 18:52:21 +02:00
|
|
|
IWineD3DDevice_SetBaseVertexIndex(This->WineD3DDevice, baseVertexIndex);
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_SetIndices(This->WineD3DDevice,
|
2007-06-05 18:52:21 +02:00
|
|
|
pIndexData ? ((IDirect3DIndexBuffer8Impl *)pIndexData)->wineD3DIndexBuffer : NULL);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetIndices(LPDIRECT3DDEVICE8 iface, IDirect3DIndexBuffer8** ppIndexData,UINT* pBaseVertexIndex) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
|
|
|
IWineD3DIndexBuffer *retIndexData = NULL;
|
|
|
|
HRESULT rc = D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if(ppIndexData == NULL){
|
|
|
|
return D3DERR_INVALIDCALL;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2007-08-25 00:09:33 +02:00
|
|
|
/* The case from UINT to INT is safe because d3d8 will never set negative values */
|
|
|
|
IWineD3DDevice_GetBaseVertexIndex(This->WineD3DDevice, (INT *) pBaseVertexIndex);
|
2007-06-06 18:40:09 +02:00
|
|
|
rc = IWineD3DDevice_GetIndices(This->WineD3DDevice, &retIndexData);
|
|
|
|
if (SUCCEEDED(rc) && retIndexData) {
|
2006-12-01 00:15:42 +01:00
|
|
|
IWineD3DIndexBuffer_GetParent(retIndexData, (IUnknown **)ppIndexData);
|
|
|
|
IWineD3DIndexBuffer_Release(retIndexData);
|
2006-02-25 13:15:08 +01:00
|
|
|
} else {
|
2007-06-06 18:40:09 +02:00
|
|
|
if (FAILED(rc)) FIXME("Call to GetIndices failed\n");
|
2006-02-25 13:15:08 +01:00
|
|
|
*ppIndexData = NULL;
|
|
|
|
}
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
return rc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_CreatePixelShader(LPDIRECT3DDEVICE8 iface, CONST DWORD* pFunction, DWORD* ppShader) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DPixelShader8Impl *object;
|
|
|
|
HRESULT hrc = D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-08-27 22:07:13 +02:00
|
|
|
TRACE("(%p) : pFunction(%p), ppShader(%p)\n", This, pFunction, ppShader);
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if (NULL == ppShader) {
|
|
|
|
TRACE("(%p) Invalid call\n", This);
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
if (NULL == object) {
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
} else {
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
|
|
|
|
object->ref = 1;
|
|
|
|
object->lpVtbl = &Direct3DPixelShader8_Vtbl;
|
|
|
|
hrc = IWineD3DDevice_CreatePixelShader(This->WineD3DDevice, pFunction, &object->wineD3DPixelShader , (IUnknown *)object);
|
|
|
|
if (D3D_OK != hrc) {
|
|
|
|
FIXME("(%p) call to IWineD3DDevice_CreatePixelShader failed\n", This);
|
|
|
|
HeapFree(GetProcessHeap(), 0 , object);
|
|
|
|
*ppShader = 0;
|
|
|
|
} else {
|
2006-08-27 22:07:13 +02:00
|
|
|
shader_handle *handle = alloc_shader_handle(This);
|
|
|
|
if (!handle) {
|
|
|
|
ERR("Failed to allocate shader handle\n");
|
|
|
|
IDirect3DVertexShader8_Release((IUnknown *)object);
|
|
|
|
hrc = E_OUTOFMEMORY;
|
|
|
|
} else {
|
|
|
|
object->handle = handle;
|
|
|
|
*handle = object;
|
|
|
|
*ppShader = (handle - This->shader_handles) + VS_HIGHESTFIXEDFXF + 1;
|
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2002-12-17 02:15:15 +01:00
|
|
|
}
|
|
|
|
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : returning %p (handle %#x)\n", This, object, *ppShader);
|
2006-02-25 13:15:08 +01:00
|
|
|
return hrc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2004-05-10 21:57:51 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetPixelShader(LPDIRECT3DDEVICE8 iface, DWORD pShader) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2006-08-27 22:07:13 +02:00
|
|
|
IDirect3DPixelShader8Impl *shader = NULL;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : pShader %#x\n", This, pShader);
|
2006-08-27 22:07:13 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-08-27 22:07:13 +02:00
|
|
|
if (pShader > VS_HIGHESTFIXEDFXF && This->allocated_shader_handles > pShader - (VS_HIGHESTFIXEDFXF + 1)) {
|
|
|
|
shader = This->shader_handles[pShader - (VS_HIGHESTFIXEDFXF + 1)];
|
|
|
|
} else if (pShader) {
|
|
|
|
ERR("Trying to set an invalid handle.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
TRACE("(%p) : Setting shader %p\n", This, shader);
|
2007-06-09 14:16:41 +02:00
|
|
|
hr = IWineD3DDevice_SetPixelShader(This->WineD3DDevice, shader == NULL ? NULL :shader->wineD3DPixelShader);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetPixelShader(LPDIRECT3DDEVICE8 iface, DWORD* ppShader) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
|
|
|
IWineD3DPixelShader *object;
|
|
|
|
|
|
|
|
HRESULT hrc = D3D_OK;
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
if (NULL == ppShader) {
|
|
|
|
TRACE("(%p) Invalid call\n", This);
|
|
|
|
return D3DERR_INVALIDCALL;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
hrc = IWineD3DDevice_GetPixelShader(This->WineD3DDevice, &object);
|
|
|
|
if (D3D_OK == hrc && NULL != object) {
|
2006-08-27 22:07:13 +02:00
|
|
|
IDirect3DPixelShader8Impl *d3d8_shader;
|
|
|
|
hrc = IWineD3DPixelShader_GetParent(object, (IUnknown **)&d3d8_shader);
|
|
|
|
IWineD3DPixelShader_Release(object);
|
|
|
|
*ppShader = (d3d8_shader->handle - This->shader_handles) + (VS_HIGHESTFIXEDFXF + 1);
|
2002-10-28 20:00:23 +01:00
|
|
|
} else {
|
2006-02-25 13:15:08 +01:00
|
|
|
*ppShader = (DWORD)NULL;
|
2002-10-28 20:00:23 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : returning %#x\n", This, *ppShader);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
return hrc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DeletePixelShader(LPDIRECT3DDEVICE8 iface, DWORD pShader) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2002-12-17 02:15:15 +01:00
|
|
|
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : pShader %#x\n", This, pShader);
|
2006-08-27 22:07:13 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2006-08-27 22:07:13 +02:00
|
|
|
if (pShader <= VS_HIGHESTFIXEDFXF || This->allocated_shader_handles <= pShader - (VS_HIGHESTFIXEDFXF + 1)) {
|
|
|
|
ERR("(%p) : Trying to delete an invalid handle\n", This);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2006-08-27 22:07:13 +02:00
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
} else {
|
2007-02-12 19:21:45 +01:00
|
|
|
IWineD3DPixelShader *cur = NULL;
|
2006-08-27 22:07:13 +02:00
|
|
|
shader_handle *handle = &This->shader_handles[pShader - (VS_HIGHESTFIXEDFXF + 1)];
|
|
|
|
IDirect3DPixelShader8Impl *shader = *handle;
|
2007-02-12 19:21:45 +01:00
|
|
|
|
|
|
|
IWineD3DDevice_GetPixelShader(This->WineD3DDevice, &cur);
|
|
|
|
if(cur) {
|
|
|
|
if(cur == shader->wineD3DPixelShader) IDirect3DDevice8_SetPixelShader(iface, 0);
|
|
|
|
IWineD3DPixelShader_Release(cur);
|
|
|
|
}
|
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
while(IUnknown_Release((IUnknown *)shader));
|
2006-08-27 22:07:13 +02:00
|
|
|
free_shader_handle(This, handle);
|
2004-05-10 21:57:51 +02:00
|
|
|
}
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2003-06-05 00:45:57 +02:00
|
|
|
|
2002-12-17 02:15:15 +01:00
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2002-12-17 02:15:15 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetPixelShaderConstant(LPDIRECT3DDEVICE8 iface, DWORD Register, CONST void* pConstantData, DWORD ConstantCount) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2003-06-05 00:45:57 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_SetPixelShaderConstantF(This->WineD3DDevice, Register, (CONST float *)pConstantData, ConstantCount);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-06-05 00:45:57 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetPixelShaderConstant(LPDIRECT3DDEVICE8 iface, DWORD Register, void* pConstantData, DWORD ConstantCount) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_GetPixelShaderConstantF(This->WineD3DDevice, Register, (float *)pConstantData, ConstantCount);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2002-12-17 02:15:15 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetPixelShaderFunction(LPDIRECT3DDEVICE8 iface, DWORD pPixelShader, void* pData, DWORD* pSizeOfData) {
|
2007-01-06 18:03:49 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
|
|
|
IDirect3DPixelShader8Impl *shader = NULL;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2007-01-06 18:03:49 +01:00
|
|
|
TRACE("(%p) : pPixelShader %#x, pData %p, pSizeOfData %p\n", This, pPixelShader, pData, pSizeOfData);
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2007-01-06 18:03:49 +01:00
|
|
|
if (pPixelShader <= VS_HIGHESTFIXEDFXF || This->allocated_shader_handles <= pPixelShader - (VS_HIGHESTFIXEDFXF + 1)) {
|
|
|
|
ERR("Passed an invalid shader handle.\n");
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2007-01-06 18:03:49 +01:00
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
}
|
|
|
|
|
|
|
|
shader = This->shader_handles[pPixelShader - (VS_HIGHESTFIXEDFXF + 1)];
|
2007-12-31 23:23:21 +01:00
|
|
|
hr = IWineD3DPixelShader_GetFunction(shader->wineD3DPixelShader, pData, pSizeOfData);
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DrawRectPatch(LPDIRECT3DDEVICE8 iface, UINT Handle,CONST float* pNumSegs,CONST D3DRECTPATCH_INFO* pRectPatchInfo) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_DrawRectPatch(This->WineD3DDevice, Handle, pNumSegs, (CONST WINED3DRECTPATCH_INFO *)pRectPatchInfo);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DrawTriPatch(LPDIRECT3DDEVICE8 iface, UINT Handle,CONST float* pNumSegs,CONST D3DTRIPATCH_INFO* pTriPatchInfo) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_DrawTriPatch(This->WineD3DDevice, Handle, pNumSegs, (CONST WINED3DTRIPATCH_INFO *)pTriPatchInfo);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_DeletePatch(LPDIRECT3DDEVICE8 iface, UINT Handle) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_DeletePatch(This->WineD3DDevice, Handle);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_SetStreamSource(LPDIRECT3DDEVICE8 iface, UINT StreamNumber,IDirect3DVertexBuffer8* pStreamData,UINT Stride) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
2007-06-09 14:16:41 +02:00
|
|
|
HRESULT hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
|
|
|
hr = IWineD3DDevice_SetStreamSource(This->WineD3DDevice, StreamNumber,
|
|
|
|
NULL == pStreamData ? NULL : ((IDirect3DVertexBuffer8Impl *)pStreamData)->wineD3DVertexBuffer,
|
|
|
|
0/* Offset in bytes */, Stride);
|
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
|
|
|
return hr;
|
2006-02-25 13:15:08 +01:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DDevice8Impl_GetStreamSource(LPDIRECT3DDEVICE8 iface, UINT StreamNumber,IDirect3DVertexBuffer8** pStream,UINT* pStride) {
|
2006-02-25 13:15:08 +01:00
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
|
|
|
|
IWineD3DVertexBuffer *retStream = NULL;
|
|
|
|
HRESULT rc = D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-25 13:15:08 +01:00
|
|
|
TRACE("(%p) Relay\n" , This);
|
|
|
|
|
|
|
|
if(pStream == NULL){
|
|
|
|
return D3DERR_INVALIDCALL;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2007-06-09 14:16:41 +02:00
|
|
|
EnterCriticalSection(&d3d8_cs);
|
2007-12-04 22:45:06 +01:00
|
|
|
rc = IWineD3DDevice_GetStreamSource(This->WineD3DDevice, StreamNumber, &retStream, 0 /* Offset in bytes */, pStride);
|
2006-02-25 13:15:08 +01:00
|
|
|
if (rc == D3D_OK && NULL != retStream) {
|
|
|
|
IWineD3DVertexBuffer_GetParent(retStream, (IUnknown **)pStream);
|
2006-11-30 13:33:23 +01:00
|
|
|
IWineD3DVertexBuffer_Release(retStream);
|
2006-02-25 13:15:08 +01:00
|
|
|
}else{
|
2006-12-24 10:00:05 +01:00
|
|
|
if (rc != D3D_OK){
|
|
|
|
FIXME("Call to GetStreamSource failed %p\n", pStride);
|
|
|
|
}
|
2006-02-25 13:15:08 +01:00
|
|
|
*pStream = NULL;
|
|
|
|
}
|
2007-06-09 14:16:41 +02:00
|
|
|
LeaveCriticalSection(&d3d8_cs);
|
2006-02-25 13:15:08 +01:00
|
|
|
|
|
|
|
return rc;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-05-27 22:17:35 +02:00
|
|
|
const IDirect3DDevice8Vtbl Direct3DDevice8_Vtbl =
|
2002-09-28 00:46:16 +02:00
|
|
|
{
|
|
|
|
IDirect3DDevice8Impl_QueryInterface,
|
|
|
|
IDirect3DDevice8Impl_AddRef,
|
|
|
|
IDirect3DDevice8Impl_Release,
|
|
|
|
IDirect3DDevice8Impl_TestCooperativeLevel,
|
|
|
|
IDirect3DDevice8Impl_GetAvailableTextureMem,
|
|
|
|
IDirect3DDevice8Impl_ResourceManagerDiscardBytes,
|
|
|
|
IDirect3DDevice8Impl_GetDirect3D,
|
|
|
|
IDirect3DDevice8Impl_GetDeviceCaps,
|
|
|
|
IDirect3DDevice8Impl_GetDisplayMode,
|
|
|
|
IDirect3DDevice8Impl_GetCreationParameters,
|
|
|
|
IDirect3DDevice8Impl_SetCursorProperties,
|
|
|
|
IDirect3DDevice8Impl_SetCursorPosition,
|
|
|
|
IDirect3DDevice8Impl_ShowCursor,
|
|
|
|
IDirect3DDevice8Impl_CreateAdditionalSwapChain,
|
|
|
|
IDirect3DDevice8Impl_Reset,
|
|
|
|
IDirect3DDevice8Impl_Present,
|
|
|
|
IDirect3DDevice8Impl_GetBackBuffer,
|
|
|
|
IDirect3DDevice8Impl_GetRasterStatus,
|
|
|
|
IDirect3DDevice8Impl_SetGammaRamp,
|
|
|
|
IDirect3DDevice8Impl_GetGammaRamp,
|
|
|
|
IDirect3DDevice8Impl_CreateTexture,
|
|
|
|
IDirect3DDevice8Impl_CreateVolumeTexture,
|
|
|
|
IDirect3DDevice8Impl_CreateCubeTexture,
|
|
|
|
IDirect3DDevice8Impl_CreateVertexBuffer,
|
|
|
|
IDirect3DDevice8Impl_CreateIndexBuffer,
|
|
|
|
IDirect3DDevice8Impl_CreateRenderTarget,
|
|
|
|
IDirect3DDevice8Impl_CreateDepthStencilSurface,
|
|
|
|
IDirect3DDevice8Impl_CreateImageSurface,
|
|
|
|
IDirect3DDevice8Impl_CopyRects,
|
|
|
|
IDirect3DDevice8Impl_UpdateTexture,
|
|
|
|
IDirect3DDevice8Impl_GetFrontBuffer,
|
|
|
|
IDirect3DDevice8Impl_SetRenderTarget,
|
|
|
|
IDirect3DDevice8Impl_GetRenderTarget,
|
|
|
|
IDirect3DDevice8Impl_GetDepthStencilSurface,
|
|
|
|
IDirect3DDevice8Impl_BeginScene,
|
|
|
|
IDirect3DDevice8Impl_EndScene,
|
|
|
|
IDirect3DDevice8Impl_Clear,
|
|
|
|
IDirect3DDevice8Impl_SetTransform,
|
|
|
|
IDirect3DDevice8Impl_GetTransform,
|
|
|
|
IDirect3DDevice8Impl_MultiplyTransform,
|
|
|
|
IDirect3DDevice8Impl_SetViewport,
|
|
|
|
IDirect3DDevice8Impl_GetViewport,
|
|
|
|
IDirect3DDevice8Impl_SetMaterial,
|
|
|
|
IDirect3DDevice8Impl_GetMaterial,
|
|
|
|
IDirect3DDevice8Impl_SetLight,
|
|
|
|
IDirect3DDevice8Impl_GetLight,
|
|
|
|
IDirect3DDevice8Impl_LightEnable,
|
|
|
|
IDirect3DDevice8Impl_GetLightEnable,
|
|
|
|
IDirect3DDevice8Impl_SetClipPlane,
|
|
|
|
IDirect3DDevice8Impl_GetClipPlane,
|
|
|
|
IDirect3DDevice8Impl_SetRenderState,
|
|
|
|
IDirect3DDevice8Impl_GetRenderState,
|
|
|
|
IDirect3DDevice8Impl_BeginStateBlock,
|
|
|
|
IDirect3DDevice8Impl_EndStateBlock,
|
|
|
|
IDirect3DDevice8Impl_ApplyStateBlock,
|
|
|
|
IDirect3DDevice8Impl_CaptureStateBlock,
|
|
|
|
IDirect3DDevice8Impl_DeleteStateBlock,
|
|
|
|
IDirect3DDevice8Impl_CreateStateBlock,
|
|
|
|
IDirect3DDevice8Impl_SetClipStatus,
|
|
|
|
IDirect3DDevice8Impl_GetClipStatus,
|
|
|
|
IDirect3DDevice8Impl_GetTexture,
|
|
|
|
IDirect3DDevice8Impl_SetTexture,
|
|
|
|
IDirect3DDevice8Impl_GetTextureStageState,
|
|
|
|
IDirect3DDevice8Impl_SetTextureStageState,
|
|
|
|
IDirect3DDevice8Impl_ValidateDevice,
|
|
|
|
IDirect3DDevice8Impl_GetInfo,
|
|
|
|
IDirect3DDevice8Impl_SetPaletteEntries,
|
|
|
|
IDirect3DDevice8Impl_GetPaletteEntries,
|
|
|
|
IDirect3DDevice8Impl_SetCurrentTexturePalette,
|
|
|
|
IDirect3DDevice8Impl_GetCurrentTexturePalette,
|
|
|
|
IDirect3DDevice8Impl_DrawPrimitive,
|
|
|
|
IDirect3DDevice8Impl_DrawIndexedPrimitive,
|
|
|
|
IDirect3DDevice8Impl_DrawPrimitiveUP,
|
|
|
|
IDirect3DDevice8Impl_DrawIndexedPrimitiveUP,
|
|
|
|
IDirect3DDevice8Impl_ProcessVertices,
|
|
|
|
IDirect3DDevice8Impl_CreateVertexShader,
|
|
|
|
IDirect3DDevice8Impl_SetVertexShader,
|
|
|
|
IDirect3DDevice8Impl_GetVertexShader,
|
|
|
|
IDirect3DDevice8Impl_DeleteVertexShader,
|
|
|
|
IDirect3DDevice8Impl_SetVertexShaderConstant,
|
|
|
|
IDirect3DDevice8Impl_GetVertexShaderConstant,
|
|
|
|
IDirect3DDevice8Impl_GetVertexShaderDeclaration,
|
|
|
|
IDirect3DDevice8Impl_GetVertexShaderFunction,
|
|
|
|
IDirect3DDevice8Impl_SetStreamSource,
|
|
|
|
IDirect3DDevice8Impl_GetStreamSource,
|
|
|
|
IDirect3DDevice8Impl_SetIndices,
|
|
|
|
IDirect3DDevice8Impl_GetIndices,
|
|
|
|
IDirect3DDevice8Impl_CreatePixelShader,
|
|
|
|
IDirect3DDevice8Impl_SetPixelShader,
|
|
|
|
IDirect3DDevice8Impl_GetPixelShader,
|
|
|
|
IDirect3DDevice8Impl_DeletePixelShader,
|
|
|
|
IDirect3DDevice8Impl_SetPixelShaderConstant,
|
|
|
|
IDirect3DDevice8Impl_GetPixelShaderConstant,
|
|
|
|
IDirect3DDevice8Impl_GetPixelShaderFunction,
|
|
|
|
IDirect3DDevice8Impl_DrawRectPatch,
|
|
|
|
IDirect3DDevice8Impl_DrawTriPatch,
|
|
|
|
IDirect3DDevice8Impl_DeletePatch
|
|
|
|
};
|
2003-06-04 23:55:29 +02:00
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
/* Internal function called back during the CreateDevice to create a render target */
|
2006-12-03 21:52:03 +01:00
|
|
|
HRESULT WINAPI D3D8CB_CreateSurface(IUnknown *device, IUnknown *pSuperior, UINT Width, UINT Height,
|
2006-03-28 14:20:47 +02:00
|
|
|
WINED3DFORMAT Format, DWORD Usage, WINED3DPOOL Pool, UINT Level,
|
2007-04-24 10:29:22 +02:00
|
|
|
WINED3DCUBEMAP_FACES Face, IWineD3DSurface **ppSurface,
|
|
|
|
HANDLE *pSharedHandle) {
|
2006-02-20 11:11:35 +01:00
|
|
|
|
|
|
|
HRESULT res = D3D_OK;
|
|
|
|
IDirect3DSurface8Impl *d3dSurface = NULL;
|
|
|
|
BOOL Lockable = TRUE;
|
|
|
|
|
2006-03-28 14:20:47 +02:00
|
|
|
if((WINED3DPOOL_DEFAULT == Pool && WINED3DUSAGE_DYNAMIC != Usage))
|
2006-02-20 11:11:35 +01:00
|
|
|
Lockable = FALSE;
|
|
|
|
|
|
|
|
TRACE("relay\n");
|
|
|
|
res = IDirect3DDevice8Impl_CreateSurface((IDirect3DDevice8 *)device, Width, Height, (D3DFORMAT)Format, Lockable, FALSE/*Discard*/, Level, (IDirect3DSurface8 **)&d3dSurface, D3DRTYPE_SURFACE, Usage, Pool, D3DMULTISAMPLE_NONE, 0 /* MultisampleQuality */);
|
|
|
|
|
2006-07-07 15:31:56 +02:00
|
|
|
if (SUCCEEDED(res)) {
|
2006-02-20 11:11:35 +01:00
|
|
|
*ppSurface = d3dSurface->wineD3DSurface;
|
2006-12-18 00:17:38 +01:00
|
|
|
d3dSurface->container = pSuperior;
|
2006-07-07 15:31:56 +02:00
|
|
|
IUnknown_Release(d3dSurface->parentDevice);
|
|
|
|
d3dSurface->parentDevice = NULL;
|
2006-12-05 00:29:37 +01:00
|
|
|
d3dSurface->forwardReference = pSuperior;
|
2006-02-20 11:11:35 +01:00
|
|
|
} else {
|
|
|
|
FIXME("(%p) IDirect3DDevice8_CreateSurface failed\n", device);
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
2006-12-05 00:29:37 +01:00
|
|
|
|
|
|
|
ULONG WINAPI D3D8CB_DestroySurface(IWineD3DSurface *pSurface) {
|
|
|
|
IDirect3DSurface8Impl* surfaceParent;
|
|
|
|
TRACE("(%p) call back\n", pSurface);
|
|
|
|
|
|
|
|
IWineD3DSurface_GetParent(pSurface, (IUnknown **) &surfaceParent);
|
|
|
|
/* GetParent's AddRef was forwarded to an object in destruction.
|
|
|
|
* Releasing it here again would cause an endless recursion. */
|
|
|
|
surfaceParent->forwardReference = NULL;
|
|
|
|
return IDirect3DSurface8_Release((IDirect3DSurface8*) surfaceParent);
|
|
|
|
}
|