wined3d: Minor cursor fixes.
[wine/wine-kai.git] / dlls / d3d9 / device.c
blob6eeacebf37ccbe50c3d5e6f86d1fc4be8871207c
1 /*
2 * IDirect3DDevice9 implementation
4 * Copyright 2002-2005 Jason Edmeades
5 * Copyright 2002-2005 Raphael Junqueira
6 * Copyright 2005 Oliver Stieber
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "config.h"
24 #include "d3d9_private.h"
26 WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
29 /* IDirect3D IUnknown parts follow: */
30 static HRESULT WINAPI IDirect3DDevice9Impl_QueryInterface(LPDIRECT3DDEVICE9 iface, REFIID riid, LPVOID* ppobj) {
31 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
33 if (IsEqualGUID(riid, &IID_IUnknown)
34 || IsEqualGUID(riid, &IID_IDirect3DDevice9)) {
35 IUnknown_AddRef(iface);
36 *ppobj = This;
37 return S_OK;
40 WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
41 *ppobj = NULL;
42 return E_NOINTERFACE;
45 static ULONG WINAPI IDirect3DDevice9Impl_AddRef(LPDIRECT3DDEVICE9 iface) {
46 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
47 ULONG ref = InterlockedIncrement(&This->ref);
49 TRACE("(%p) : AddRef from %ld\n", This, ref - 1);
51 return ref;
54 static ULONG WINAPI IDirect3DDevice9Impl_Release(LPDIRECT3DDEVICE9 iface) {
55 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
56 ULONG ref = InterlockedDecrement(&This->ref);
58 TRACE("(%p) : ReleaseRef to %ld\n", This, ref);
60 if (ref == 0) {
61 IWineD3DDevice_Uninit3D(This->WineD3DDevice);
62 IWineD3DDevice_Release(This->WineD3DDevice);
63 HeapFree(GetProcessHeap(), 0, This);
65 return ref;
68 /* IDirect3DDevice Interface follow: */
69 static HRESULT WINAPI IDirect3DDevice9Impl_TestCooperativeLevel(LPDIRECT3DDEVICE9 iface) {
70 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
72 TRACE("(%p) : Relay\n", This);
73 return IWineD3DDevice_TestCooperativeLevel(This->WineD3DDevice);
76 static UINT WINAPI IDirect3DDevice9Impl_GetAvailableTextureMem(LPDIRECT3DDEVICE9 iface) {
77 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
79 TRACE("(%p) Relay\n", This);
80 return IWineD3DDevice_GetAvailableTextureMem(This->WineD3DDevice);
83 static HRESULT WINAPI IDirect3DDevice9Impl_EvictManagedResources(LPDIRECT3DDEVICE9 iface) {
84 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
86 TRACE("(%p) : Relay\n", This);
87 return IWineD3DDevice_EvictManagedResources(This->WineD3DDevice);
90 HRESULT WINAPI IDirect3DDevice9Impl_GetDirect3D(LPDIRECT3DDEVICE9 iface, IDirect3D9** ppD3D9) {
91 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
92 HRESULT hr = D3D_OK;
93 IWineD3D* pWineD3D;
95 TRACE("(%p) Relay\n", This);
97 if (NULL == ppD3D9) {
98 return D3DERR_INVALIDCALL;
100 hr = IWineD3DDevice_GetDirect3D(This->WineD3DDevice, &pWineD3D);
101 if (hr == D3D_OK && pWineD3D != NULL)
103 IWineD3DResource_GetParent((IWineD3DResource *)pWineD3D,(IUnknown **)ppD3D9);
104 IWineD3DResource_Release((IWineD3DResource *)pWineD3D);
105 } else {
106 FIXME("Call to IWineD3DDevice_GetDirect3D failed\n");
107 *ppD3D9 = NULL;
109 TRACE("(%p) returning %p\n", This, *ppD3D9);
110 return hr;
113 static HRESULT WINAPI IDirect3DDevice9Impl_GetDeviceCaps(LPDIRECT3DDEVICE9 iface, D3DCAPS9* pCaps) {
114 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
115 HRESULT hrc = D3D_OK;
116 WINED3DCAPS *pWineCaps;
118 TRACE("(%p) : Relay pCaps %p\n", This, pCaps);
119 if(NULL == pCaps){
120 return D3DERR_INVALIDCALL;
122 pWineCaps = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WINED3DCAPS));
123 if(pWineCaps == NULL){
124 return D3DERR_INVALIDCALL; /* well this is what MSDN says to return */
127 D3D9CAPSTOWINECAPS(pCaps, pWineCaps)
128 hrc = IWineD3DDevice_GetDeviceCaps(This->WineD3DDevice, pWineCaps);
129 HeapFree(GetProcessHeap(), 0, pWineCaps);
130 TRACE("Returning %p %p\n", This, pCaps);
131 return hrc;
134 static HRESULT WINAPI IDirect3DDevice9Impl_GetDisplayMode(LPDIRECT3DDEVICE9 iface, UINT iSwapChain, D3DDISPLAYMODE* pMode) {
135 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
136 TRACE("(%p) Relay\n", This);
137 return IWineD3DDevice_GetDisplayMode(This->WineD3DDevice, iSwapChain, (WINED3DDISPLAYMODE *) pMode);
140 static HRESULT WINAPI IDirect3DDevice9Impl_GetCreationParameters(LPDIRECT3DDEVICE9 iface, D3DDEVICE_CREATION_PARAMETERS *pParameters) {
141 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
142 TRACE("(%p) Relay\n", This);
143 return IWineD3DDevice_GetCreationParameters(This->WineD3DDevice, (WINED3DDEVICE_CREATION_PARAMETERS *) pParameters);
146 static HRESULT WINAPI IDirect3DDevice9Impl_SetCursorProperties(LPDIRECT3DDEVICE9 iface, UINT XHotSpot, UINT YHotSpot, IDirect3DSurface9* pCursorBitmap) {
147 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
148 IDirect3DSurface9Impl *pSurface = (IDirect3DSurface9Impl*)pCursorBitmap;
149 TRACE("(%p) Relay\n", This);
150 if(!pCursorBitmap) {
151 WARN("No cursor bitmap, returning WINED3DERR_INVALIDCALL\n");
152 return WINED3DERR_INVALIDCALL;
154 return IWineD3DDevice_SetCursorProperties(This->WineD3DDevice,XHotSpot,YHotSpot,(IWineD3DSurface*)pSurface->wineD3DSurface);
157 static void WINAPI IDirect3DDevice9Impl_SetCursorPosition(LPDIRECT3DDEVICE9 iface, int XScreenSpace, int YScreenSpace, DWORD Flags) {
158 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
159 TRACE("(%p) Relay\n", This);
160 return IWineD3DDevice_SetCursorPosition(This->WineD3DDevice, XScreenSpace, YScreenSpace, Flags);
163 static BOOL WINAPI IDirect3DDevice9Impl_ShowCursor(LPDIRECT3DDEVICE9 iface, BOOL bShow) {
164 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
165 TRACE("(%p) Relay\n", This);
167 return IWineD3DDevice_ShowCursor(This->WineD3DDevice, bShow);
170 static HRESULT WINAPI IDirect3DDevice9Impl_Reset(LPDIRECT3DDEVICE9 iface, D3DPRESENT_PARAMETERS* pPresentationParameters) {
171 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
172 WINED3DPRESENT_PARAMETERS localParameters;
173 TRACE("(%p) Relay pPresentationParameters(%p)\n", This, pPresentationParameters);
175 localParameters.BackBufferWidth = &pPresentationParameters->BackBufferWidth;
176 localParameters.BackBufferHeight = &pPresentationParameters->BackBufferHeight;
177 localParameters.BackBufferFormat = (WINED3DFORMAT *)&pPresentationParameters->BackBufferFormat;
178 localParameters.BackBufferCount = &pPresentationParameters->BackBufferCount;
179 localParameters.MultiSampleType = (WINED3DMULTISAMPLE_TYPE *) &pPresentationParameters->MultiSampleType;
180 localParameters.MultiSampleQuality = &pPresentationParameters->MultiSampleQuality;
181 localParameters.SwapEffect = (WINED3DSWAPEFFECT *) &pPresentationParameters->SwapEffect;
182 localParameters.hDeviceWindow = &pPresentationParameters->hDeviceWindow;
183 localParameters.Windowed = &pPresentationParameters->Windowed;
184 localParameters.EnableAutoDepthStencil = &pPresentationParameters->EnableAutoDepthStencil;
185 localParameters.AutoDepthStencilFormat = (WINED3DFORMAT *)&pPresentationParameters->AutoDepthStencilFormat;
186 localParameters.Flags = &pPresentationParameters->Flags;
187 localParameters.FullScreen_RefreshRateInHz = &pPresentationParameters->FullScreen_RefreshRateInHz;
188 localParameters.PresentationInterval = &pPresentationParameters->PresentationInterval;
189 return IWineD3DDevice_Reset(This->WineD3DDevice, &localParameters);
192 static HRESULT WINAPI IDirect3DDevice9Impl_Present(LPDIRECT3DDEVICE9 iface, CONST RECT* pSourceRect,CONST RECT* pDestRect,HWND hDestWindowOverride,CONST RGNDATA*
193 pDirtyRegion) {
194 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
195 TRACE("(%p) Relay\n", This);
196 return IWineD3DDevice_Present(This->WineD3DDevice, pSourceRect, pDestRect, hDestWindowOverride, pDirtyRegion);
199 static HRESULT WINAPI IDirect3DDevice9Impl_GetBackBuffer(LPDIRECT3DDEVICE9 iface, UINT iSwapChain, UINT BackBuffer, D3DBACKBUFFER_TYPE Type, IDirect3DSurface9 ** ppBackBuffer) {
200 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
201 IWineD3DSurface *retSurface = NULL;
202 HRESULT rc = D3D_OK;
204 TRACE("(%p) Relay\n", This);
206 rc = IWineD3DDevice_GetBackBuffer(This->WineD3DDevice, iSwapChain, BackBuffer, (WINED3DBACKBUFFER_TYPE) Type, (IWineD3DSurface **)&retSurface);
207 if (rc == D3D_OK && NULL != retSurface && NULL != ppBackBuffer) {
208 IWineD3DSurface_GetParent(retSurface, (IUnknown **)ppBackBuffer);
209 IWineD3DSurface_Release(retSurface);
211 return rc;
213 static HRESULT WINAPI IDirect3DDevice9Impl_GetRasterStatus(LPDIRECT3DDEVICE9 iface, UINT iSwapChain, D3DRASTER_STATUS* pRasterStatus) {
214 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
215 TRACE("(%p) Relay\n", This);
217 return IWineD3DDevice_GetRasterStatus(This->WineD3DDevice, iSwapChain, (WINED3DRASTER_STATUS *) pRasterStatus);
220 static HRESULT WINAPI IDirect3DDevice9Impl_SetDialogBoxMode(LPDIRECT3DDEVICE9 iface, BOOL bEnableDialogs) {
221 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
222 TRACE("(%p) Relay\n", This);
224 return IWineD3DDevice_SetDialogBoxMode(This->WineD3DDevice, bEnableDialogs);
227 static void WINAPI IDirect3DDevice9Impl_SetGammaRamp(LPDIRECT3DDEVICE9 iface, UINT iSwapChain, DWORD Flags, CONST D3DGAMMARAMP* pRamp) {
229 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
230 TRACE("(%p) Relay\n", This);
232 return IWineD3DDevice_SetGammaRamp(This->WineD3DDevice, iSwapChain, Flags, (WINED3DGAMMARAMP *) pRamp);
235 static void WINAPI IDirect3DDevice9Impl_GetGammaRamp(LPDIRECT3DDEVICE9 iface, UINT iSwapChain, D3DGAMMARAMP* pRamp) {
236 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
237 TRACE("(%p) Relay\n", This);
239 return IWineD3DDevice_GetGammaRamp(This->WineD3DDevice, iSwapChain, (WINED3DGAMMARAMP *) pRamp);
243 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 ) {
244 HRESULT hrc;
245 IDirect3DSurface9Impl *object;
246 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
247 TRACE("(%p) Relay\n", This);
248 if(MultisampleQuality < 0) {
249 FIXME("MultisampleQuality out of range %ld, substituting 0\n", MultisampleQuality);
250 /*FIXME: Find out what windows does with a MultisampleQuality < 0 */
251 MultisampleQuality=0;
254 if(MultisampleQuality > 0){
255 FIXME("MultisampleQuality set to %ld, bstituting 0\n", MultisampleQuality);
257 MultisampleQuality
258 [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.
261 MultisampleQuality=0;
263 /*FIXME: Check MAX bounds of MultisampleQuality*/
265 /* Allocate the storage for the device */
266 object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirect3DSurface9Impl));
267 if (NULL == object) {
268 FIXME("Allocation of memory failed\n");
269 return D3DERR_OUTOFVIDEOMEMORY;
272 object->lpVtbl = &Direct3DSurface9_Vtbl;
273 object->ref = 1;
275 TRACE("(%p) : w(%d) h(%d) fmt(%d) surf@%p\n", This, Width, Height, Format, *ppSurface);
277 hrc = IWineD3DDevice_CreateSurface(This->WineD3DDevice, Width, Height, Format, Lockable, Discard, Level, &object->wineD3DSurface, Type, Usage, (WINED3DPOOL) Pool,MultiSample,MultisampleQuality,pSharedHandle,SURFACE_OPENGL,(IUnknown *)object);
279 if (hrc != D3D_OK || NULL == object->wineD3DSurface) {
281 /* free up object */
282 FIXME("(%p) call to IWineD3DDevice_CreateSurface failed\n", This);
283 HeapFree(GetProcessHeap(), 0, object);
284 } else {
285 IUnknown_AddRef(iface);
286 object->parentDevice = iface;
287 TRACE("(%p) : Created surface %p\n", This, object);
288 *ppSurface = (LPDIRECT3DSURFACE9) object;
290 return hrc;
295 static HRESULT WINAPI IDirect3DDevice9Impl_CreateRenderTarget(LPDIRECT3DDEVICE9 iface, UINT Width, UINT Height,
296 D3DFORMAT Format, D3DMULTISAMPLE_TYPE MultiSample,
297 DWORD MultisampleQuality, BOOL Lockable,
298 IDirect3DSurface9 **ppSurface, HANDLE* pSharedHandle) {
299 TRACE("Relay\n");
300 /* Is this correct? */
301 return IDirect3DDevice9Impl_CreateSurface(iface,Width,Height,Format,Lockable,FALSE/*Discard*/, 0/*Level*/, ppSurface,D3DRTYPE_SURFACE,D3DUSAGE_RENDERTARGET,D3DPOOL_DEFAULT,MultiSample,MultisampleQuality,pSharedHandle);
306 static HRESULT WINAPI IDirect3DDevice9Impl_CreateDepthStencilSurface(LPDIRECT3DDEVICE9 iface, UINT Width, UINT Height,
307 D3DFORMAT Format, D3DMULTISAMPLE_TYPE MultiSample,
308 DWORD MultisampleQuality, BOOL Discard,
309 IDirect3DSurface9 **ppSurface, HANDLE* pSharedHandle) {
310 TRACE("Relay\n");
311 return IDirect3DDevice9Impl_CreateSurface(iface,Width,Height,Format,TRUE/* Lockable */,Discard, 0/* Level */
312 ,ppSurface,D3DRTYPE_SURFACE,D3DUSAGE_DEPTHSTENCIL,
313 D3DPOOL_DEFAULT,MultiSample,MultisampleQuality,pSharedHandle);
317 static HRESULT WINAPI IDirect3DDevice9Impl_UpdateSurface(LPDIRECT3DDEVICE9 iface, IDirect3DSurface9* pSourceSurface, CONST RECT* pSourceRect, IDirect3DSurface9* pDestinationSurface, CONST POINT* pDestPoint) {
318 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
319 TRACE("(%p) Relay\n" , This);
320 return IWineD3DDevice_UpdateSurface(This->WineD3DDevice, ((IDirect3DSurface9Impl *)pSourceSurface)->wineD3DSurface, pSourceRect, ((IDirect3DSurface9Impl *)pDestinationSurface)->wineD3DSurface, pDestPoint);
323 static HRESULT WINAPI IDirect3DDevice9Impl_UpdateTexture(LPDIRECT3DDEVICE9 iface, IDirect3DBaseTexture9* pSourceTexture, IDirect3DBaseTexture9* pDestinationTexture) {
324 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
325 TRACE("(%p) Relay\n" , This);
326 return IWineD3DDevice_UpdateTexture(This->WineD3DDevice, ((IDirect3DBaseTexture9Impl *)pSourceTexture)->wineD3DBaseTexture, ((IDirect3DBaseTexture9Impl *)pDestinationTexture)->wineD3DBaseTexture);
329 /* This isn't in MSDN!
330 static HRESULT WINAPI IDirect3DDevice9Impl_GetFrontBuffer(LPDIRECT3DDEVICE9 iface, IDirect3DSurface9* pDestSurface) {
331 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
332 FIXME("(%p) : stub\n", This);
333 return D3D_OK;
337 static HRESULT WINAPI IDirect3DDevice9Impl_GetRenderTargetData(LPDIRECT3DDEVICE9 iface, IDirect3DSurface9* pRenderTarget, IDirect3DSurface9* pDestSurface) {
338 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
339 IDirect3DSurface9Impl *renderTarget = (IDirect3DSurface9Impl *)pRenderTarget;
340 IDirect3DSurface9Impl *destSurface = (IDirect3DSurface9Impl *)pDestSurface;
341 TRACE("(%p) Relay\n" , This);
342 return IWineD3DDevice_GetRenderTargetData(This->WineD3DDevice, renderTarget->wineD3DSurface, destSurface->wineD3DSurface);
345 static HRESULT WINAPI IDirect3DDevice9Impl_GetFrontBufferData(LPDIRECT3DDEVICE9 iface, UINT iSwapChain, IDirect3DSurface9* pDestSurface) {
346 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
347 IDirect3DSurface9Impl *destSurface = (IDirect3DSurface9Impl *)pDestSurface;
348 TRACE("(%p) Relay\n" , This);
349 return IWineD3DDevice_GetFrontBufferData(This->WineD3DDevice, iSwapChain, destSurface->wineD3DSurface);
352 static HRESULT WINAPI IDirect3DDevice9Impl_StretchRect(LPDIRECT3DDEVICE9 iface, IDirect3DSurface9* pSourceSurface, CONST RECT* pSourceRect, IDirect3DSurface9* pDestSurface, CONST RECT* pDestRect, D3DTEXTUREFILTERTYPE Filter) {
353 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
354 TRACE("(%p) Relay\n" , This);
355 return IWineD3DDevice_StretchRect(This->WineD3DDevice, ((IDirect3DSurface9Impl *)pSourceSurface)->wineD3DSurface, pSourceRect, ((IDirect3DSurface9Impl *)pDestSurface)->wineD3DSurface, pDestRect, (WINED3DTEXTUREFILTERTYPE) Filter);
358 static HRESULT WINAPI IDirect3DDevice9Impl_ColorFill(LPDIRECT3DDEVICE9 iface, IDirect3DSurface9* pSurface, CONST RECT* pRect, D3DCOLOR color) {
359 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
360 IDirect3DSurface9Impl *surface = (IDirect3DSurface9Impl *)pSurface;
361 TRACE("(%p) Relay\n" , This);
362 return IWineD3DDevice_ColorFill(This->WineD3DDevice, surface->wineD3DSurface, (CONST D3DRECT*)pRect, color);
365 static HRESULT WINAPI IDirect3DDevice9Impl_CreateOffscreenPlainSurface(LPDIRECT3DDEVICE9 iface, UINT Width, UINT Height, D3DFORMAT Format, D3DPOOL Pool, IDirect3DSurface9 **ppSurface, HANDLE* pSharedHandle) {
366 TRACE("Relay\n");
367 if(Pool == D3DPOOL_MANAGED ){
368 FIXME("Attempting to create a managed offscreen plain surface\n");
369 return D3DERR_INVALIDCALL;
371 /*MSDN: D3DPOOL_SCRATCH will return a surface that has identical characteristics to a surface created by the Microsoft DirectX 8.x method CreateImageSurface.
373 'Off-screen plain surfaces are always lockable, regardless of their pool types.'
374 but then...
375 D3DPOOL_DEFAULT is the appropriate pool for use with the IDirect3DDevice9::StretchRect and IDirect3DDevice9::ColorFill.
376 Why, their always lockable?
377 should I change the usage to dynamic?
379 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);
382 /* TODO: move to wineD3D */
383 static HRESULT WINAPI IDirect3DDevice9Impl_SetRenderTarget(LPDIRECT3DDEVICE9 iface, DWORD RenderTargetIndex, IDirect3DSurface9* pRenderTarget) {
384 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
385 IDirect3DSurface9Impl *pSurface = (IDirect3DSurface9Impl*)pRenderTarget;
386 TRACE("(%p) Relay\n" , This);
387 return IWineD3DDevice_SetRenderTarget(This->WineD3DDevice, RenderTargetIndex, pSurface ? (IWineD3DSurface*)pSurface->wineD3DSurface : NULL);
390 static HRESULT WINAPI IDirect3DDevice9Impl_GetRenderTarget(LPDIRECT3DDEVICE9 iface, DWORD RenderTargetIndex, IDirect3DSurface9 **ppRenderTarget) {
391 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
392 HRESULT hr = D3D_OK;
393 IWineD3DSurface *pRenderTarget;
395 TRACE("(%p) Relay\n" , This);
397 if (ppRenderTarget == NULL) {
398 return D3DERR_INVALIDCALL;
400 hr=IWineD3DDevice_GetRenderTarget(This->WineD3DDevice,RenderTargetIndex,&pRenderTarget);
402 if (hr == D3D_OK && pRenderTarget != NULL) {
403 IWineD3DResource_GetParent((IWineD3DResource *)pRenderTarget,(IUnknown**)ppRenderTarget);
404 IWineD3DResource_Release((IWineD3DResource *)pRenderTarget);
405 } else {
406 FIXME("Call to IWineD3DDevice_GetRenderTarget failed\n");
407 *ppRenderTarget = NULL;
409 return hr;
412 static HRESULT WINAPI IDirect3DDevice9Impl_SetDepthStencilSurface(LPDIRECT3DDEVICE9 iface, IDirect3DSurface9* pZStencilSurface) {
413 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
414 IDirect3DSurface9Impl *pSurface;
416 TRACE("(%p) Relay\n" , This);
418 pSurface = (IDirect3DSurface9Impl*)pZStencilSurface;
419 return IWineD3DDevice_SetDepthStencilSurface(This->WineD3DDevice,NULL==pSurface?NULL:(IWineD3DSurface*)pSurface->wineD3DSurface);
422 static HRESULT WINAPI IDirect3DDevice9Impl_GetDepthStencilSurface(LPDIRECT3DDEVICE9 iface, IDirect3DSurface9 **ppZStencilSurface) {
423 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
424 HRESULT hr = D3D_OK;
425 IWineD3DSurface *pZStencilSurface;
427 TRACE("(%p) Relay\n" , This);
428 if(ppZStencilSurface == NULL){
429 return D3DERR_INVALIDCALL;
432 hr=IWineD3DDevice_GetDepthStencilSurface(This->WineD3DDevice,&pZStencilSurface);
433 if(hr == D3D_OK && pZStencilSurface != NULL){
434 IWineD3DResource_GetParent((IWineD3DResource *)pZStencilSurface,(IUnknown**)ppZStencilSurface);
435 IWineD3DResource_Release((IWineD3DResource *)pZStencilSurface);
436 }else{
437 FIXME("Call to IWineD3DDevice_GetRenderTarget failed\n");
438 *ppZStencilSurface = NULL;
440 return D3D_OK;
443 static HRESULT WINAPI IDirect3DDevice9Impl_BeginScene(LPDIRECT3DDEVICE9 iface) {
444 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
445 TRACE("(%p) Relay\n" , This);
446 return IWineD3DDevice_BeginScene(This->WineD3DDevice);
449 static HRESULT WINAPI IDirect3DDevice9Impl_EndScene(LPDIRECT3DDEVICE9 iface) {
450 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
451 TRACE("(%p) Relay\n" , This);
452 return IWineD3DDevice_EndScene(This->WineD3DDevice);
456 static HRESULT WINAPI IDirect3DDevice9Impl_Clear(LPDIRECT3DDEVICE9 iface, DWORD Count, CONST D3DRECT* pRects, DWORD Flags, D3DCOLOR Color, float Z, DWORD Stencil) {
457 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
458 TRACE("(%p) Relay\n" , This);
459 return IWineD3DDevice_Clear(This->WineD3DDevice, Count, pRects, Flags, Color, Z, Stencil);
462 static HRESULT WINAPI IDirect3DDevice9Impl_SetTransform(LPDIRECT3DDEVICE9 iface, D3DTRANSFORMSTATETYPE State, CONST D3DMATRIX* lpMatrix) {
463 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
464 TRACE("(%p) Relay\n" , This);
465 return IWineD3DDevice_SetTransform(This->WineD3DDevice, State, lpMatrix);
468 static HRESULT WINAPI IDirect3DDevice9Impl_GetTransform(LPDIRECT3DDEVICE9 iface, D3DTRANSFORMSTATETYPE State, D3DMATRIX* pMatrix) {
469 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
470 TRACE("(%p) Relay\n" , This);
471 return IWineD3DDevice_GetTransform(This->WineD3DDevice, State, pMatrix);
474 static HRESULT WINAPI IDirect3DDevice9Impl_MultiplyTransform(LPDIRECT3DDEVICE9 iface, D3DTRANSFORMSTATETYPE State, CONST D3DMATRIX* pMatrix) {
475 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
476 TRACE("(%p) Relay\n" , This);
477 return IWineD3DDevice_MultiplyTransform(This->WineD3DDevice, State, pMatrix);
480 static HRESULT WINAPI IDirect3DDevice9Impl_SetViewport(LPDIRECT3DDEVICE9 iface, CONST D3DVIEWPORT9* pViewport) {
481 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
482 TRACE("(%p) Relay\n" , This);
483 return IWineD3DDevice_SetViewport(This->WineD3DDevice, (const WINED3DVIEWPORT *)pViewport);
486 static HRESULT WINAPI IDirect3DDevice9Impl_GetViewport(LPDIRECT3DDEVICE9 iface, D3DVIEWPORT9* pViewport) {
487 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
488 TRACE("(%p) Relay\n" , This);
489 return IWineD3DDevice_GetViewport(This->WineD3DDevice, (WINED3DVIEWPORT *)pViewport);
492 static HRESULT WINAPI IDirect3DDevice9Impl_SetMaterial(LPDIRECT3DDEVICE9 iface, CONST D3DMATERIAL9* pMaterial) {
493 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
494 TRACE("(%p) Relay\n" , This);
495 return IWineD3DDevice_SetMaterial(This->WineD3DDevice, (const WINED3DMATERIAL *)pMaterial);
498 static HRESULT WINAPI IDirect3DDevice9Impl_GetMaterial(LPDIRECT3DDEVICE9 iface, D3DMATERIAL9* pMaterial) {
499 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
500 TRACE("(%p) Relay\n" , This);
501 return IWineD3DDevice_GetMaterial(This->WineD3DDevice, (WINED3DMATERIAL *)pMaterial);
504 static HRESULT WINAPI IDirect3DDevice9Impl_SetLight(LPDIRECT3DDEVICE9 iface, DWORD Index, CONST D3DLIGHT9* pLight) {
505 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
506 TRACE("(%p) Relay\n" , This);
507 return IWineD3DDevice_SetLight(This->WineD3DDevice, Index, (const WINED3DLIGHT *)pLight);
510 static HRESULT WINAPI IDirect3DDevice9Impl_GetLight(LPDIRECT3DDEVICE9 iface, DWORD Index, D3DLIGHT9* pLight) {
511 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
512 TRACE("(%p) Relay\n" , This);
513 return IWineD3DDevice_GetLight(This->WineD3DDevice, Index, (WINED3DLIGHT *)pLight);
516 static HRESULT WINAPI IDirect3DDevice9Impl_LightEnable(LPDIRECT3DDEVICE9 iface, DWORD Index, BOOL Enable) {
517 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
518 TRACE("(%p) Relay\n" , This);
519 return IWineD3DDevice_SetLightEnable(This->WineD3DDevice, Index, Enable);
522 static HRESULT WINAPI IDirect3DDevice9Impl_GetLightEnable(LPDIRECT3DDEVICE9 iface, DWORD Index, BOOL* pEnable) {
523 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
524 TRACE("(%p) Relay\n" , This);
525 return IWineD3DDevice_GetLightEnable(This->WineD3DDevice, Index, pEnable);
528 static HRESULT WINAPI IDirect3DDevice9Impl_SetClipPlane(LPDIRECT3DDEVICE9 iface, DWORD Index, CONST float* pPlane) {
529 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
530 TRACE("(%p) Relay\n" , This);
531 return IWineD3DDevice_SetClipPlane(This->WineD3DDevice, Index, pPlane);
534 static HRESULT WINAPI IDirect3DDevice9Impl_GetClipPlane(LPDIRECT3DDEVICE9 iface, DWORD Index, float* pPlane) {
535 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
536 TRACE("(%p) Relay\n" , This);
537 return IWineD3DDevice_GetClipPlane(This->WineD3DDevice, Index, pPlane);
540 static HRESULT WINAPI IDirect3DDevice9Impl_SetRenderState(LPDIRECT3DDEVICE9 iface, D3DRENDERSTATETYPE State, DWORD Value) {
541 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
542 TRACE("(%p) Relay\n" , This);
543 return IWineD3DDevice_SetRenderState(This->WineD3DDevice, State, Value);
546 static HRESULT WINAPI IDirect3DDevice9Impl_GetRenderState(LPDIRECT3DDEVICE9 iface, D3DRENDERSTATETYPE State, DWORD* pValue) {
547 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
548 TRACE("(%p) Relay\n" , This);
549 return IWineD3DDevice_GetRenderState(This->WineD3DDevice, State, pValue);
552 static HRESULT WINAPI IDirect3DDevice9Impl_SetClipStatus(LPDIRECT3DDEVICE9 iface, CONST D3DCLIPSTATUS9* pClipStatus) {
553 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
554 TRACE("(%p) Relay\n" , This);
555 return IWineD3DDevice_SetClipStatus(This->WineD3DDevice, (const WINED3DCLIPSTATUS *)pClipStatus);
558 static HRESULT WINAPI IDirect3DDevice9Impl_GetClipStatus(LPDIRECT3DDEVICE9 iface, D3DCLIPSTATUS9* pClipStatus) {
559 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
560 TRACE("(%p) Relay\n" , This);
561 return IWineD3DDevice_GetClipStatus(This->WineD3DDevice, (WINED3DCLIPSTATUS *)pClipStatus);
564 static HRESULT WINAPI IDirect3DDevice9Impl_GetTexture(LPDIRECT3DDEVICE9 iface, DWORD Stage, IDirect3DBaseTexture9 **ppTexture) {
565 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
566 IWineD3DBaseTexture *retTexture = NULL;
567 HRESULT rc = D3D_OK;
569 TRACE("(%p) Relay\n" , This);
571 if(ppTexture == NULL){
572 return D3DERR_INVALIDCALL;
575 rc = IWineD3DDevice_GetTexture(This->WineD3DDevice, Stage, (IWineD3DBaseTexture **)&retTexture);
576 if (rc == D3D_OK && NULL != retTexture) {
577 IWineD3DBaseTexture_GetParent(retTexture, (IUnknown **)ppTexture);
578 IWineD3DBaseTexture_Release(retTexture);
579 }else{
580 FIXME("Call to get texture (%ld) failed (%p)\n", Stage, retTexture);
581 *ppTexture = NULL;
583 return rc;
586 static HRESULT WINAPI IDirect3DDevice9Impl_SetTexture(LPDIRECT3DDEVICE9 iface, DWORD Stage, IDirect3DBaseTexture9* pTexture) {
587 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
588 TRACE("(%p) Relay %ld %p\n" , This, Stage, pTexture);
589 return IWineD3DDevice_SetTexture(This->WineD3DDevice, Stage,
590 pTexture==NULL ? NULL:((IDirect3DBaseTexture9Impl *)pTexture)->wineD3DBaseTexture);
593 static HRESULT WINAPI IDirect3DDevice9Impl_GetTextureStageState(LPDIRECT3DDEVICE9 iface, DWORD Stage, D3DTEXTURESTAGESTATETYPE Type, DWORD* pValue) {
594 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
595 TRACE("(%p) Relay\n" , This);
596 return IWineD3DDevice_GetTextureStageState(This->WineD3DDevice, Stage, Type, pValue);
599 static HRESULT WINAPI IDirect3DDevice9Impl_SetTextureStageState(LPDIRECT3DDEVICE9 iface, DWORD Stage, D3DTEXTURESTAGESTATETYPE Type, DWORD Value) {
600 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
601 TRACE("(%p) Relay\n" , This);
602 return IWineD3DDevice_SetTextureStageState(This->WineD3DDevice, Stage, Type, Value);
605 static HRESULT WINAPI IDirect3DDevice9Impl_GetSamplerState(LPDIRECT3DDEVICE9 iface, DWORD Sampler, D3DSAMPLERSTATETYPE Type, DWORD* pValue) {
606 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
607 TRACE("(%p) Relay\n" , This);
608 return IWineD3DDevice_GetSamplerState(This->WineD3DDevice, Sampler, Type, pValue);
611 static HRESULT WINAPI IDirect3DDevice9Impl_SetSamplerState(LPDIRECT3DDEVICE9 iface, DWORD Sampler, D3DSAMPLERSTATETYPE Type, DWORD Value) {
612 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
613 TRACE("(%p) Relay\n" , This);
614 return IWineD3DDevice_SetSamplerState(This->WineD3DDevice, Sampler, Type, Value);
617 static HRESULT WINAPI IDirect3DDevice9Impl_ValidateDevice(LPDIRECT3DDEVICE9 iface, DWORD* pNumPasses) {
618 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
619 TRACE("(%p) Relay\n" , This);
620 return IWineD3DDevice_ValidateDevice(This->WineD3DDevice, pNumPasses);
623 static HRESULT WINAPI IDirect3DDevice9Impl_SetPaletteEntries(LPDIRECT3DDEVICE9 iface, UINT PaletteNumber, CONST PALETTEENTRY* pEntries) {
624 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
625 TRACE("(%p) Relay\n" , This);
626 return IWineD3DDevice_SetPaletteEntries(This->WineD3DDevice, PaletteNumber, pEntries);
629 static HRESULT WINAPI IDirect3DDevice9Impl_GetPaletteEntries(LPDIRECT3DDEVICE9 iface, UINT PaletteNumber, PALETTEENTRY* pEntries) {
630 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
631 TRACE("(%p) Relay\n" , This);
632 return IWineD3DDevice_GetPaletteEntries(This->WineD3DDevice, PaletteNumber, pEntries);
635 static HRESULT WINAPI IDirect3DDevice9Impl_SetCurrentTexturePalette(LPDIRECT3DDEVICE9 iface, UINT PaletteNumber) {
636 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
637 TRACE("(%p) Relay\n" , This);
638 return IWineD3DDevice_SetCurrentTexturePalette(This->WineD3DDevice, PaletteNumber);
641 static HRESULT WINAPI IDirect3DDevice9Impl_GetCurrentTexturePalette(LPDIRECT3DDEVICE9 iface, UINT* PaletteNumber) {
642 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
643 TRACE("(%p) Relay\n" , This);
644 return IWineD3DDevice_GetCurrentTexturePalette(This->WineD3DDevice, PaletteNumber);
647 static HRESULT WINAPI IDirect3DDevice9Impl_SetScissorRect(LPDIRECT3DDEVICE9 iface, CONST RECT* pRect) {
648 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
649 TRACE("(%p) Relay\n" , This);
650 return IWineD3DDevice_SetScissorRect(This->WineD3DDevice, pRect);
653 static HRESULT WINAPI IDirect3DDevice9Impl_GetScissorRect(LPDIRECT3DDEVICE9 iface, RECT* pRect) {
654 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
655 TRACE("(%p) Relay\n" , This);
656 return IWineD3DDevice_GetScissorRect(This->WineD3DDevice, pRect);
659 static HRESULT WINAPI IDirect3DDevice9Impl_SetSoftwareVertexProcessing(LPDIRECT3DDEVICE9 iface, BOOL bSoftware) {
660 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
661 TRACE("(%p) Relay\n" , This);
662 return IWineD3DDevice_SetSoftwareVertexProcessing(This->WineD3DDevice, bSoftware);
665 static BOOL WINAPI IDirect3DDevice9Impl_GetSoftwareVertexProcessing(LPDIRECT3DDEVICE9 iface) {
666 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
667 TRACE("(%p) Relay\n" , This);
668 return IWineD3DDevice_GetSoftwareVertexProcessing(This->WineD3DDevice);
671 static HRESULT WINAPI IDirect3DDevice9Impl_SetNPatchMode(LPDIRECT3DDEVICE9 iface, float nSegments) {
672 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
673 TRACE("(%p) Relay\n" , This);
674 return IWineD3DDevice_SetNPatchMode(This->WineD3DDevice, nSegments);
677 static float WINAPI IDirect3DDevice9Impl_GetNPatchMode(LPDIRECT3DDEVICE9 iface) {
678 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
679 TRACE("(%p) Relay\n" , This);
680 return IWineD3DDevice_GetNPatchMode(This->WineD3DDevice);
683 static HRESULT WINAPI IDirect3DDevice9Impl_DrawPrimitive(LPDIRECT3DDEVICE9 iface, D3DPRIMITIVETYPE PrimitiveType, UINT StartVertex, UINT PrimitiveCount) {
684 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
685 TRACE("(%p) Relay\n" , This);
686 return IWineD3DDevice_DrawPrimitive(This->WineD3DDevice, PrimitiveType, StartVertex, PrimitiveCount);
689 static HRESULT WINAPI IDirect3DDevice9Impl_DrawIndexedPrimitive(LPDIRECT3DDEVICE9 iface, D3DPRIMITIVETYPE PrimitiveType,
690 INT BaseVertexIndex, UINT MinVertexIndex, UINT NumVertices, UINT startIndex, UINT primCount) {
691 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
692 TRACE("(%p) Relay\n" , This);
693 return IWineD3DDevice_DrawIndexedPrimitive(This->WineD3DDevice, PrimitiveType, BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount);
696 static HRESULT WINAPI IDirect3DDevice9Impl_DrawPrimitiveUP(LPDIRECT3DDEVICE9 iface, D3DPRIMITIVETYPE PrimitiveType, UINT PrimitiveCount, CONST void* pVertexStreamZeroData, UINT VertexStreamZeroStride) {
697 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
698 TRACE("(%p) Relay\n" , This);
699 return IWineD3DDevice_DrawPrimitiveUP(This->WineD3DDevice, PrimitiveType, PrimitiveCount, pVertexStreamZeroData, VertexStreamZeroStride);
702 static HRESULT WINAPI IDirect3DDevice9Impl_DrawIndexedPrimitiveUP(LPDIRECT3DDEVICE9 iface, D3DPRIMITIVETYPE PrimitiveType, UINT MinVertexIndex,
703 UINT NumVertexIndices, UINT PrimitiveCount, CONST void* pIndexData,
704 D3DFORMAT IndexDataFormat, CONST void* pVertexStreamZeroData, UINT VertexStreamZeroStride) {
705 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
706 TRACE("(%p) Relay\n" , This);
707 return IWineD3DDevice_DrawIndexedPrimitiveUP(This->WineD3DDevice, PrimitiveType, MinVertexIndex, NumVertexIndices, PrimitiveCount,
708 pIndexData, IndexDataFormat, pVertexStreamZeroData, VertexStreamZeroStride);
711 static HRESULT WINAPI IDirect3DDevice9Impl_ProcessVertices(LPDIRECT3DDEVICE9 iface, UINT SrcStartIndex, UINT DestIndex, UINT VertexCount, IDirect3DVertexBuffer9* pDestBuffer, IDirect3DVertexDeclaration9* pVertexDecl, DWORD Flags) {
712 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
713 TRACE("(%p) Relay\n" , This);
714 return IWineD3DDevice_ProcessVertices(This->WineD3DDevice,SrcStartIndex, DestIndex, VertexCount, ((IDirect3DVertexBuffer9Impl *)pDestBuffer)->wineD3DVertexBuffer, ((IDirect3DVertexBuffer9Impl *)pVertexDecl)->wineD3DVertexBuffer, Flags);
717 HRESULT WINAPI IDirect3DDevice9Impl_SetFVF(LPDIRECT3DDEVICE9 iface, DWORD FVF) {
718 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
719 TRACE("(%p) Relay\n" , This);
721 if (0 != FVF) {
722 HRESULT hr;
723 D3DVERTEXELEMENT9* elements = NULL;
724 IDirect3DVertexDeclaration9* pDecl = NULL;
726 hr = vdecl_convert_fvf(FVF, &elements);
727 if (hr != S_OK) goto exit;
729 hr = IDirect3DDevice9Impl_CreateVertexDeclaration(iface, elements, &pDecl);
730 if (hr != S_OK) goto exit;
732 hr = IDirect3DDevice9Impl_SetVertexDeclaration(iface, pDecl);
733 if (hr != S_OK) goto exit;
734 pDecl = NULL;
736 exit:
737 HeapFree(GetProcessHeap(), 0, elements);
738 if (pDecl) IUnknown_Release(pDecl);
739 if (hr != S_OK) return hr;
742 return IWineD3DDevice_SetFVF(This->WineD3DDevice, FVF);
745 HRESULT WINAPI IDirect3DDevice9Impl_GetFVF(LPDIRECT3DDEVICE9 iface, DWORD* pFVF) {
746 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
747 TRACE("(%p) Relay\n" , This);
748 return IWineD3DDevice_GetFVF(This->WineD3DDevice, pFVF);
751 HRESULT WINAPI IDirect3DDevice9Impl_SetStreamSource(LPDIRECT3DDEVICE9 iface, UINT StreamNumber, IDirect3DVertexBuffer9* pStreamData, UINT OffsetInBytes, UINT Stride) {
752 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
753 TRACE("(%p) Relay\n" , This);
754 return IWineD3DDevice_SetStreamSource(This->WineD3DDevice, StreamNumber,
755 pStreamData==NULL ? NULL:((IDirect3DVertexBuffer9Impl *)pStreamData)->wineD3DVertexBuffer,
756 OffsetInBytes, Stride);
759 HRESULT WINAPI IDirect3DDevice9Impl_GetStreamSource(LPDIRECT3DDEVICE9 iface, UINT StreamNumber, IDirect3DVertexBuffer9 **pStream, UINT* OffsetInBytes, UINT* pStride) {
760 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
761 IWineD3DVertexBuffer *retStream = NULL;
762 HRESULT rc = D3D_OK;
764 TRACE("(%p) Relay\n" , This);
766 if(pStream == NULL){
767 return D3DERR_INVALIDCALL;
770 rc = IWineD3DDevice_GetStreamSource(This->WineD3DDevice, StreamNumber, (IWineD3DVertexBuffer **)&retStream, OffsetInBytes, pStride);
771 if (rc == D3D_OK && NULL != retStream) {
772 IWineD3DVertexBuffer_GetParent(retStream, (IUnknown **)pStream);
773 IWineD3DVertexBuffer_Release(retStream);
774 }else{
775 FIXME("Call to GetStreamSource failed %p %p\n", OffsetInBytes, pStride);
776 *pStream = NULL;
778 return rc;
781 static HRESULT WINAPI IDirect3DDevice9Impl_SetStreamSourceFreq(LPDIRECT3DDEVICE9 iface, UINT StreamNumber, UINT Divider) {
782 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
783 TRACE("(%p) Relay\n" , This);
784 IWineD3DDevice_SetStreamSourceFreq(This->WineD3DDevice, StreamNumber, Divider);
785 return D3D_OK;
788 static HRESULT WINAPI IDirect3DDevice9Impl_GetStreamSourceFreq(LPDIRECT3DDEVICE9 iface, UINT StreamNumber, UINT* Divider) {
789 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
790 TRACE("(%p) Relay\n" , This);
791 return IWineD3DDevice_GetStreamSourceFreq(This->WineD3DDevice, StreamNumber, Divider);
792 return D3D_OK;
795 static HRESULT WINAPI IDirect3DDevice9Impl_SetIndices(LPDIRECT3DDEVICE9 iface, IDirect3DIndexBuffer9* pIndexData) {
796 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
797 TRACE("(%p) Relay\n", This);
798 return IWineD3DDevice_SetIndices(This->WineD3DDevice,
799 pIndexData==NULL ? NULL:((IDirect3DIndexBuffer9Impl *)pIndexData)->wineD3DIndexBuffer,
803 static HRESULT WINAPI IDirect3DDevice9Impl_GetIndices(LPDIRECT3DDEVICE9 iface, IDirect3DIndexBuffer9 **ppIndexData) {
804 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
805 IWineD3DIndexBuffer *retIndexData = NULL;
806 HRESULT rc = D3D_OK;
807 UINT tmp;
809 TRACE("(%p) Relay\n", This);
811 if(ppIndexData == NULL){
812 return D3DERR_INVALIDCALL;
815 rc = IWineD3DDevice_GetIndices(This->WineD3DDevice, &retIndexData, &tmp);
816 if (rc == D3D_OK && NULL != retIndexData) {
817 IWineD3DVertexBuffer_GetParent(retIndexData, (IUnknown **)ppIndexData);
818 IWineD3DVertexBuffer_Release(retIndexData);
819 }else{
820 if(rc != D3D_OK) FIXME("Call to GetIndices failed\n");
821 *ppIndexData = NULL;
823 return rc;
826 static HRESULT WINAPI IDirect3DDevice9Impl_DrawRectPatch(LPDIRECT3DDEVICE9 iface, UINT Handle, CONST float* pNumSegs, CONST D3DRECTPATCH_INFO* pRectPatchInfo) {
827 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
828 TRACE("(%p) Relay\n", This);
829 return IWineD3DDevice_DrawRectPatch(This->WineD3DDevice, Handle, pNumSegs, (WINED3DRECTPATCH_INFO *)pRectPatchInfo);
831 /*http://msdn.microsoft.com/library/default.asp?url=/library/en-us/directx9_c/directx/graphics/reference/d3d/interfaces/idirect3ddevice9/DrawTriPatch.asp*/
832 static HRESULT WINAPI IDirect3DDevice9Impl_DrawTriPatch(LPDIRECT3DDEVICE9 iface, UINT Handle, CONST float* pNumSegs, CONST D3DTRIPATCH_INFO* pTriPatchInfo) {
833 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
834 TRACE("(%p) Relay\n", This);
835 return IWineD3DDevice_DrawTriPatch(This->WineD3DDevice, Handle, pNumSegs, (WINED3DTRIPATCH_INFO *) pTriPatchInfo);
838 static HRESULT WINAPI IDirect3DDevice9Impl_DeletePatch(LPDIRECT3DDEVICE9 iface, UINT Handle) {
839 IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
840 TRACE("(%p) Relay\n", This);
841 return IWineD3DDevice_DeletePatch(This->WineD3DDevice, Handle);
844 const IDirect3DDevice9Vtbl Direct3DDevice9_Vtbl =
846 /* IUnknown */
847 IDirect3DDevice9Impl_QueryInterface,
848 IDirect3DDevice9Impl_AddRef,
849 IDirect3DDevice9Impl_Release,
850 /* IDirect3DDevice9 */
851 IDirect3DDevice9Impl_TestCooperativeLevel,
852 IDirect3DDevice9Impl_GetAvailableTextureMem,
853 IDirect3DDevice9Impl_EvictManagedResources,
854 IDirect3DDevice9Impl_GetDirect3D,
855 IDirect3DDevice9Impl_GetDeviceCaps,
856 IDirect3DDevice9Impl_GetDisplayMode,
857 IDirect3DDevice9Impl_GetCreationParameters,
858 IDirect3DDevice9Impl_SetCursorProperties,
859 IDirect3DDevice9Impl_SetCursorPosition,
860 IDirect3DDevice9Impl_ShowCursor,
861 IDirect3DDevice9Impl_CreateAdditionalSwapChain,
862 IDirect3DDevice9Impl_GetSwapChain,
863 IDirect3DDevice9Impl_GetNumberOfSwapChains,
864 IDirect3DDevice9Impl_Reset,
865 IDirect3DDevice9Impl_Present,
866 IDirect3DDevice9Impl_GetBackBuffer,
867 IDirect3DDevice9Impl_GetRasterStatus,
868 IDirect3DDevice9Impl_SetDialogBoxMode,
869 IDirect3DDevice9Impl_SetGammaRamp,
870 IDirect3DDevice9Impl_GetGammaRamp,
871 IDirect3DDevice9Impl_CreateTexture,
872 IDirect3DDevice9Impl_CreateVolumeTexture,
873 IDirect3DDevice9Impl_CreateCubeTexture,
874 IDirect3DDevice9Impl_CreateVertexBuffer,
875 IDirect3DDevice9Impl_CreateIndexBuffer,
876 IDirect3DDevice9Impl_CreateRenderTarget,
877 IDirect3DDevice9Impl_CreateDepthStencilSurface,
878 IDirect3DDevice9Impl_UpdateSurface,
879 IDirect3DDevice9Impl_UpdateTexture,
880 IDirect3DDevice9Impl_GetRenderTargetData,
881 IDirect3DDevice9Impl_GetFrontBufferData,
882 IDirect3DDevice9Impl_StretchRect,
883 IDirect3DDevice9Impl_ColorFill,
884 IDirect3DDevice9Impl_CreateOffscreenPlainSurface,
885 IDirect3DDevice9Impl_SetRenderTarget,
886 IDirect3DDevice9Impl_GetRenderTarget,
887 IDirect3DDevice9Impl_SetDepthStencilSurface,
888 IDirect3DDevice9Impl_GetDepthStencilSurface,
889 IDirect3DDevice9Impl_BeginScene,
890 IDirect3DDevice9Impl_EndScene,
891 IDirect3DDevice9Impl_Clear,
892 IDirect3DDevice9Impl_SetTransform,
893 IDirect3DDevice9Impl_GetTransform,
894 IDirect3DDevice9Impl_MultiplyTransform,
895 IDirect3DDevice9Impl_SetViewport,
896 IDirect3DDevice9Impl_GetViewport,
897 IDirect3DDevice9Impl_SetMaterial,
898 IDirect3DDevice9Impl_GetMaterial,
899 IDirect3DDevice9Impl_SetLight,
900 IDirect3DDevice9Impl_GetLight,
901 IDirect3DDevice9Impl_LightEnable,
902 IDirect3DDevice9Impl_GetLightEnable,
903 IDirect3DDevice9Impl_SetClipPlane,
904 IDirect3DDevice9Impl_GetClipPlane,
905 IDirect3DDevice9Impl_SetRenderState,
906 IDirect3DDevice9Impl_GetRenderState,
907 IDirect3DDevice9Impl_CreateStateBlock,
908 IDirect3DDevice9Impl_BeginStateBlock,
909 IDirect3DDevice9Impl_EndStateBlock,
910 IDirect3DDevice9Impl_SetClipStatus,
911 IDirect3DDevice9Impl_GetClipStatus,
912 IDirect3DDevice9Impl_GetTexture,
913 IDirect3DDevice9Impl_SetTexture,
914 IDirect3DDevice9Impl_GetTextureStageState,
915 IDirect3DDevice9Impl_SetTextureStageState,
916 IDirect3DDevice9Impl_GetSamplerState,
917 IDirect3DDevice9Impl_SetSamplerState,
918 IDirect3DDevice9Impl_ValidateDevice,
919 IDirect3DDevice9Impl_SetPaletteEntries,
920 IDirect3DDevice9Impl_GetPaletteEntries,
921 IDirect3DDevice9Impl_SetCurrentTexturePalette,
922 IDirect3DDevice9Impl_GetCurrentTexturePalette,
923 IDirect3DDevice9Impl_SetScissorRect,
924 IDirect3DDevice9Impl_GetScissorRect,
925 IDirect3DDevice9Impl_SetSoftwareVertexProcessing,
926 IDirect3DDevice9Impl_GetSoftwareVertexProcessing,
927 IDirect3DDevice9Impl_SetNPatchMode,
928 IDirect3DDevice9Impl_GetNPatchMode,
929 IDirect3DDevice9Impl_DrawPrimitive,
930 IDirect3DDevice9Impl_DrawIndexedPrimitive,
931 IDirect3DDevice9Impl_DrawPrimitiveUP,
932 IDirect3DDevice9Impl_DrawIndexedPrimitiveUP,
933 IDirect3DDevice9Impl_ProcessVertices,
934 IDirect3DDevice9Impl_CreateVertexDeclaration,
935 IDirect3DDevice9Impl_SetVertexDeclaration,
936 IDirect3DDevice9Impl_GetVertexDeclaration,
937 IDirect3DDevice9Impl_SetFVF,
938 IDirect3DDevice9Impl_GetFVF,
939 IDirect3DDevice9Impl_CreateVertexShader,
940 IDirect3DDevice9Impl_SetVertexShader,
941 IDirect3DDevice9Impl_GetVertexShader,
942 IDirect3DDevice9Impl_SetVertexShaderConstantF,
943 IDirect3DDevice9Impl_GetVertexShaderConstantF,
944 IDirect3DDevice9Impl_SetVertexShaderConstantI,
945 IDirect3DDevice9Impl_GetVertexShaderConstantI,
946 IDirect3DDevice9Impl_SetVertexShaderConstantB,
947 IDirect3DDevice9Impl_GetVertexShaderConstantB,
948 IDirect3DDevice9Impl_SetStreamSource,
949 IDirect3DDevice9Impl_GetStreamSource,
950 IDirect3DDevice9Impl_SetStreamSourceFreq,
951 IDirect3DDevice9Impl_GetStreamSourceFreq,
952 IDirect3DDevice9Impl_SetIndices,
953 IDirect3DDevice9Impl_GetIndices,
954 IDirect3DDevice9Impl_CreatePixelShader,
955 IDirect3DDevice9Impl_SetPixelShader,
956 IDirect3DDevice9Impl_GetPixelShader,
957 IDirect3DDevice9Impl_SetPixelShaderConstantF,
958 IDirect3DDevice9Impl_GetPixelShaderConstantF,
959 IDirect3DDevice9Impl_SetPixelShaderConstantI,
960 IDirect3DDevice9Impl_GetPixelShaderConstantI,
961 IDirect3DDevice9Impl_SetPixelShaderConstantB,
962 IDirect3DDevice9Impl_GetPixelShaderConstantB,
963 IDirect3DDevice9Impl_DrawRectPatch,
964 IDirect3DDevice9Impl_DrawTriPatch,
965 IDirect3DDevice9Impl_DeletePatch,
966 IDirect3DDevice9Impl_CreateQuery
970 /* Internal function called back during the CreateDevice to create a render target */
971 HRESULT WINAPI D3D9CB_CreateSurface(IUnknown *device, UINT Width, UINT Height,
972 WINED3DFORMAT Format, DWORD Usage, WINED3DPOOL Pool, UINT Level,
973 IWineD3DSurface** ppSurface, HANDLE* pSharedHandle) {
975 HRESULT res = D3D_OK;
976 IDirect3DSurface9Impl *d3dSurface = NULL;
977 BOOL Lockable = TRUE;
979 if((Pool == D3DPOOL_DEFAULT && Usage != D3DUSAGE_DYNAMIC))
980 Lockable = FALSE;
982 TRACE("relay\n");
983 res = IDirect3DDevice9Impl_CreateSurface((IDirect3DDevice9 *)device, Width, Height, (D3DFORMAT)Format,
984 Lockable, FALSE/*Discard*/, Level, (IDirect3DSurface9 **)&d3dSurface, D3DRTYPE_SURFACE,
985 Usage, (D3DPOOL) Pool, D3DMULTISAMPLE_NONE, 0 /* MultisampleQuality */, pSharedHandle);
987 if (SUCCEEDED(res)) {
988 *ppSurface = d3dSurface->wineD3DSurface;
989 IUnknown_Release(d3dSurface->parentDevice);
990 d3dSurface->parentDevice = NULL;
991 } else {
992 FIXME("(%p) IDirect3DDevice9_CreateSurface failed\n", device);
994 return res;