2003-07-01 03:09:17 +02:00
/*
* IDirect3DDevice9 implementation
*
2005-01-28 15:03:32 +01:00
* Copyright 2002 - 2005 Jason Edmeades
2005-03-02 13:16:10 +01:00
* Copyright 2002 - 2005 Raphael Junqueira
* Copyright 2005 Oliver Stieber
2003-07-01 03:09:17 +02:00
*
* This library is free software ; you can redistribute it and / or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation ; either
* version 2.1 of the License , or ( at your option ) any later version .
*
* This library is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* Lesser General Public License for more details .
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library ; if not , write to the Free Software
2006-05-18 14:49:52 +02:00
* Foundation , Inc . , 51 Franklin St , Fifth Floor , Boston , MA 02110 - 1301 , USA
2003-07-01 03:09:17 +02:00
*/
# include "config.h"
# include "d3d9_private.h"
2005-03-02 13:16:10 +01:00
WINE_DEFAULT_DEBUG_CHANNEL ( d3d9 ) ;
2003-07-01 03:09:17 +02:00
/* IDirect3D IUnknown parts follow: */
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_QueryInterface ( LPDIRECT3DDEVICE9 iface , REFIID riid , LPVOID * ppobj ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2003-07-01 03:09:17 +02:00
if ( IsEqualGUID ( riid , & IID_IUnknown )
| | IsEqualGUID ( riid , & IID_IDirect3DDevice9 ) ) {
2005-08-23 11:34:57 +02:00
IUnknown_AddRef ( iface ) ;
2003-07-01 03:09:17 +02:00
* ppobj = This ;
2006-06-07 15:13:29 +02:00
return S_OK ;
2003-07-01 03:09:17 +02:00
}
WARN ( " (%p)->(%s,%p),not found \n " , This , debugstr_guid ( riid ) , ppobj ) ;
2006-06-07 15:13:29 +02:00
* ppobj = NULL ;
2003-07-01 03:09:17 +02:00
return E_NOINTERFACE ;
}
2006-06-10 11:51:05 +02:00
static ULONG WINAPI IDirect3DDevice9Impl_AddRef ( LPDIRECT3DDEVICE9 iface ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-01-24 12:31:45 +01:00
ULONG ref = InterlockedIncrement ( & This - > ref ) ;
2006-10-10 19:23:22 +02:00
TRACE ( " (%p) : AddRef from %d \n " , This , ref - 1 ) ;
2005-01-24 12:31:45 +01:00
return ref ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static ULONG WINAPI IDirect3DDevice9Impl_Release ( LPDIRECT3DDEVICE9 iface ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2006-12-18 00:17:16 +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:22 +02:00
TRACE ( " (%p) : ReleaseRef to %d \n " , This , ref ) ;
2005-01-24 12:31:45 +01:00
2003-07-01 03:09:17 +02:00
if ( ref = = 0 ) {
2006-12-18 00:17:16 +01:00
This - > inDestruction = TRUE ;
2006-12-18 00:17:24 +01:00
IWineD3DDevice_Uninit3D ( This - > WineD3DDevice , D3D9CB_DestroyDepthStencilSurface , D3D9CB_DestroySwapChain ) ;
2004-10-08 22:52:33 +02:00
IWineD3DDevice_Release ( This - > WineD3DDevice ) ;
2003-07-01 03:09:17 +02:00
HeapFree ( GetProcessHeap ( ) , 0 , This ) ;
}
return ref ;
}
/* IDirect3DDevice Interface follow: */
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_TestCooperativeLevel ( LPDIRECT3DDEVICE9 iface ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) : Relay \n " , This ) ;
return IWineD3DDevice_TestCooperativeLevel ( This - > WineD3DDevice ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static UINT WINAPI IDirect3DDevice9Impl_GetAvailableTextureMem ( LPDIRECT3DDEVICE9 iface ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_GetAvailableTextureMem ( This - > WineD3DDevice ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_EvictManagedResources ( LPDIRECT3DDEVICE9 iface ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
2005-07-01 21:15:42 +02:00
TRACE ( " (%p) : Relay \n " , This ) ;
2005-03-02 13:16:10 +01:00
return IWineD3DDevice_EvictManagedResources ( This - > WineD3DDevice ) ;
2003-07-01 03:09:17 +02:00
}
HRESULT WINAPI IDirect3DDevice9Impl_GetDirect3D ( LPDIRECT3DDEVICE9 iface , IDirect3D9 * * ppD3D9 ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-06-21 22:04:07 +02:00
HRESULT hr = D3D_OK ;
IWineD3D * pWineD3D ;
TRACE ( " (%p) Relay \n " , This ) ;
if ( NULL = = ppD3D9 ) {
return D3DERR_INVALIDCALL ;
}
hr = IWineD3DDevice_GetDirect3D ( This - > WineD3DDevice , & pWineD3D ) ;
if ( hr = = D3D_OK & & pWineD3D ! = NULL )
{
2006-12-01 00:16:10 +01:00
IWineD3D_GetParent ( pWineD3D , ( IUnknown * * ) ppD3D9 ) ;
IWineD3D_Release ( pWineD3D ) ;
2005-06-21 22:04:07 +02:00
} else {
FIXME ( " Call to IWineD3DDevice_GetDirect3D failed \n " ) ;
* ppD3D9 = NULL ;
}
2005-11-10 12:17:38 +01:00
TRACE ( " (%p) returning %p \n " , This , * ppD3D9 ) ;
2005-06-21 22:04:07 +02:00
return hr ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetDeviceCaps ( LPDIRECT3DDEVICE9 iface , D3DCAPS9 * pCaps ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-06-17 11:59:03 +02:00
HRESULT hrc = D3D_OK ;
WINED3DCAPS * pWineCaps ;
2005-11-10 13:14:56 +01:00
TRACE ( " (%p) : Relay pCaps %p \n " , This , pCaps ) ;
2005-06-17 11:59:03 +02:00
if ( NULL = = pCaps ) {
return D3DERR_INVALIDCALL ;
}
pWineCaps = HeapAlloc ( GetProcessHeap ( ) , HEAP_ZERO_MEMORY , sizeof ( WINED3DCAPS ) ) ;
if ( pWineCaps = = NULL ) {
return D3DERR_INVALIDCALL ; /* well this is what MSDN says to return */
}
D3D9CAPSTOWINECAPS ( pCaps , pWineCaps )
hrc = IWineD3DDevice_GetDeviceCaps ( This - > WineD3DDevice , pWineCaps ) ;
HeapFree ( GetProcessHeap ( ) , 0 , pWineCaps ) ;
TRACE ( " Returning %p %p \n " , This , pCaps ) ;
return hrc ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetDisplayMode ( LPDIRECT3DDEVICE9 iface , UINT iSwapChain , D3DDISPLAYMODE * pMode ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-04-01 21:33:46 +02:00
return IWineD3DDevice_GetDisplayMode ( This - > WineD3DDevice , iSwapChain , ( WINED3DDISPLAYMODE * ) pMode ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetCreationParameters ( LPDIRECT3DDEVICE9 iface , D3DDEVICE_CREATION_PARAMETERS * pParameters ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-07-01 21:15:42 +02:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-04-03 14:54:16 +02:00
return IWineD3DDevice_GetCreationParameters ( This - > WineD3DDevice , ( WINED3DDEVICE_CREATION_PARAMETERS * ) pParameters ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetCursorProperties ( LPDIRECT3DDEVICE9 iface , UINT XHotSpot , UINT YHotSpot , IDirect3DSurface9 * pCursorBitmap ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
IDirect3DSurface9Impl * pSurface = ( IDirect3DSurface9Impl * ) pCursorBitmap ;
TRACE ( " (%p) Relay \n " , This ) ;
2006-08-09 22:23:31 +02:00
if ( ! pCursorBitmap ) {
WARN ( " No cursor bitmap, returning WINED3DERR_INVALIDCALL \n " ) ;
return WINED3DERR_INVALIDCALL ;
}
2005-03-02 13:16:10 +01:00
return IWineD3DDevice_SetCursorProperties ( This - > WineD3DDevice , XHotSpot , YHotSpot , ( IWineD3DSurface * ) pSurface - > wineD3DSurface ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static void WINAPI IDirect3DDevice9Impl_SetCursorPosition ( LPDIRECT3DDEVICE9 iface , int XScreenSpace , int YScreenSpace , DWORD Flags ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_SetCursorPosition ( This - > WineD3DDevice , XScreenSpace , YScreenSpace , Flags ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static BOOL WINAPI IDirect3DDevice9Impl_ShowCursor ( LPDIRECT3DDEVICE9 iface , BOOL bShow ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2003-07-01 03:09:17 +02:00
2005-03-02 13:16:10 +01:00
return IWineD3DDevice_ShowCursor ( This - > WineD3DDevice , bShow ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_Reset ( LPDIRECT3DDEVICE9 iface , D3DPRESENT_PARAMETERS * pPresentationParameters ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
WINED3DPRESENT_PARAMETERS localParameters ;
TRACE ( " (%p) Relay pPresentationParameters(%p) \n " , This , pPresentationParameters ) ;
localParameters . BackBufferWidth = & pPresentationParameters - > BackBufferWidth ;
localParameters . BackBufferHeight = & pPresentationParameters - > BackBufferHeight ;
2005-08-23 11:34:57 +02:00
localParameters . BackBufferFormat = ( WINED3DFORMAT * ) & pPresentationParameters - > BackBufferFormat ;
2005-03-02 13:16:10 +01:00
localParameters . BackBufferCount = & pPresentationParameters - > BackBufferCount ;
2006-03-24 17:34:26 +01:00
localParameters . MultiSampleType = ( WINED3DMULTISAMPLE_TYPE * ) & pPresentationParameters - > MultiSampleType ;
2005-03-02 13:16:10 +01:00
localParameters . MultiSampleQuality = & pPresentationParameters - > MultiSampleQuality ;
2006-03-28 12:47:36 +02:00
localParameters . SwapEffect = ( WINED3DSWAPEFFECT * ) & pPresentationParameters - > SwapEffect ;
2005-03-02 13:16:10 +01:00
localParameters . hDeviceWindow = & pPresentationParameters - > hDeviceWindow ;
localParameters . Windowed = & pPresentationParameters - > Windowed ;
localParameters . EnableAutoDepthStencil = & pPresentationParameters - > EnableAutoDepthStencil ;
2005-08-23 11:34:57 +02:00
localParameters . AutoDepthStencilFormat = ( WINED3DFORMAT * ) & pPresentationParameters - > AutoDepthStencilFormat ;
2005-03-02 13:16:10 +01:00
localParameters . Flags = & pPresentationParameters - > Flags ;
localParameters . FullScreen_RefreshRateInHz = & pPresentationParameters - > FullScreen_RefreshRateInHz ;
localParameters . PresentationInterval = & pPresentationParameters - > PresentationInterval ;
return IWineD3DDevice_Reset ( This - > WineD3DDevice , & localParameters ) ;
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_Present ( LPDIRECT3DDEVICE9 iface , CONST RECT * pSourceRect , CONST RECT * pDestRect , HWND hDestWindowOverride , CONST RGNDATA *
2005-03-02 13:16:10 +01:00
pDirtyRegion ) {
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
TRACE ( " (%p) Relay \n " , This ) ;
2004-12-14 12:54:27 +01:00
return IWineD3DDevice_Present ( This - > WineD3DDevice , pSourceRect , pDestRect , hDestWindowOverride , pDirtyRegion ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetBackBuffer ( LPDIRECT3DDEVICE9 iface , UINT iSwapChain , UINT BackBuffer , D3DBACKBUFFER_TYPE Type , IDirect3DSurface9 * * ppBackBuffer ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-01-18 12:42:29 +01:00
IWineD3DSurface * retSurface = NULL ;
HRESULT rc = D3D_OK ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-04-01 22:06:57 +02:00
rc = IWineD3DDevice_GetBackBuffer ( This - > WineD3DDevice , iSwapChain , BackBuffer , ( WINED3DBACKBUFFER_TYPE ) Type , ( IWineD3DSurface * * ) & retSurface ) ;
2005-03-02 13:16:10 +01:00
if ( rc = = D3D_OK & & NULL ! = retSurface & & NULL ! = ppBackBuffer ) {
2005-01-18 12:42:29 +01:00
IWineD3DSurface_GetParent ( retSurface , ( IUnknown * * ) ppBackBuffer ) ;
2006-11-30 13:33:52 +01:00
IWineD3DSurface_Release ( retSurface ) ;
2003-07-01 03:09:17 +02:00
}
2005-01-18 12:42:29 +01:00
return rc ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetRasterStatus ( LPDIRECT3DDEVICE9 iface , UINT iSwapChain , D3DRASTER_STATUS * pRasterStatus ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-04-04 00:27:28 +02:00
return IWineD3DDevice_GetRasterStatus ( This - > WineD3DDevice , iSwapChain , ( WINED3DRASTER_STATUS * ) pRasterStatus ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetDialogBoxMode ( LPDIRECT3DDEVICE9 iface , BOOL bEnableDialogs ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_SetDialogBoxMode ( This - > WineD3DDevice , bEnableDialogs ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static void WINAPI IDirect3DDevice9Impl_SetGammaRamp ( LPDIRECT3DDEVICE9 iface , UINT iSwapChain , DWORD Flags , CONST D3DGAMMARAMP * pRamp ) {
2005-03-02 13:16:10 +01:00
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-10-11 03:58:01 +02:00
/* Note: D3DGAMMARAMP is compatible with WINED3DGAMMARAMP */
2006-10-27 20:27:24 +02:00
return IWineD3DDevice_SetGammaRamp ( This - > WineD3DDevice , iSwapChain , Flags , ( CONST WINED3DGAMMARAMP * ) pRamp ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static void WINAPI IDirect3DDevice9Impl_GetGammaRamp ( LPDIRECT3DDEVICE9 iface , UINT iSwapChain , D3DGAMMARAMP * pRamp ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-10-11 03:58:01 +02:00
/* Note: D3DGAMMARAMP is compatible with WINED3DGAMMARAMP */
2006-04-04 13:44:17 +02:00
return IWineD3DDevice_GetGammaRamp ( This - > WineD3DDevice , iSwapChain , ( WINED3DGAMMARAMP * ) pRamp ) ;
2003-07-01 03:09:17 +02:00
}
2005-03-02 13:16:10 +01:00
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_CreateSurface ( LPDIRECT3DDEVICE9 iface , UINT Width , UINT Height , D3DFORMAT Format , BOOL Lockable , BOOL Discard , UINT Level , IDirect3DSurface9 * * ppSurface , D3DRESOURCETYPE Type , UINT Usage , D3DPOOL Pool , D3DMULTISAMPLE_TYPE MultiSample , DWORD MultisampleQuality , HANDLE * pSharedHandle ) {
2005-03-02 13:16:10 +01:00
HRESULT hrc ;
2005-01-09 18:37:02 +01:00
IDirect3DSurface9Impl * object ;
2005-03-02 13:16:10 +01:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
TRACE ( " (%p) Relay \n " , This ) ;
if ( MultisampleQuality < 0 ) {
2006-10-10 19:23:22 +02:00
FIXME ( " MultisampleQuality out of range %d, substituting 0 \n " , MultisampleQuality ) ;
2005-03-02 13:16:10 +01:00
/*FIXME: Find out what windows does with a MultisampleQuality < 0 */
MultisampleQuality = 0 ;
}
if ( MultisampleQuality > 0 ) {
2006-10-10 19:23:22 +02:00
FIXME ( " MultisampleQuality set to %d, bstituting 0 \n " , MultisampleQuality ) ;
2005-03-02 13:16:10 +01:00
/*
MultisampleQuality
[ in ] Quality level . The valid range is between zero and one less than the level returned by pQualityLevels used by IDirect3D9 : : 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 ;
}
/*FIXME: Check MAX bounds of MultisampleQuality*/
2005-01-09 18:37:02 +01:00
/* Allocate the storage for the device */
object = HeapAlloc ( GetProcessHeap ( ) , HEAP_ZERO_MEMORY , sizeof ( IDirect3DSurface9Impl ) ) ;
2005-01-18 12:42:29 +01:00
if ( NULL = = object ) {
FIXME ( " Allocation of memory failed \n " ) ;
return D3DERR_OUTOFVIDEOMEMORY ;
}
2005-01-09 18:37:02 +01:00
object - > lpVtbl = & Direct3DSurface9_Vtbl ;
object - > ref = 1 ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) : w(%d) h(%d) fmt(%d) surf@%p \n " , This , Width , Height , Format , * ppSurface ) ;
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 , pSharedHandle , SURFACE_OPENGL , ( IUnknown * ) object ) ;
2005-03-02 13:16:10 +01:00
2005-07-01 21:15:42 +02:00
if ( hrc ! = D3D_OK | | NULL = = object - > wineD3DSurface ) {
2005-11-14 12:21:46 +01:00
2005-03-02 13:16:10 +01:00
/* free up object */
2005-07-01 21:15:42 +02:00
FIXME ( " (%p) call to IWineD3DDevice_CreateSurface failed \n " , This ) ;
2005-01-18 12:42:29 +01:00
HeapFree ( GetProcessHeap ( ) , 0 , object ) ;
} else {
2006-05-29 23:01:04 +02:00
IUnknown_AddRef ( iface ) ;
object - > parentDevice = iface ;
2005-11-14 12:21:46 +01:00
TRACE ( " (%p) : Created surface %p \n " , This , object ) ;
2005-01-18 12:42:29 +01:00
* ppSurface = ( LPDIRECT3DSURFACE9 ) object ;
2005-11-14 12:21:46 +01:00
}
2005-01-18 12:42:29 +01:00
return hrc ;
2003-07-01 03:09:17 +02:00
}
2005-03-02 13:16:10 +01:00
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_CreateRenderTarget ( LPDIRECT3DDEVICE9 iface , UINT Width , UINT Height ,
2005-03-02 13:16:10 +01:00
D3DFORMAT Format , D3DMULTISAMPLE_TYPE MultiSample ,
DWORD MultisampleQuality , BOOL Lockable ,
IDirect3DSurface9 * * ppSurface , HANDLE * pSharedHandle ) {
TRACE ( " Relay \n " ) ;
/* Is this correct? */
return IDirect3DDevice9Impl_CreateSurface ( iface , Width , Height , Format , Lockable , FALSE /*Discard*/ , 0 /*Level*/ , ppSurface , D3DRTYPE_SURFACE , D3DUSAGE_RENDERTARGET , D3DPOOL_DEFAULT , MultiSample , MultisampleQuality , pSharedHandle ) ;
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_CreateDepthStencilSurface ( LPDIRECT3DDEVICE9 iface , UINT Width , UINT Height ,
2005-03-02 13:16:10 +01:00
D3DFORMAT Format , D3DMULTISAMPLE_TYPE MultiSample ,
DWORD MultisampleQuality , BOOL Discard ,
IDirect3DSurface9 * * ppSurface , HANDLE * pSharedHandle ) {
TRACE ( " Relay \n " ) ;
return IDirect3DDevice9Impl_CreateSurface ( iface , Width , Height , Format , TRUE /* Lockable */ , Discard , 0 /* Level */
, ppSurface , D3DRTYPE_SURFACE , D3DUSAGE_DEPTHSTENCIL ,
D3DPOOL_DEFAULT , MultiSample , MultisampleQuality , pSharedHandle ) ;
2003-07-01 03:09:17 +02:00
}
2005-03-02 13:16:10 +01:00
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_UpdateSurface ( LPDIRECT3DDEVICE9 iface , IDirect3DSurface9 * pSourceSurface , CONST RECT * pSourceRect , IDirect3DSurface9 * pDestinationSurface , CONST POINT * pDestPoint ) {
2005-03-02 13:16:10 +01:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_UpdateSurface ( This - > WineD3DDevice , ( ( IDirect3DSurface9Impl * ) pSourceSurface ) - > wineD3DSurface , pSourceRect , ( ( IDirect3DSurface9Impl * ) pDestinationSurface ) - > wineD3DSurface , pDestPoint ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_UpdateTexture ( LPDIRECT3DDEVICE9 iface , IDirect3DBaseTexture9 * pSourceTexture , IDirect3DBaseTexture9 * pDestinationTexture ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_UpdateTexture ( This - > WineD3DDevice , ( ( IDirect3DBaseTexture9Impl * ) pSourceTexture ) - > wineD3DBaseTexture , ( ( IDirect3DBaseTexture9Impl * ) pDestinationTexture ) - > wineD3DBaseTexture ) ;
2003-07-01 03:09:17 +02:00
}
2005-03-02 13:16:10 +01:00
/* This isn't in MSDN!
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetFrontBuffer ( LPDIRECT3DDEVICE9 iface , IDirect3DSurface9 * pDestSurface ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2003-07-01 03:09:17 +02:00
FIXME ( " (%p) : stub \n " , This ) ;
return D3D_OK ;
}
2005-03-02 13:16:10 +01:00
*/
2003-07-01 03:09:17 +02:00
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetRenderTargetData ( LPDIRECT3DDEVICE9 iface , IDirect3DSurface9 * pRenderTarget , IDirect3DSurface9 * pDestSurface ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
IDirect3DSurface9Impl * renderTarget = ( IDirect3DSurface9Impl * ) pRenderTarget ;
IDirect3DSurface9Impl * destSurface = ( IDirect3DSurface9Impl * ) pDestSurface ;
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_GetRenderTargetData ( This - > WineD3DDevice , renderTarget - > wineD3DSurface , destSurface - > wineD3DSurface ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetFrontBufferData ( LPDIRECT3DDEVICE9 iface , UINT iSwapChain , IDirect3DSurface9 * pDestSurface ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
IDirect3DSurface9Impl * destSurface = ( IDirect3DSurface9Impl * ) pDestSurface ;
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_GetFrontBufferData ( This - > WineD3DDevice , iSwapChain , destSurface - > wineD3DSurface ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_StretchRect ( LPDIRECT3DDEVICE9 iface , IDirect3DSurface9 * pSourceSurface , CONST RECT * pSourceRect , IDirect3DSurface9 * pDestSurface , CONST RECT * pDestRect , D3DTEXTUREFILTERTYPE Filter ) {
2005-03-02 13:16:10 +01:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
TRACE ( " (%p) Relay \n " , This ) ;
2006-04-06 19:02:16 +02:00
return IWineD3DDevice_StretchRect ( This - > WineD3DDevice , ( ( IDirect3DSurface9Impl * ) pSourceSurface ) - > wineD3DSurface , pSourceRect , ( ( IDirect3DSurface9Impl * ) pDestSurface ) - > wineD3DSurface , pDestRect , ( WINED3DTEXTUREFILTERTYPE ) Filter ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_ColorFill ( LPDIRECT3DDEVICE9 iface , IDirect3DSurface9 * pSurface , CONST RECT * pRect , D3DCOLOR color ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
IDirect3DSurface9Impl * surface = ( IDirect3DSurface9Impl * ) pSurface ;
TRACE ( " (%p) Relay \n " , This ) ;
2006-10-12 08:22:18 +02:00
/* Note: D3DRECT is compatible with WINED3DRECT */
return IWineD3DDevice_ColorFill ( This - > WineD3DDevice , surface - > wineD3DSurface , ( CONST WINED3DRECT * ) pRect , color ) ;
2005-03-02 13:16:10 +01:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_CreateOffscreenPlainSurface ( LPDIRECT3DDEVICE9 iface , UINT Width , UINT Height , D3DFORMAT Format , D3DPOOL Pool , IDirect3DSurface9 * * ppSurface , HANDLE * pSharedHandle ) {
2005-03-02 13:16:10 +01:00
TRACE ( " Relay \n " ) ;
if ( Pool = = D3DPOOL_MANAGED ) {
FIXME ( " Attempting to create a managed offscreen plain surface \n " ) ;
return D3DERR_INVALIDCALL ;
}
/*MSDN: D3DPOOL_SCRATCH will return a surface that has identical characteristics to a surface created by the Microsoft DirectX 8.x method CreateImageSurface.
' Off - screen plain surfaces are always lockable , regardless of their pool types . '
but then . . .
D3DPOOL_DEFAULT is the appropriate pool for use with the IDirect3DDevice9 : : StretchRect and IDirect3DDevice9 : : ColorFill .
Why , their always lockable ?
should I change the usage to dynamic ?
*/
2006-03-28 14:20:47 +02:00
return IDirect3DDevice9Impl_CreateSurface ( iface , Width , Height , Format , TRUE /*Loackable*/ , FALSE /*Discard*/ , 0 /*Level*/ , ppSurface , D3DRTYPE_SURFACE , 0 /*Usage (undefined/none) */ , ( WINED3DPOOL ) Pool , D3DMULTISAMPLE_NONE , 0 /*MultisampleQuality*/ , pSharedHandle ) ;
2005-03-02 13:16:10 +01:00
}
/* TODO: move to wineD3D */
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetRenderTarget ( LPDIRECT3DDEVICE9 iface , DWORD RenderTargetIndex , IDirect3DSurface9 * pRenderTarget ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-07-07 22:35:05 +02:00
IDirect3DSurface9Impl * pSurface = ( IDirect3DSurface9Impl * ) pRenderTarget ;
TRACE ( " (%p) Relay \n " , This ) ;
2006-08-05 23:41:29 +02:00
return IWineD3DDevice_SetRenderTarget ( This - > WineD3DDevice , RenderTargetIndex , pSurface ? ( IWineD3DSurface * ) pSurface - > wineD3DSurface : NULL ) ;
2005-07-07 22:35:05 +02:00
}
2005-01-28 15:03:32 +01:00
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetRenderTarget ( LPDIRECT3DDEVICE9 iface , DWORD RenderTargetIndex , IDirect3DSurface9 * * ppRenderTarget ) {
2005-07-07 22:35:05 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
HRESULT hr = D3D_OK ;
IWineD3DSurface * pRenderTarget ;
TRACE ( " (%p) Relay \n " , This ) ;
if ( ppRenderTarget = = NULL ) {
return D3DERR_INVALIDCALL ;
2005-01-28 15:03:32 +01:00
}
2005-07-07 22:35:05 +02:00
hr = IWineD3DDevice_GetRenderTarget ( This - > WineD3DDevice , RenderTargetIndex , & pRenderTarget ) ;
2005-01-28 15:03:32 +01:00
2005-07-07 22:35:05 +02:00
if ( hr = = D3D_OK & & pRenderTarget ! = NULL ) {
2006-12-01 00:16:10 +01:00
IWineD3DSurface_GetParent ( pRenderTarget , ( IUnknown * * ) ppRenderTarget ) ;
IWineD3DSurface_Release ( pRenderTarget ) ;
2005-07-07 22:35:05 +02:00
} else {
FIXME ( " Call to IWineD3DDevice_GetRenderTarget failed \n " ) ;
* ppRenderTarget = NULL ;
}
return hr ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetDepthStencilSurface ( LPDIRECT3DDEVICE9 iface , IDirect3DSurface9 * pZStencilSurface ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-07-07 22:35:05 +02:00
IDirect3DSurface9Impl * pSurface ;
TRACE ( " (%p) Relay \n " , This ) ;
pSurface = ( IDirect3DSurface9Impl * ) pZStencilSurface ;
return IWineD3DDevice_SetDepthStencilSurface ( This - > WineD3DDevice , NULL = = pSurface ? NULL : ( IWineD3DSurface * ) pSurface - > wineD3DSurface ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetDepthStencilSurface ( LPDIRECT3DDEVICE9 iface , IDirect3DSurface9 * * ppZStencilSurface ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-07-07 22:35:05 +02:00
HRESULT hr = D3D_OK ;
IWineD3DSurface * pZStencilSurface ;
TRACE ( " (%p) Relay \n " , This ) ;
if ( ppZStencilSurface = = NULL ) {
return D3DERR_INVALIDCALL ;
2005-01-28 15:03:32 +01:00
}
2003-07-01 03:09:17 +02:00
2005-07-07 22:35:05 +02:00
hr = IWineD3DDevice_GetDepthStencilSurface ( This - > WineD3DDevice , & pZStencilSurface ) ;
if ( hr = = D3D_OK & & pZStencilSurface ! = NULL ) {
2006-12-01 00:16:10 +01:00
IWineD3DSurface_GetParent ( pZStencilSurface , ( IUnknown * * ) ppZStencilSurface ) ;
IWineD3DSurface_Release ( pZStencilSurface ) ;
2005-07-07 22:35:05 +02:00
} else {
FIXME ( " Call to IWineD3DDevice_GetRenderTarget failed \n " ) ;
* ppZStencilSurface = NULL ;
}
2003-07-01 03:09:17 +02:00
return D3D_OK ;
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_BeginScene ( LPDIRECT3DDEVICE9 iface ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2004-11-28 16:04:41 +01:00
return IWineD3DDevice_BeginScene ( This - > WineD3DDevice ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_EndScene ( LPDIRECT3DDEVICE9 iface ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2004-12-14 12:54:27 +01:00
return IWineD3DDevice_EndScene ( This - > WineD3DDevice ) ;
2005-03-02 13:16:10 +01:00
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_Clear ( LPDIRECT3DDEVICE9 iface , DWORD Count , CONST D3DRECT * pRects , DWORD Flags , D3DCOLOR Color , float Z , DWORD Stencil ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-10-12 08:22:18 +02:00
/* Note: D3DRECT is compatible with WINED3DRECT */
return IWineD3DDevice_Clear ( This - > WineD3DDevice , Count , ( CONST WINED3DRECT * ) pRects , Flags , Color , Z , Stencil ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetTransform ( LPDIRECT3DDEVICE9 iface , D3DTRANSFORMSTATETYPE State , CONST D3DMATRIX * lpMatrix ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-10-12 08:21:39 +02:00
/* Note: D3DMATRIX is compatible with WINED3DMATRIX */
return IWineD3DDevice_SetTransform ( This - > WineD3DDevice , State , ( CONST WINED3DMATRIX * ) lpMatrix ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetTransform ( LPDIRECT3DDEVICE9 iface , D3DTRANSFORMSTATETYPE State , D3DMATRIX * pMatrix ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-10-12 08:21:39 +02:00
/* Note: D3DMATRIX is compatible with WINED3DMATRIX */
return IWineD3DDevice_GetTransform ( This - > WineD3DDevice , State , ( WINED3DMATRIX * ) pMatrix ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_MultiplyTransform ( LPDIRECT3DDEVICE9 iface , D3DTRANSFORMSTATETYPE State , CONST D3DMATRIX * pMatrix ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-10-12 08:21:39 +02:00
/* Note: D3DMATRIX is compatible with WINED3DMATRIX */
return IWineD3DDevice_MultiplyTransform ( This - > WineD3DDevice , State , ( CONST WINED3DMATRIX * ) pMatrix ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetViewport ( LPDIRECT3DDEVICE9 iface , CONST D3DVIEWPORT9 * pViewport ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-10-11 03:57:25 +02:00
/* Note: D3DVIEWPORT9 is compatible with WINED3DVIEWPORT */
2005-06-27 11:53:46 +02:00
return IWineD3DDevice_SetViewport ( This - > WineD3DDevice , ( const WINED3DVIEWPORT * ) pViewport ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetViewport ( LPDIRECT3DDEVICE9 iface , D3DVIEWPORT9 * pViewport ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-10-11 03:57:25 +02:00
/* Note: D3DVIEWPORT9 is compatible with WINED3DVIEWPORT */
2004-12-09 12:42:34 +01:00
return IWineD3DDevice_GetViewport ( This - > WineD3DDevice , ( WINED3DVIEWPORT * ) pViewport ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetMaterial ( LPDIRECT3DDEVICE9 iface , CONST D3DMATERIAL9 * pMaterial ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-10-11 03:56:41 +02:00
/* Note: D3DMATERIAL9 is compatible with WINED3DMATERIAL */
2005-06-27 11:53:46 +02:00
return IWineD3DDevice_SetMaterial ( This - > WineD3DDevice , ( const WINED3DMATERIAL * ) pMaterial ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetMaterial ( LPDIRECT3DDEVICE9 iface , D3DMATERIAL9 * pMaterial ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-10-11 03:56:41 +02:00
/* Note: D3DMATERIAL9 is compatible with WINED3DMATERIAL */
2004-11-29 18:53:42 +01:00
return IWineD3DDevice_GetMaterial ( This - > WineD3DDevice , ( WINED3DMATERIAL * ) pMaterial ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetLight ( LPDIRECT3DDEVICE9 iface , DWORD Index , CONST D3DLIGHT9 * pLight ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-10-11 03:55:47 +02:00
/* Note: D3DLIGHT9 is compatible with WINED3DLIGHT */
2005-06-27 11:53:46 +02:00
return IWineD3DDevice_SetLight ( This - > WineD3DDevice , Index , ( const WINED3DLIGHT * ) pLight ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetLight ( LPDIRECT3DDEVICE9 iface , DWORD Index , D3DLIGHT9 * pLight ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-10-11 03:55:47 +02:00
/* Note: D3DLIGHT9 is compatible with WINED3DLIGHT */
2004-11-29 18:53:42 +01:00
return IWineD3DDevice_GetLight ( This - > WineD3DDevice , Index , ( WINED3DLIGHT * ) pLight ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_LightEnable ( LPDIRECT3DDEVICE9 iface , DWORD Index , BOOL Enable ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2004-11-29 18:53:42 +01:00
return IWineD3DDevice_SetLightEnable ( This - > WineD3DDevice , Index , Enable ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetLightEnable ( LPDIRECT3DDEVICE9 iface , DWORD Index , BOOL * pEnable ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2004-11-29 18:53:42 +01:00
return IWineD3DDevice_GetLightEnable ( This - > WineD3DDevice , Index , pEnable ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetClipPlane ( LPDIRECT3DDEVICE9 iface , DWORD Index , CONST float * pPlane ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2004-11-29 18:53:42 +01:00
return IWineD3DDevice_SetClipPlane ( This - > WineD3DDevice , Index , pPlane ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetClipPlane ( LPDIRECT3DDEVICE9 iface , DWORD Index , float * pPlane ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2004-11-29 18:53:42 +01:00
return IWineD3DDevice_GetClipPlane ( This - > WineD3DDevice , Index , pPlane ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetRenderState ( LPDIRECT3DDEVICE9 iface , D3DRENDERSTATETYPE State , DWORD Value ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2004-12-13 14:35:38 +01:00
return IWineD3DDevice_SetRenderState ( This - > WineD3DDevice , State , Value ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetRenderState ( LPDIRECT3DDEVICE9 iface , D3DRENDERSTATETYPE State , DWORD * pValue ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2004-12-13 14:35:38 +01:00
return IWineD3DDevice_GetRenderState ( This - > WineD3DDevice , State , pValue ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetClipStatus ( LPDIRECT3DDEVICE9 iface , CONST D3DCLIPSTATUS9 * pClipStatus ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2005-06-27 11:53:46 +02:00
return IWineD3DDevice_SetClipStatus ( This - > WineD3DDevice , ( const WINED3DCLIPSTATUS * ) pClipStatus ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetClipStatus ( LPDIRECT3DDEVICE9 iface , D3DCLIPSTATUS9 * pClipStatus ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2004-11-29 18:53:42 +01:00
return IWineD3DDevice_GetClipStatus ( This - > WineD3DDevice , ( WINED3DCLIPSTATUS * ) pClipStatus ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetTexture ( LPDIRECT3DDEVICE9 iface , DWORD Stage , IDirect3DBaseTexture9 * * ppTexture ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-01-18 12:42:29 +01:00
IWineD3DBaseTexture * retTexture = NULL ;
HRESULT rc = D3D_OK ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
if ( ppTexture = = NULL ) {
return D3DERR_INVALIDCALL ;
}
2005-01-18 12:42:29 +01:00
rc = IWineD3DDevice_GetTexture ( This - > WineD3DDevice , Stage , ( IWineD3DBaseTexture * * ) & retTexture ) ;
2005-03-02 13:16:10 +01:00
if ( rc = = D3D_OK & & NULL ! = retTexture ) {
2005-01-18 12:42:29 +01:00
IWineD3DBaseTexture_GetParent ( retTexture , ( IUnknown * * ) ppTexture ) ;
2006-11-30 13:33:29 +01:00
IWineD3DBaseTexture_Release ( retTexture ) ;
2005-03-02 13:16:10 +01:00
} else {
2006-10-10 19:23:22 +02:00
FIXME ( " Call to get texture (%d) failed (%p) \n " , Stage , retTexture ) ;
2005-03-02 13:16:10 +01:00
* ppTexture = NULL ;
2005-01-18 12:42:29 +01:00
}
return rc ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetTexture ( LPDIRECT3DDEVICE9 iface , DWORD Stage , IDirect3DBaseTexture9 * pTexture ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2006-10-10 19:23:22 +02:00
TRACE ( " (%p) Relay %d %p \n " , This , Stage , pTexture ) ;
2005-01-18 12:42:29 +01:00
return IWineD3DDevice_SetTexture ( This - > WineD3DDevice , Stage ,
pTexture = = NULL ? NULL : ( ( IDirect3DBaseTexture9Impl * ) pTexture ) - > wineD3DBaseTexture ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetTextureStageState ( LPDIRECT3DDEVICE9 iface , DWORD Stage , D3DTEXTURESTAGESTATETYPE Type , DWORD * pValue ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2004-12-13 14:35:38 +01:00
return IWineD3DDevice_GetTextureStageState ( This - > WineD3DDevice , Stage , Type , pValue ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetTextureStageState ( LPDIRECT3DDEVICE9 iface , DWORD Stage , D3DTEXTURESTAGESTATETYPE Type , DWORD Value ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2004-12-13 14:35:38 +01:00
return IWineD3DDevice_SetTextureStageState ( This - > WineD3DDevice , Stage , Type , Value ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetSamplerState ( LPDIRECT3DDEVICE9 iface , DWORD Sampler , D3DSAMPLERSTATETYPE Type , DWORD * pValue ) {
2005-03-02 13:16:10 +01:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_GetSamplerState ( This - > WineD3DDevice , Sampler , Type , pValue ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetSamplerState ( LPDIRECT3DDEVICE9 iface , DWORD Sampler , D3DSAMPLERSTATETYPE Type , DWORD Value ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_SetSamplerState ( This - > WineD3DDevice , Sampler , Type , Value ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_ValidateDevice ( LPDIRECT3DDEVICE9 iface , DWORD * pNumPasses ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_ValidateDevice ( This - > WineD3DDevice , pNumPasses ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetPaletteEntries ( LPDIRECT3DDEVICE9 iface , UINT PaletteNumber , CONST PALETTEENTRY * pEntries ) {
2005-03-02 13:16:10 +01:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_SetPaletteEntries ( This - > WineD3DDevice , PaletteNumber , pEntries ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetPaletteEntries ( LPDIRECT3DDEVICE9 iface , UINT PaletteNumber , PALETTEENTRY * pEntries ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_GetPaletteEntries ( This - > WineD3DDevice , PaletteNumber , pEntries ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetCurrentTexturePalette ( LPDIRECT3DDEVICE9 iface , UINT PaletteNumber ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_SetCurrentTexturePalette ( This - > WineD3DDevice , PaletteNumber ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetCurrentTexturePalette ( LPDIRECT3DDEVICE9 iface , UINT * PaletteNumber ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_GetCurrentTexturePalette ( This - > WineD3DDevice , PaletteNumber ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetScissorRect ( LPDIRECT3DDEVICE9 iface , CONST RECT * pRect ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_SetScissorRect ( This - > WineD3DDevice , pRect ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetScissorRect ( LPDIRECT3DDEVICE9 iface , RECT * pRect ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_GetScissorRect ( This - > WineD3DDevice , pRect ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetSoftwareVertexProcessing ( LPDIRECT3DDEVICE9 iface , BOOL bSoftware ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_SetSoftwareVertexProcessing ( This - > WineD3DDevice , bSoftware ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static BOOL WINAPI IDirect3DDevice9Impl_GetSoftwareVertexProcessing ( LPDIRECT3DDEVICE9 iface ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_GetSoftwareVertexProcessing ( This - > WineD3DDevice ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetNPatchMode ( LPDIRECT3DDEVICE9 iface , float nSegments ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_SetNPatchMode ( This - > WineD3DDevice , nSegments ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static float WINAPI IDirect3DDevice9Impl_GetNPatchMode ( LPDIRECT3DDEVICE9 iface ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_GetNPatchMode ( This - > WineD3DDevice ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_DrawPrimitive ( LPDIRECT3DDEVICE9 iface , D3DPRIMITIVETYPE PrimitiveType , UINT StartVertex , UINT PrimitiveCount ) {
2005-03-02 13:16:10 +01:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
TRACE ( " (%p) Relay \n " , This ) ;
2004-12-09 12:42:34 +01:00
return IWineD3DDevice_DrawPrimitive ( This - > WineD3DDevice , PrimitiveType , StartVertex , PrimitiveCount ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_DrawIndexedPrimitive ( LPDIRECT3DDEVICE9 iface , D3DPRIMITIVETYPE PrimitiveType ,
2003-07-01 03:09:17 +02:00
INT BaseVertexIndex , UINT MinVertexIndex , UINT NumVertices , UINT startIndex , UINT primCount ) {
2007-01-02 21:07:39 +01:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2007-01-02 21:07:39 +01:00
/* D3D8 passes the baseVertexIndex in SetIndices, and due to the stateblock functions wined3d has to work that way */
IWineD3DDevice_SetBaseVertexIndex ( This - > WineD3DDevice , BaseVertexIndex ) ;
return IWineD3DDevice_DrawIndexedPrimitive ( This - > WineD3DDevice , PrimitiveType , MinVertexIndex , NumVertices , startIndex , primCount ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_DrawPrimitiveUP ( LPDIRECT3DDEVICE9 iface , D3DPRIMITIVETYPE PrimitiveType , UINT PrimitiveCount , CONST void * pVertexStreamZeroData , UINT VertexStreamZeroStride ) {
2005-03-02 13:16:10 +01:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
TRACE ( " (%p) Relay \n " , This ) ;
2004-12-09 12:42:34 +01:00
return IWineD3DDevice_DrawPrimitiveUP ( This - > WineD3DDevice , PrimitiveType , PrimitiveCount , pVertexStreamZeroData , VertexStreamZeroStride ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_DrawIndexedPrimitiveUP ( LPDIRECT3DDEVICE9 iface , D3DPRIMITIVETYPE PrimitiveType , UINT MinVertexIndex ,
2003-07-01 03:09:17 +02:00
UINT NumVertexIndices , UINT PrimitiveCount , CONST void * pIndexData ,
D3DFORMAT IndexDataFormat , CONST void * pVertexStreamZeroData , UINT VertexStreamZeroStride ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2004-12-09 12:42:34 +01:00
return IWineD3DDevice_DrawIndexedPrimitiveUP ( This - > WineD3DDevice , PrimitiveType , MinVertexIndex , NumVertexIndices , PrimitiveCount ,
pIndexData , IndexDataFormat , pVertexStreamZeroData , VertexStreamZeroStride ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_ProcessVertices ( LPDIRECT3DDEVICE9 iface , UINT SrcStartIndex , UINT DestIndex , UINT VertexCount , IDirect3DVertexBuffer9 * pDestBuffer , IDirect3DVertexDeclaration9 * pVertexDecl , DWORD Flags ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_ProcessVertices ( This - > WineD3DDevice , SrcStartIndex , DestIndex , VertexCount , ( ( IDirect3DVertexBuffer9Impl * ) pDestBuffer ) - > wineD3DVertexBuffer , ( ( IDirect3DVertexBuffer9Impl * ) pVertexDecl ) - > wineD3DVertexBuffer , Flags ) ;
2003-07-01 03:09:17 +02:00
}
HRESULT WINAPI IDirect3DDevice9Impl_SetFVF ( LPDIRECT3DDEVICE9 iface , DWORD FVF ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-07-04 10:53:13 +02:00
if ( 0 ! = FVF ) {
HRESULT hr ;
D3DVERTEXELEMENT9 * elements = NULL ;
IDirect3DVertexDeclaration9 * pDecl = NULL ;
hr = vdecl_convert_fvf ( FVF , & elements ) ;
if ( hr ! = S_OK ) goto exit ;
hr = IDirect3DDevice9Impl_CreateVertexDeclaration ( iface , elements , & pDecl ) ;
if ( hr ! = S_OK ) goto exit ;
hr = IDirect3DDevice9Impl_SetVertexDeclaration ( iface , pDecl ) ;
if ( hr ! = S_OK ) goto exit ;
pDecl = NULL ;
exit :
HeapFree ( GetProcessHeap ( ) , 0 , elements ) ;
if ( pDecl ) IUnknown_Release ( pDecl ) ;
if ( hr ! = S_OK ) return hr ;
}
2004-10-21 22:59:12 +02:00
return IWineD3DDevice_SetFVF ( This - > WineD3DDevice , FVF ) ;
2003-07-01 03:09:17 +02:00
}
HRESULT WINAPI IDirect3DDevice9Impl_GetFVF ( LPDIRECT3DDEVICE9 iface , DWORD * pFVF ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2004-10-21 22:59:12 +02:00
return IWineD3DDevice_GetFVF ( This - > WineD3DDevice , pFVF ) ;
2003-07-01 03:09:17 +02:00
}
HRESULT WINAPI IDirect3DDevice9Impl_SetStreamSource ( LPDIRECT3DDEVICE9 iface , UINT StreamNumber , IDirect3DVertexBuffer9 * pStreamData , UINT OffsetInBytes , UINT Stride ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2004-11-23 14:52:46 +01:00
return IWineD3DDevice_SetStreamSource ( This - > WineD3DDevice , StreamNumber ,
pStreamData = = NULL ? NULL : ( ( IDirect3DVertexBuffer9Impl * ) pStreamData ) - > wineD3DVertexBuffer ,
OffsetInBytes , Stride ) ;
2003-07-01 03:09:17 +02:00
}
2005-03-02 13:16:10 +01:00
HRESULT WINAPI IDirect3DDevice9Impl_GetStreamSource ( LPDIRECT3DDEVICE9 iface , UINT StreamNumber , IDirect3DVertexBuffer9 * * pStream , UINT * OffsetInBytes , UINT * pStride ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2004-11-23 14:52:46 +01:00
IWineD3DVertexBuffer * retStream = NULL ;
HRESULT rc = D3D_OK ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
if ( pStream = = NULL ) {
return D3DERR_INVALIDCALL ;
}
2004-11-23 14:52:46 +01:00
rc = IWineD3DDevice_GetStreamSource ( This - > WineD3DDevice , StreamNumber , ( IWineD3DVertexBuffer * * ) & retStream , OffsetInBytes , pStride ) ;
2005-03-02 13:16:10 +01:00
if ( rc = = D3D_OK & & NULL ! = retStream ) {
2004-12-09 12:42:34 +01:00
IWineD3DVertexBuffer_GetParent ( retStream , ( IUnknown * * ) pStream ) ;
2006-11-30 13:33:23 +01:00
IWineD3DVertexBuffer_Release ( retStream ) ;
2005-03-02 13:16:10 +01:00
} else {
2006-12-24 10:00:05 +01:00
if ( rc ! = D3D_OK ) {
FIXME ( " Call to GetStreamSource failed %p %p \n " , OffsetInBytes , pStride ) ;
}
2005-03-02 13:16:10 +01:00
* pStream = NULL ;
2004-12-09 12:42:34 +01:00
}
2004-11-23 14:52:46 +01:00
return rc ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetStreamSourceFreq ( LPDIRECT3DDEVICE9 iface , UINT StreamNumber , UINT Divider ) {
2005-03-02 13:16:10 +01:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
TRACE ( " (%p) Relay \n " , This ) ;
IWineD3DDevice_SetStreamSourceFreq ( This - > WineD3DDevice , StreamNumber , Divider ) ;
2003-07-01 03:09:17 +02:00
return D3D_OK ;
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetStreamSourceFreq ( LPDIRECT3DDEVICE9 iface , UINT StreamNumber , UINT * Divider ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_GetStreamSourceFreq ( This - > WineD3DDevice , StreamNumber , Divider ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_SetIndices ( LPDIRECT3DDEVICE9 iface , IDirect3DIndexBuffer9 * pIndexData ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2004-12-09 12:42:34 +01:00
return IWineD3DDevice_SetIndices ( This - > WineD3DDevice ,
pIndexData = = NULL ? NULL : ( ( IDirect3DIndexBuffer9Impl * ) pIndexData ) - > wineD3DIndexBuffer ,
0 ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_GetIndices ( LPDIRECT3DDEVICE9 iface , IDirect3DIndexBuffer9 * * ppIndexData ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2004-12-09 12:42:34 +01:00
IWineD3DIndexBuffer * retIndexData = NULL ;
HRESULT rc = D3D_OK ;
UINT tmp ;
2003-07-01 03:09:17 +02:00
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
if ( ppIndexData = = NULL ) {
return D3DERR_INVALIDCALL ;
}
2004-12-09 12:42:34 +01:00
rc = IWineD3DDevice_GetIndices ( This - > WineD3DDevice , & retIndexData , & tmp ) ;
2005-03-02 13:16:10 +01:00
if ( rc = = D3D_OK & & NULL ! = retIndexData ) {
2006-12-01 00:16:10 +01:00
IWineD3DIndexBuffer_GetParent ( retIndexData , ( IUnknown * * ) ppIndexData ) ;
IWineD3DIndexBuffer_Release ( retIndexData ) ;
2005-03-02 13:16:10 +01:00
} else {
if ( rc ! = D3D_OK ) FIXME ( " Call to GetIndices failed \n " ) ;
* ppIndexData = NULL ;
2004-12-09 12:42:34 +01:00
}
return rc ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_DrawRectPatch ( LPDIRECT3DDEVICE9 iface , UINT Handle , CONST float * pNumSegs , CONST D3DRECTPATCH_INFO * pRectPatchInfo ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-10-27 20:27:24 +02:00
return IWineD3DDevice_DrawRectPatch ( This - > WineD3DDevice , Handle , pNumSegs , ( CONST WINED3DRECTPATCH_INFO * ) pRectPatchInfo ) ;
2003-07-01 03:09:17 +02:00
}
2005-03-02 13:16:10 +01:00
/*http://msdn.microsoft.com/library/default.asp?url=/library/en-us/directx9_c/directx/graphics/reference/d3d/interfaces/idirect3ddevice9/DrawTriPatch.asp*/
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_DrawTriPatch ( LPDIRECT3DDEVICE9 iface , UINT Handle , CONST float * pNumSegs , CONST D3DTRIPATCH_INFO * pTriPatchInfo ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
2006-10-27 20:27:24 +02:00
return IWineD3DDevice_DrawTriPatch ( This - > WineD3DDevice , Handle , pNumSegs , ( CONST WINED3DTRIPATCH_INFO * ) pTriPatchInfo ) ;
2003-07-01 03:09:17 +02:00
}
2006-06-10 11:51:05 +02:00
static HRESULT WINAPI IDirect3DDevice9Impl_DeletePatch ( LPDIRECT3DDEVICE9 iface , UINT Handle ) {
2004-09-08 03:50:37 +02:00
IDirect3DDevice9Impl * This = ( IDirect3DDevice9Impl * ) iface ;
2005-03-02 13:16:10 +01:00
TRACE ( " (%p) Relay \n " , This ) ;
return IWineD3DDevice_DeletePatch ( This - > WineD3DDevice , Handle ) ;
2003-07-01 03:09:17 +02:00
}
2005-05-27 22:17:35 +02:00
const IDirect3DDevice9Vtbl Direct3DDevice9_Vtbl =
2003-07-01 03:09:17 +02:00
{
2005-08-23 11:34:57 +02:00
/* IUnknown */
2003-07-01 03:09:17 +02:00
IDirect3DDevice9Impl_QueryInterface ,
IDirect3DDevice9Impl_AddRef ,
IDirect3DDevice9Impl_Release ,
2005-08-23 11:34:57 +02:00
/* IDirect3DDevice9 */
2003-07-01 03:09:17 +02:00
IDirect3DDevice9Impl_TestCooperativeLevel ,
IDirect3DDevice9Impl_GetAvailableTextureMem ,
2005-03-02 13:16:10 +01:00
IDirect3DDevice9Impl_EvictManagedResources ,
2003-07-01 03:09:17 +02:00
IDirect3DDevice9Impl_GetDirect3D ,
IDirect3DDevice9Impl_GetDeviceCaps ,
IDirect3DDevice9Impl_GetDisplayMode ,
IDirect3DDevice9Impl_GetCreationParameters ,
IDirect3DDevice9Impl_SetCursorProperties ,
IDirect3DDevice9Impl_SetCursorPosition ,
IDirect3DDevice9Impl_ShowCursor ,
IDirect3DDevice9Impl_CreateAdditionalSwapChain ,
IDirect3DDevice9Impl_GetSwapChain ,
IDirect3DDevice9Impl_GetNumberOfSwapChains ,
IDirect3DDevice9Impl_Reset ,
IDirect3DDevice9Impl_Present ,
IDirect3DDevice9Impl_GetBackBuffer ,
IDirect3DDevice9Impl_GetRasterStatus ,
IDirect3DDevice9Impl_SetDialogBoxMode ,
IDirect3DDevice9Impl_SetGammaRamp ,
IDirect3DDevice9Impl_GetGammaRamp ,
IDirect3DDevice9Impl_CreateTexture ,
IDirect3DDevice9Impl_CreateVolumeTexture ,
IDirect3DDevice9Impl_CreateCubeTexture ,
IDirect3DDevice9Impl_CreateVertexBuffer ,
IDirect3DDevice9Impl_CreateIndexBuffer ,
IDirect3DDevice9Impl_CreateRenderTarget ,
IDirect3DDevice9Impl_CreateDepthStencilSurface ,
IDirect3DDevice9Impl_UpdateSurface ,
IDirect3DDevice9Impl_UpdateTexture ,
IDirect3DDevice9Impl_GetRenderTargetData ,
IDirect3DDevice9Impl_GetFrontBufferData ,
2005-03-02 13:16:10 +01:00
IDirect3DDevice9Impl_StretchRect ,
2003-07-01 03:09:17 +02:00
IDirect3DDevice9Impl_ColorFill ,
IDirect3DDevice9Impl_CreateOffscreenPlainSurface ,
IDirect3DDevice9Impl_SetRenderTarget ,
IDirect3DDevice9Impl_GetRenderTarget ,
IDirect3DDevice9Impl_SetDepthStencilSurface ,
IDirect3DDevice9Impl_GetDepthStencilSurface ,
IDirect3DDevice9Impl_BeginScene ,
IDirect3DDevice9Impl_EndScene ,
IDirect3DDevice9Impl_Clear ,
IDirect3DDevice9Impl_SetTransform ,
IDirect3DDevice9Impl_GetTransform ,
IDirect3DDevice9Impl_MultiplyTransform ,
IDirect3DDevice9Impl_SetViewport ,
IDirect3DDevice9Impl_GetViewport ,
IDirect3DDevice9Impl_SetMaterial ,
IDirect3DDevice9Impl_GetMaterial ,
IDirect3DDevice9Impl_SetLight ,
IDirect3DDevice9Impl_GetLight ,
IDirect3DDevice9Impl_LightEnable ,
IDirect3DDevice9Impl_GetLightEnable ,
IDirect3DDevice9Impl_SetClipPlane ,
IDirect3DDevice9Impl_GetClipPlane ,
IDirect3DDevice9Impl_SetRenderState ,
IDirect3DDevice9Impl_GetRenderState ,
IDirect3DDevice9Impl_CreateStateBlock ,
IDirect3DDevice9Impl_BeginStateBlock ,
IDirect3DDevice9Impl_EndStateBlock ,
IDirect3DDevice9Impl_SetClipStatus ,
IDirect3DDevice9Impl_GetClipStatus ,
IDirect3DDevice9Impl_GetTexture ,
IDirect3DDevice9Impl_SetTexture ,
IDirect3DDevice9Impl_GetTextureStageState ,
IDirect3DDevice9Impl_SetTextureStageState ,
IDirect3DDevice9Impl_GetSamplerState ,
IDirect3DDevice9Impl_SetSamplerState ,
IDirect3DDevice9Impl_ValidateDevice ,
IDirect3DDevice9Impl_SetPaletteEntries ,
IDirect3DDevice9Impl_GetPaletteEntries ,
IDirect3DDevice9Impl_SetCurrentTexturePalette ,
IDirect3DDevice9Impl_GetCurrentTexturePalette ,
IDirect3DDevice9Impl_SetScissorRect ,
IDirect3DDevice9Impl_GetScissorRect ,
IDirect3DDevice9Impl_SetSoftwareVertexProcessing ,
IDirect3DDevice9Impl_GetSoftwareVertexProcessing ,
IDirect3DDevice9Impl_SetNPatchMode ,
IDirect3DDevice9Impl_GetNPatchMode ,
IDirect3DDevice9Impl_DrawPrimitive ,
IDirect3DDevice9Impl_DrawIndexedPrimitive ,
IDirect3DDevice9Impl_DrawPrimitiveUP ,
IDirect3DDevice9Impl_DrawIndexedPrimitiveUP ,
IDirect3DDevice9Impl_ProcessVertices ,
IDirect3DDevice9Impl_CreateVertexDeclaration ,
IDirect3DDevice9Impl_SetVertexDeclaration ,
IDirect3DDevice9Impl_GetVertexDeclaration ,
IDirect3DDevice9Impl_SetFVF ,
IDirect3DDevice9Impl_GetFVF ,
IDirect3DDevice9Impl_CreateVertexShader ,
IDirect3DDevice9Impl_SetVertexShader ,
IDirect3DDevice9Impl_GetVertexShader ,
IDirect3DDevice9Impl_SetVertexShaderConstantF ,
IDirect3DDevice9Impl_GetVertexShaderConstantF ,
IDirect3DDevice9Impl_SetVertexShaderConstantI ,
IDirect3DDevice9Impl_GetVertexShaderConstantI ,
IDirect3DDevice9Impl_SetVertexShaderConstantB ,
IDirect3DDevice9Impl_GetVertexShaderConstantB ,
IDirect3DDevice9Impl_SetStreamSource ,
IDirect3DDevice9Impl_GetStreamSource ,
IDirect3DDevice9Impl_SetStreamSourceFreq ,
IDirect3DDevice9Impl_GetStreamSourceFreq ,
IDirect3DDevice9Impl_SetIndices ,
IDirect3DDevice9Impl_GetIndices ,
IDirect3DDevice9Impl_CreatePixelShader ,
IDirect3DDevice9Impl_SetPixelShader ,
IDirect3DDevice9Impl_GetPixelShader ,
IDirect3DDevice9Impl_SetPixelShaderConstantF ,
IDirect3DDevice9Impl_GetPixelShaderConstantF ,
IDirect3DDevice9Impl_SetPixelShaderConstantI ,
IDirect3DDevice9Impl_GetPixelShaderConstantI ,
IDirect3DDevice9Impl_SetPixelShaderConstantB ,
IDirect3DDevice9Impl_GetPixelShaderConstantB ,
IDirect3DDevice9Impl_DrawRectPatch ,
IDirect3DDevice9Impl_DrawTriPatch ,
IDirect3DDevice9Impl_DeletePatch ,
IDirect3DDevice9Impl_CreateQuery
} ;
2005-03-02 13:16:10 +01:00
/* Internal function called back during the CreateDevice to create a render target */
2006-12-03 21:52:03 +01:00
HRESULT WINAPI D3D9CB_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 ,
2005-03-02 13:16:10 +01:00
IWineD3DSurface * * ppSurface , HANDLE * pSharedHandle ) {
2006-12-03 21:52:03 +01:00
2005-03-02 13:16:10 +01:00
HRESULT res = D3D_OK ;
IDirect3DSurface9Impl * d3dSurface = NULL ;
BOOL Lockable = TRUE ;
if ( ( Pool = = D3DPOOL_DEFAULT & & Usage ! = D3DUSAGE_DYNAMIC ) )
Lockable = FALSE ;
TRACE ( " relay \n " ) ;
2006-05-29 23:01:04 +02:00
res = IDirect3DDevice9Impl_CreateSurface ( ( IDirect3DDevice9 * ) device , Width , Height , ( D3DFORMAT ) Format ,
Lockable , FALSE /*Discard*/ , Level , ( IDirect3DSurface9 * * ) & d3dSurface , D3DRTYPE_SURFACE ,
Usage , ( D3DPOOL ) Pool , D3DMULTISAMPLE_NONE , 0 /* MultisampleQuality */ , pSharedHandle ) ;
2005-03-02 13:16:10 +01:00
2006-05-29 23:01:04 +02:00
if ( SUCCEEDED ( res ) ) {
2005-03-02 13:16:10 +01:00
* ppSurface = d3dSurface - > wineD3DSurface ;
2006-12-18 00:17:51 +01:00
d3dSurface - > container = pSuperior ;
2006-05-29 23:01:04 +02:00
IUnknown_Release ( d3dSurface - > parentDevice ) ;
d3dSurface - > parentDevice = NULL ;
2006-12-18 00:16:48 +01:00
d3dSurface - > forwardReference = pSuperior ;
2006-05-29 23:01:04 +02:00
} else {
2005-03-02 13:16:10 +01:00
FIXME ( " (%p) IDirect3DDevice9_CreateSurface failed \n " , device ) ;
}
return res ;
}
2006-12-18 00:16:48 +01:00
ULONG WINAPI D3D9CB_DestroySurface ( IWineD3DSurface * pSurface ) {
IDirect3DSurface9Impl * 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 IDirect3DSurface9_Release ( ( IDirect3DSurface9 * ) surfaceParent ) ;
}