2 * IDirect3DDevice8 implementation
4 * Copyright 2002-2004 Jason Edmeades
5 * Copyright 2004 Christian Costa
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #define NONAMELESSUNION
28 #define NONAMELESSSTRUCT
33 #include "wine/debug.h"
35 #include "d3d8_private.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(d3d8
);
39 D3DFORMAT
d3dformat_from_wined3dformat(WINED3DFORMAT format
)
41 BYTE
*c
= (BYTE
*)&format
;
43 /* Don't translate FOURCC formats */
44 if (isprint(c
[0]) && isprint(c
[1]) && isprint(c
[2]) && isprint(c
[3])) return format
;
48 case WINED3DFMT_UNKNOWN
: return D3DFMT_UNKNOWN
;
49 case WINED3DFMT_R8G8B8
: return D3DFMT_R8G8B8
;
50 case WINED3DFMT_A8R8G8B8
: return D3DFMT_A8R8G8B8
;
51 case WINED3DFMT_X8R8G8B8
: return D3DFMT_X8R8G8B8
;
52 case WINED3DFMT_R5G6B5
: return D3DFMT_R5G6B5
;
53 case WINED3DFMT_X1R5G5B5
: return D3DFMT_X1R5G5B5
;
54 case WINED3DFMT_A1R5G5B5
: return D3DFMT_A1R5G5B5
;
55 case WINED3DFMT_A4R4G4B4
: return D3DFMT_A4R4G4B4
;
56 case WINED3DFMT_R3G3B2
: return D3DFMT_R3G3B2
;
57 case WINED3DFMT_A8_UNORM
: return D3DFMT_A8
;
58 case WINED3DFMT_A8R3G3B2
: return D3DFMT_A8R3G3B2
;
59 case WINED3DFMT_X4R4G4B4
: return D3DFMT_X4R4G4B4
;
60 case WINED3DFMT_R10G10B10A2_UNORM
: return D3DFMT_A2B10G10R10
;
61 case WINED3DFMT_R16G16_UNORM
: return D3DFMT_G16R16
;
62 case WINED3DFMT_A8P8
: return D3DFMT_A8P8
;
63 case WINED3DFMT_P8
: return D3DFMT_P8
;
64 case WINED3DFMT_L8
: return D3DFMT_L8
;
65 case WINED3DFMT_A8L8
: return D3DFMT_A8L8
;
66 case WINED3DFMT_A4L4
: return D3DFMT_A4L4
;
67 case WINED3DFMT_R8G8_SNORM
: return D3DFMT_V8U8
;
68 case WINED3DFMT_L6V5U5
: return D3DFMT_L6V5U5
;
69 case WINED3DFMT_X8L8V8U8
: return D3DFMT_X8L8V8U8
;
70 case WINED3DFMT_R8G8B8A8_SNORM
: return D3DFMT_Q8W8V8U8
;
71 case WINED3DFMT_R16G16_SNORM
: return D3DFMT_V16U16
;
72 case WINED3DFMT_A2W10V10U10
: return D3DFMT_A2W10V10U10
;
73 case WINED3DFMT_D16_LOCKABLE
: return D3DFMT_D16_LOCKABLE
;
74 case WINED3DFMT_D32
: return D3DFMT_D32
;
75 case WINED3DFMT_D15S1
: return D3DFMT_D15S1
;
76 case WINED3DFMT_D24S8
: return D3DFMT_D24S8
;
77 case WINED3DFMT_D24X8
: return D3DFMT_D24X8
;
78 case WINED3DFMT_D24X4S4
: return D3DFMT_D24X4S4
;
79 case WINED3DFMT_D16_UNORM
: return D3DFMT_D16
;
80 case WINED3DFMT_VERTEXDATA
: return D3DFMT_VERTEXDATA
;
81 case WINED3DFMT_R16_UINT
: return D3DFMT_INDEX16
;
82 case WINED3DFMT_R32_UINT
: return D3DFMT_INDEX32
;
84 FIXME("Unhandled WINED3DFORMAT %#x\n", format
);
85 return D3DFMT_UNKNOWN
;
89 WINED3DFORMAT
wined3dformat_from_d3dformat(D3DFORMAT format
)
91 BYTE
*c
= (BYTE
*)&format
;
93 /* Don't translate FOURCC formats */
94 if (isprint(c
[0]) && isprint(c
[1]) && isprint(c
[2]) && isprint(c
[3])) return format
;
98 case D3DFMT_UNKNOWN
: return WINED3DFMT_UNKNOWN
;
99 case D3DFMT_R8G8B8
: return WINED3DFMT_R8G8B8
;
100 case D3DFMT_A8R8G8B8
: return WINED3DFMT_A8R8G8B8
;
101 case D3DFMT_X8R8G8B8
: return WINED3DFMT_X8R8G8B8
;
102 case D3DFMT_R5G6B5
: return WINED3DFMT_R5G6B5
;
103 case D3DFMT_X1R5G5B5
: return WINED3DFMT_X1R5G5B5
;
104 case D3DFMT_A1R5G5B5
: return WINED3DFMT_A1R5G5B5
;
105 case D3DFMT_A4R4G4B4
: return WINED3DFMT_A4R4G4B4
;
106 case D3DFMT_R3G3B2
: return WINED3DFMT_R3G3B2
;
107 case D3DFMT_A8
: return WINED3DFMT_A8_UNORM
;
108 case D3DFMT_A8R3G3B2
: return WINED3DFMT_A8R3G3B2
;
109 case D3DFMT_X4R4G4B4
: return WINED3DFMT_X4R4G4B4
;
110 case D3DFMT_A2B10G10R10
: return WINED3DFMT_R10G10B10A2_UNORM
;
111 case D3DFMT_G16R16
: return WINED3DFMT_R16G16_UNORM
;
112 case D3DFMT_A8P8
: return WINED3DFMT_A8P8
;
113 case D3DFMT_P8
: return WINED3DFMT_P8
;
114 case D3DFMT_L8
: return WINED3DFMT_L8
;
115 case D3DFMT_A8L8
: return WINED3DFMT_A8L8
;
116 case D3DFMT_A4L4
: return WINED3DFMT_A4L4
;
117 case D3DFMT_V8U8
: return WINED3DFMT_R8G8_SNORM
;
118 case D3DFMT_L6V5U5
: return WINED3DFMT_L6V5U5
;
119 case D3DFMT_X8L8V8U8
: return WINED3DFMT_X8L8V8U8
;
120 case D3DFMT_Q8W8V8U8
: return WINED3DFMT_R8G8B8A8_SNORM
;
121 case D3DFMT_V16U16
: return WINED3DFMT_R16G16_SNORM
;
122 case D3DFMT_A2W10V10U10
: return WINED3DFMT_A2W10V10U10
;
123 case D3DFMT_D16_LOCKABLE
: return WINED3DFMT_D16_LOCKABLE
;
124 case D3DFMT_D32
: return WINED3DFMT_D32
;
125 case D3DFMT_D15S1
: return WINED3DFMT_D15S1
;
126 case D3DFMT_D24S8
: return WINED3DFMT_D24S8
;
127 case D3DFMT_D24X8
: return WINED3DFMT_D24X8
;
128 case D3DFMT_D24X4S4
: return WINED3DFMT_D24X4S4
;
129 case D3DFMT_D16
: return WINED3DFMT_D16_UNORM
;
130 case D3DFMT_VERTEXDATA
: return WINED3DFMT_VERTEXDATA
;
131 case D3DFMT_INDEX16
: return WINED3DFMT_R16_UINT
;
132 case D3DFMT_INDEX32
: return WINED3DFMT_R32_UINT
;
134 FIXME("Unhandled D3DFORMAT %#x\n", format
);
135 return WINED3DFMT_UNKNOWN
;
139 static UINT
vertex_count_from_primitive_count(D3DPRIMITIVETYPE primitive_type
, UINT primitive_count
)
141 switch(primitive_type
)
143 case D3DPT_POINTLIST
:
144 return primitive_count
;
147 return primitive_count
* 2;
149 case D3DPT_LINESTRIP
:
150 return primitive_count
+ 1;
152 case D3DPT_TRIANGLELIST
:
153 return primitive_count
* 3;
155 case D3DPT_TRIANGLESTRIP
:
156 case D3DPT_TRIANGLEFAN
:
157 return primitive_count
+ 2;
160 FIXME("Unhandled primitive type %#x\n", primitive_type
);
165 /* Handle table functions */
166 static DWORD
d3d8_allocate_handle(struct d3d8_handle_table
*t
, void *object
)
170 /* Use a free handle */
171 void **entry
= t
->free_entries
;
172 t
->free_entries
= *entry
;
174 return entry
- t
->entries
;
177 if (!(t
->entry_count
< t
->table_size
))
180 UINT new_size
= t
->table_size
+ (t
->table_size
>> 1);
181 void **new_entries
= HeapReAlloc(GetProcessHeap(), 0, t
->entries
, new_size
* sizeof(void *));
182 if (!new_entries
) return D3D8_INVALID_HANDLE
;
183 t
->entries
= new_entries
;
184 t
->table_size
= new_size
;
187 t
->entries
[t
->entry_count
] = object
;
188 return t
->entry_count
++;
191 static void *d3d8_free_handle(struct d3d8_handle_table
*t
, DWORD handle
)
193 void **entry
, *object
;
195 if (handle
>= t
->entry_count
) return NULL
;
197 entry
= &t
->entries
[handle
];
199 *entry
= t
->free_entries
;
200 t
->free_entries
= entry
;
205 static void *d3d8_get_object(struct d3d8_handle_table
*t
, DWORD handle
)
207 if (handle
>= t
->entry_count
) return NULL
;
208 return t
->entries
[handle
];
211 /* IDirect3D IUnknown parts follow: */
212 static HRESULT WINAPI
IDirect3DDevice8Impl_QueryInterface(LPDIRECT3DDEVICE8 iface
,REFIID riid
,LPVOID
*ppobj
)
214 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
216 if (IsEqualGUID(riid
, &IID_IUnknown
)
217 || IsEqualGUID(riid
, &IID_IDirect3DDevice8
)) {
218 IUnknown_AddRef(iface
);
223 if (IsEqualGUID(riid
, &IID_IWineD3DDeviceParent
))
225 IUnknown_AddRef((IUnknown
*)&This
->device_parent_vtbl
);
226 *ppobj
= &This
->device_parent_vtbl
;
230 WARN("(%p)->(%s,%p),not found\n", This
, debugstr_guid(riid
), ppobj
);
232 return E_NOINTERFACE
;
235 static ULONG WINAPI
IDirect3DDevice8Impl_AddRef(LPDIRECT3DDEVICE8 iface
) {
236 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
237 ULONG ref
= InterlockedIncrement(&This
->ref
);
239 TRACE("(%p) : AddRef from %d\n", This
, ref
- 1);
244 static ULONG WINAPI
IDirect3DDevice8Impl_Release(LPDIRECT3DDEVICE8 iface
) {
245 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
248 if (This
->inDestruction
) return 0;
249 ref
= InterlockedDecrement(&This
->ref
);
251 TRACE("(%p) : ReleaseRef to %d\n", This
, ref
);
256 TRACE("Releasing wined3d device %p\n", This
->WineD3DDevice
);
257 EnterCriticalSection(&d3d8_cs
);
258 This
->inDestruction
= TRUE
;
260 for(i
= 0; i
< This
->numConvertedDecls
; i
++) {
261 IDirect3DVertexDeclaration8_Release(This
->decls
[i
].decl
);
263 HeapFree(GetProcessHeap(), 0, This
->decls
);
265 IWineD3DDevice_Uninit3D(This
->WineD3DDevice
, D3D8CB_DestroyDepthStencilSurface
, D3D8CB_DestroySwapChain
);
266 IWineD3DDevice_Release(This
->WineD3DDevice
);
267 HeapFree(GetProcessHeap(), 0, This
->handle_table
.entries
);
268 HeapFree(GetProcessHeap(), 0, This
);
269 LeaveCriticalSection(&d3d8_cs
);
274 /* IDirect3DDevice Interface follow: */
275 static HRESULT WINAPI
IDirect3DDevice8Impl_TestCooperativeLevel(LPDIRECT3DDEVICE8 iface
) {
276 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
279 TRACE("(%p) : Relay\n", This
);
280 EnterCriticalSection(&d3d8_cs
);
281 hr
= IWineD3DDevice_TestCooperativeLevel(This
->WineD3DDevice
);
282 LeaveCriticalSection(&d3d8_cs
);
286 static UINT WINAPI
IDirect3DDevice8Impl_GetAvailableTextureMem(LPDIRECT3DDEVICE8 iface
) {
287 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
290 TRACE("(%p) Relay\n", This
);
291 EnterCriticalSection(&d3d8_cs
);
292 hr
= IWineD3DDevice_GetAvailableTextureMem(This
->WineD3DDevice
);
293 LeaveCriticalSection(&d3d8_cs
);
297 static HRESULT WINAPI
IDirect3DDevice8Impl_ResourceManagerDiscardBytes(LPDIRECT3DDEVICE8 iface
, DWORD Bytes
) {
298 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
301 TRACE("(%p) : Relay bytes(%d)\n", This
, Bytes
);
302 EnterCriticalSection(&d3d8_cs
);
303 hr
= IWineD3DDevice_EvictManagedResources(This
->WineD3DDevice
);
304 LeaveCriticalSection(&d3d8_cs
);
308 static HRESULT WINAPI
IDirect3DDevice8Impl_GetDirect3D(LPDIRECT3DDEVICE8 iface
, IDirect3D8
** ppD3D8
) {
309 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
313 TRACE("(%p) Relay\n", This
);
315 if (NULL
== ppD3D8
) {
316 return D3DERR_INVALIDCALL
;
319 EnterCriticalSection(&d3d8_cs
);
320 hr
= IWineD3DDevice_GetDirect3D(This
->WineD3DDevice
, &pWineD3D
);
321 if (hr
== D3D_OK
&& pWineD3D
!= NULL
)
323 IWineD3D_GetParent(pWineD3D
,(IUnknown
**)ppD3D8
);
324 IWineD3D_Release(pWineD3D
);
326 FIXME("Call to IWineD3DDevice_GetDirect3D failed\n");
329 TRACE("(%p) returning %p\n",This
, *ppD3D8
);
330 LeaveCriticalSection(&d3d8_cs
);
335 static HRESULT WINAPI
IDirect3DDevice8Impl_GetDeviceCaps(LPDIRECT3DDEVICE8 iface
, D3DCAPS8
* pCaps
) {
336 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
337 HRESULT hrc
= D3D_OK
;
338 WINED3DCAPS
*pWineCaps
;
340 TRACE("(%p) : Relay pCaps %p\n", This
, pCaps
);
342 return D3DERR_INVALIDCALL
;
344 pWineCaps
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(WINED3DCAPS
));
345 if(pWineCaps
== NULL
){
346 return D3DERR_INVALIDCALL
; /* well this is what MSDN says to return */
349 EnterCriticalSection(&d3d8_cs
);
350 hrc
= IWineD3DDevice_GetDeviceCaps(This
->WineD3DDevice
, pWineCaps
);
351 LeaveCriticalSection(&d3d8_cs
);
352 WINECAPSTOD3D8CAPS(pCaps
, pWineCaps
)
353 HeapFree(GetProcessHeap(), 0, pWineCaps
);
355 /* D3D8 doesn't support SM 2.0 or higher, so clamp to 1.x */
356 if(pCaps
->PixelShaderVersion
> D3DPS_VERSION(1,4)){
357 pCaps
->PixelShaderVersion
= D3DPS_VERSION(1,4);
359 if(pCaps
->VertexShaderVersion
> D3DVS_VERSION(1,1)){
360 pCaps
->VertexShaderVersion
= D3DVS_VERSION(1,1);
362 pCaps
->MaxVertexShaderConst
= min(D3D8_MAX_VERTEX_SHADER_CONSTANTF
, pCaps
->MaxVertexShaderConst
);
364 TRACE("Returning %p %p\n", This
, pCaps
);
368 static HRESULT WINAPI
IDirect3DDevice8Impl_GetDisplayMode(LPDIRECT3DDEVICE8 iface
, D3DDISPLAYMODE
* pMode
) {
369 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
371 TRACE("(%p) Relay\n", This
);
373 EnterCriticalSection(&d3d8_cs
);
374 hr
= IWineD3DDevice_GetDisplayMode(This
->WineD3DDevice
, 0, (WINED3DDISPLAYMODE
*) pMode
);
375 LeaveCriticalSection(&d3d8_cs
);
377 if (SUCCEEDED(hr
)) pMode
->Format
= d3dformat_from_wined3dformat(pMode
->Format
);
382 static HRESULT WINAPI
IDirect3DDevice8Impl_GetCreationParameters(LPDIRECT3DDEVICE8 iface
, D3DDEVICE_CREATION_PARAMETERS
*pParameters
) {
383 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
385 TRACE("(%p) Relay\n", This
);
387 EnterCriticalSection(&d3d8_cs
);
388 hr
= IWineD3DDevice_GetCreationParameters(This
->WineD3DDevice
, (WINED3DDEVICE_CREATION_PARAMETERS
*) pParameters
);
389 LeaveCriticalSection(&d3d8_cs
);
393 static HRESULT WINAPI
IDirect3DDevice8Impl_SetCursorProperties(LPDIRECT3DDEVICE8 iface
, UINT XHotSpot
, UINT YHotSpot
, IDirect3DSurface8
* pCursorBitmap
) {
394 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
395 IDirect3DSurface8Impl
*pSurface
= (IDirect3DSurface8Impl
*)pCursorBitmap
;
397 TRACE("(%p) Relay\n", This
);
399 WARN("No cursor bitmap, returning WINED3DERR_INVALIDCALL\n");
400 return WINED3DERR_INVALIDCALL
;
403 EnterCriticalSection(&d3d8_cs
);
404 hr
= IWineD3DDevice_SetCursorProperties(This
->WineD3DDevice
,XHotSpot
,YHotSpot
,pSurface
->wineD3DSurface
);
405 LeaveCriticalSection(&d3d8_cs
);
409 static void WINAPI
IDirect3DDevice8Impl_SetCursorPosition(LPDIRECT3DDEVICE8 iface
, UINT XScreenSpace
, UINT YScreenSpace
, DWORD Flags
) {
410 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
411 TRACE("(%p) Relay\n", This
);
413 EnterCriticalSection(&d3d8_cs
);
414 IWineD3DDevice_SetCursorPosition(This
->WineD3DDevice
, XScreenSpace
, YScreenSpace
, Flags
);
415 LeaveCriticalSection(&d3d8_cs
);
418 static BOOL WINAPI
IDirect3DDevice8Impl_ShowCursor(LPDIRECT3DDEVICE8 iface
, BOOL bShow
) {
419 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
421 TRACE("(%p) Relay\n", This
);
423 EnterCriticalSection(&d3d8_cs
);
424 ret
= IWineD3DDevice_ShowCursor(This
->WineD3DDevice
, bShow
);
425 LeaveCriticalSection(&d3d8_cs
);
429 static HRESULT WINAPI
IDirect3DDevice8Impl_CreateAdditionalSwapChain(LPDIRECT3DDEVICE8 iface
, D3DPRESENT_PARAMETERS
* pPresentationParameters
, IDirect3DSwapChain8
** pSwapChain
) {
430 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
431 IDirect3DSwapChain8Impl
* object
;
432 HRESULT hrc
= D3D_OK
;
433 WINED3DPRESENT_PARAMETERS localParameters
;
435 TRACE("(%p) Relay\n", This
);
437 /* Fix the back buffer count */
438 if(pPresentationParameters
->BackBufferCount
== 0) {
439 pPresentationParameters
->BackBufferCount
= 1;
442 object
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*object
));
443 if (NULL
== object
) {
444 FIXME("Allocation of memory failed\n");
446 return D3DERR_OUTOFVIDEOMEMORY
;
449 object
->lpVtbl
= &Direct3DSwapChain8_Vtbl
;
451 /* Allocate an associated WineD3DDevice object */
452 localParameters
.BackBufferWidth
= pPresentationParameters
->BackBufferWidth
;
453 localParameters
.BackBufferHeight
= pPresentationParameters
->BackBufferHeight
;
454 localParameters
.BackBufferFormat
= wined3dformat_from_d3dformat(pPresentationParameters
->BackBufferFormat
);
455 localParameters
.BackBufferCount
= pPresentationParameters
->BackBufferCount
;
456 localParameters
.MultiSampleType
= pPresentationParameters
->MultiSampleType
;
457 localParameters
.MultiSampleQuality
= 0; /* d3d9 only */
458 localParameters
.SwapEffect
= pPresentationParameters
->SwapEffect
;
459 localParameters
.hDeviceWindow
= pPresentationParameters
->hDeviceWindow
;
460 localParameters
.Windowed
= pPresentationParameters
->Windowed
;
461 localParameters
.EnableAutoDepthStencil
= pPresentationParameters
->EnableAutoDepthStencil
;
462 localParameters
.AutoDepthStencilFormat
= wined3dformat_from_d3dformat(pPresentationParameters
->AutoDepthStencilFormat
);
463 localParameters
.Flags
= pPresentationParameters
->Flags
;
464 localParameters
.FullScreen_RefreshRateInHz
= pPresentationParameters
->FullScreen_RefreshRateInHz
;
465 localParameters
.PresentationInterval
= pPresentationParameters
->FullScreen_PresentationInterval
;
466 localParameters
.AutoRestoreDisplayMode
= TRUE
;
468 EnterCriticalSection(&d3d8_cs
);
469 hrc
= IWineD3DDevice_CreateSwapChain(This
->WineD3DDevice
, &localParameters
,
470 &object
->wineD3DSwapChain
, (IUnknown
*)object
, SURFACE_OPENGL
);
471 LeaveCriticalSection(&d3d8_cs
);
473 pPresentationParameters
->BackBufferWidth
= localParameters
.BackBufferWidth
;
474 pPresentationParameters
->BackBufferHeight
= localParameters
.BackBufferHeight
;
475 pPresentationParameters
->BackBufferFormat
= d3dformat_from_wined3dformat(localParameters
.BackBufferFormat
);
476 pPresentationParameters
->BackBufferCount
= localParameters
.BackBufferCount
;
477 pPresentationParameters
->MultiSampleType
= localParameters
.MultiSampleType
;
478 pPresentationParameters
->SwapEffect
= localParameters
.SwapEffect
;
479 pPresentationParameters
->hDeviceWindow
= localParameters
.hDeviceWindow
;
480 pPresentationParameters
->Windowed
= localParameters
.Windowed
;
481 pPresentationParameters
->EnableAutoDepthStencil
= localParameters
.EnableAutoDepthStencil
;
482 pPresentationParameters
->AutoDepthStencilFormat
= d3dformat_from_wined3dformat(localParameters
.AutoDepthStencilFormat
);
483 pPresentationParameters
->Flags
= localParameters
.Flags
;
484 pPresentationParameters
->FullScreen_RefreshRateInHz
= localParameters
.FullScreen_RefreshRateInHz
;
485 pPresentationParameters
->FullScreen_PresentationInterval
= localParameters
.PresentationInterval
;
488 FIXME("(%p) call to IWineD3DDevice_CreateSwapChain failed\n", This
);
489 HeapFree(GetProcessHeap(), 0 , object
);
492 IUnknown_AddRef(iface
);
493 object
->parentDevice
= iface
;
494 *pSwapChain
= (IDirect3DSwapChain8
*)object
;
496 TRACE("(%p) returning %p\n", This
, *pSwapChain
);
500 static HRESULT WINAPI
IDirect3DDevice8Impl_Reset(LPDIRECT3DDEVICE8 iface
, D3DPRESENT_PARAMETERS
* pPresentationParameters
) {
501 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
502 WINED3DPRESENT_PARAMETERS localParameters
;
505 TRACE("(%p) Relay pPresentationParameters(%p)\n", This
, pPresentationParameters
);
507 localParameters
.BackBufferWidth
= pPresentationParameters
->BackBufferWidth
;
508 localParameters
.BackBufferHeight
= pPresentationParameters
->BackBufferHeight
;
509 localParameters
.BackBufferFormat
= wined3dformat_from_d3dformat(pPresentationParameters
->BackBufferFormat
);
510 localParameters
.BackBufferCount
= pPresentationParameters
->BackBufferCount
;
511 localParameters
.MultiSampleType
= pPresentationParameters
->MultiSampleType
;
512 localParameters
.MultiSampleQuality
= 0; /* d3d9 only */
513 localParameters
.SwapEffect
= pPresentationParameters
->SwapEffect
;
514 localParameters
.hDeviceWindow
= pPresentationParameters
->hDeviceWindow
;
515 localParameters
.Windowed
= pPresentationParameters
->Windowed
;
516 localParameters
.EnableAutoDepthStencil
= pPresentationParameters
->EnableAutoDepthStencil
;
517 localParameters
.AutoDepthStencilFormat
= wined3dformat_from_d3dformat(pPresentationParameters
->AutoDepthStencilFormat
);
518 localParameters
.Flags
= pPresentationParameters
->Flags
;
519 localParameters
.FullScreen_RefreshRateInHz
= pPresentationParameters
->FullScreen_RefreshRateInHz
;
520 localParameters
.PresentationInterval
= pPresentationParameters
->FullScreen_PresentationInterval
;
521 localParameters
.AutoRestoreDisplayMode
= TRUE
;
523 EnterCriticalSection(&d3d8_cs
);
524 hr
= IWineD3DDevice_Reset(This
->WineD3DDevice
, &localParameters
);
525 LeaveCriticalSection(&d3d8_cs
);
527 pPresentationParameters
->BackBufferWidth
= localParameters
.BackBufferWidth
;
528 pPresentationParameters
->BackBufferHeight
= localParameters
.BackBufferHeight
;
529 pPresentationParameters
->BackBufferFormat
= d3dformat_from_wined3dformat(localParameters
.BackBufferFormat
);
530 pPresentationParameters
->BackBufferCount
= localParameters
.BackBufferCount
;
531 pPresentationParameters
->MultiSampleType
= localParameters
.MultiSampleType
;
532 pPresentationParameters
->SwapEffect
= localParameters
.SwapEffect
;
533 pPresentationParameters
->hDeviceWindow
= localParameters
.hDeviceWindow
;
534 pPresentationParameters
->Windowed
= localParameters
.Windowed
;
535 pPresentationParameters
->EnableAutoDepthStencil
= localParameters
.EnableAutoDepthStencil
;
536 pPresentationParameters
->AutoDepthStencilFormat
= d3dformat_from_wined3dformat(localParameters
.AutoDepthStencilFormat
);
537 pPresentationParameters
->Flags
= localParameters
.Flags
;
538 pPresentationParameters
->FullScreen_RefreshRateInHz
= localParameters
.FullScreen_RefreshRateInHz
;
539 pPresentationParameters
->FullScreen_PresentationInterval
= localParameters
.PresentationInterval
;
544 static HRESULT WINAPI
IDirect3DDevice8Impl_Present(LPDIRECT3DDEVICE8 iface
, CONST RECT
* pSourceRect
,CONST RECT
* pDestRect
,HWND hDestWindowOverride
,CONST RGNDATA
* pDirtyRegion
) {
545 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
547 TRACE("(%p) Relay\n", This
);
549 EnterCriticalSection(&d3d8_cs
);
550 hr
= IWineD3DDevice_Present(This
->WineD3DDevice
, pSourceRect
, pDestRect
, hDestWindowOverride
, pDirtyRegion
);
551 LeaveCriticalSection(&d3d8_cs
);
555 static HRESULT WINAPI
IDirect3DDevice8Impl_GetBackBuffer(LPDIRECT3DDEVICE8 iface
, UINT BackBuffer
, D3DBACKBUFFER_TYPE Type
, IDirect3DSurface8
** ppBackBuffer
) {
556 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
557 IWineD3DSurface
*retSurface
= NULL
;
560 TRACE("(%p) Relay\n", This
);
562 EnterCriticalSection(&d3d8_cs
);
563 rc
= IWineD3DDevice_GetBackBuffer(This
->WineD3DDevice
, 0, BackBuffer
, (WINED3DBACKBUFFER_TYPE
) Type
, &retSurface
);
564 if (rc
== D3D_OK
&& NULL
!= retSurface
&& NULL
!= ppBackBuffer
) {
565 IWineD3DSurface_GetParent(retSurface
, (IUnknown
**)ppBackBuffer
);
566 IWineD3DSurface_Release(retSurface
);
568 LeaveCriticalSection(&d3d8_cs
);
572 static HRESULT WINAPI
IDirect3DDevice8Impl_GetRasterStatus(LPDIRECT3DDEVICE8 iface
, D3DRASTER_STATUS
* pRasterStatus
) {
573 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
575 TRACE("(%p) Relay\n", This
);
577 EnterCriticalSection(&d3d8_cs
);
578 hr
= IWineD3DDevice_GetRasterStatus(This
->WineD3DDevice
, 0, (WINED3DRASTER_STATUS
*) pRasterStatus
);
579 LeaveCriticalSection(&d3d8_cs
);
583 static void WINAPI
IDirect3DDevice8Impl_SetGammaRamp(LPDIRECT3DDEVICE8 iface
, DWORD Flags
, CONST D3DGAMMARAMP
* pRamp
) {
584 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
585 TRACE("(%p) Relay\n", This
);
587 /* Note: D3DGAMMARAMP is compatible with WINED3DGAMMARAMP */
588 EnterCriticalSection(&d3d8_cs
);
589 IWineD3DDevice_SetGammaRamp(This
->WineD3DDevice
, 0, Flags
, (CONST WINED3DGAMMARAMP
*) pRamp
);
590 LeaveCriticalSection(&d3d8_cs
);
593 static void WINAPI
IDirect3DDevice8Impl_GetGammaRamp(LPDIRECT3DDEVICE8 iface
, D3DGAMMARAMP
* pRamp
) {
594 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
595 TRACE("(%p) Relay\n", This
);
597 /* Note: D3DGAMMARAMP is compatible with WINED3DGAMMARAMP */
598 EnterCriticalSection(&d3d8_cs
);
599 IWineD3DDevice_GetGammaRamp(This
->WineD3DDevice
, 0, (WINED3DGAMMARAMP
*) pRamp
);
600 LeaveCriticalSection(&d3d8_cs
);
603 static HRESULT WINAPI
IDirect3DDevice8Impl_CreateTexture(LPDIRECT3DDEVICE8 iface
, UINT Width
, UINT Height
, UINT Levels
, DWORD Usage
,
604 D3DFORMAT Format
, D3DPOOL Pool
, IDirect3DTexture8
**ppTexture
) {
605 IDirect3DTexture8Impl
*object
;
606 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
607 HRESULT hrc
= D3D_OK
;
609 TRACE("(%p) : W(%d) H(%d), Lvl(%d) d(%d), Fmt(%u), Pool(%d)\n", This
, Width
, Height
, Levels
, Usage
, Format
, Pool
);
611 /* Allocate the storage for the device */
612 object
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(IDirect3DTexture8Impl
));
614 if (NULL
== object
) {
615 FIXME("Allocation of memory failed\n");
616 /* *ppTexture = NULL; */
617 return D3DERR_OUTOFVIDEOMEMORY
;
620 object
->lpVtbl
= &Direct3DTexture8_Vtbl
;
622 EnterCriticalSection(&d3d8_cs
);
623 hrc
= IWineD3DDevice_CreateTexture(This
->WineD3DDevice
, Width
, Height
, Levels
, Usage
& WINED3DUSAGE_MASK
,
624 wined3dformat_from_d3dformat(Format
), Pool
, &object
->wineD3DTexture
, (IUnknown
*)object
);
625 LeaveCriticalSection(&d3d8_cs
);
629 FIXME("(%p) call to IWineD3DDevice_CreateTexture failed\n", This
);
630 HeapFree(GetProcessHeap(), 0, object
);
631 /* *ppTexture = NULL; */
633 IUnknown_AddRef(iface
);
634 object
->parentDevice
= iface
;
635 *ppTexture
= (LPDIRECT3DTEXTURE8
) object
;
636 TRACE("(%p) Created Texture %p, %p\n",This
,object
,object
->wineD3DTexture
);
642 static HRESULT WINAPI
IDirect3DDevice8Impl_CreateVolumeTexture(LPDIRECT3DDEVICE8 iface
,
643 UINT Width
, UINT Height
, UINT Depth
, UINT Levels
, DWORD Usage
,
644 D3DFORMAT Format
, D3DPOOL Pool
, IDirect3DVolumeTexture8
** ppVolumeTexture
) {
646 IDirect3DVolumeTexture8Impl
*object
;
647 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
648 HRESULT hrc
= D3D_OK
;
650 TRACE("(%p) Relay\n", This
);
652 /* Allocate the storage for the device */
653 object
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(IDirect3DVolumeTexture8Impl
));
654 if (NULL
== object
) {
655 FIXME("(%p) allocation of memory failed\n", This
);
656 *ppVolumeTexture
= NULL
;
657 return D3DERR_OUTOFVIDEOMEMORY
;
660 object
->lpVtbl
= &Direct3DVolumeTexture8_Vtbl
;
662 EnterCriticalSection(&d3d8_cs
);
663 hrc
= IWineD3DDevice_CreateVolumeTexture(This
->WineD3DDevice
, Width
, Height
, Depth
, Levels
,
664 Usage
& WINED3DUSAGE_MASK
, wined3dformat_from_d3dformat(Format
),
665 Pool
, &object
->wineD3DVolumeTexture
, (IUnknown
*)object
);
666 LeaveCriticalSection(&d3d8_cs
);
671 FIXME("(%p) call to IWineD3DDevice_CreateVolumeTexture failed\n", This
);
672 HeapFree(GetProcessHeap(), 0, object
);
673 *ppVolumeTexture
= NULL
;
675 IUnknown_AddRef(iface
);
676 object
->parentDevice
= iface
;
677 *ppVolumeTexture
= (LPDIRECT3DVOLUMETEXTURE8
) object
;
679 TRACE("(%p) returning %p\n", This
, *ppVolumeTexture
);
683 static HRESULT WINAPI
IDirect3DDevice8Impl_CreateCubeTexture(LPDIRECT3DDEVICE8 iface
, UINT EdgeLength
, UINT Levels
, DWORD Usage
,
684 D3DFORMAT Format
, D3DPOOL Pool
, IDirect3DCubeTexture8
** ppCubeTexture
) {
686 IDirect3DCubeTexture8Impl
*object
;
687 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
690 TRACE("(%p) : ELen(%d) Lvl(%d) Usage(%d) fmt(%u), Pool(%d)\n" , This
, EdgeLength
, Levels
, Usage
, Format
, Pool
);
692 /* Allocate the storage for the device */
693 object
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*object
));
695 if (NULL
== object
) {
696 FIXME("(%p) allocation of CubeTexture failed\n", This
);
697 *ppCubeTexture
= NULL
;
698 return D3DERR_OUTOFVIDEOMEMORY
;
701 object
->lpVtbl
= &Direct3DCubeTexture8_Vtbl
;
703 EnterCriticalSection(&d3d8_cs
);
704 hr
= IWineD3DDevice_CreateCubeTexture(This
->WineD3DDevice
, EdgeLength
, Levels
, Usage
& WINED3DUSAGE_MASK
,
705 wined3dformat_from_d3dformat(Format
), Pool
, &object
->wineD3DCubeTexture
, (IUnknown
*)object
);
706 LeaveCriticalSection(&d3d8_cs
);
711 FIXME("(%p) call to IWineD3DDevice_CreateCubeTexture failed\n", This
);
712 HeapFree(GetProcessHeap(), 0, object
);
713 *ppCubeTexture
= NULL
;
715 IUnknown_AddRef(iface
);
716 object
->parentDevice
= iface
;
717 *ppCubeTexture
= (LPDIRECT3DCUBETEXTURE8
) object
;
720 TRACE("(%p) returning %p\n",This
, *ppCubeTexture
);
724 static HRESULT WINAPI
IDirect3DDevice8Impl_CreateVertexBuffer(LPDIRECT3DDEVICE8 iface
, UINT Size
, DWORD Usage
, DWORD FVF
, D3DPOOL Pool
, IDirect3DVertexBuffer8
** ppVertexBuffer
) {
725 IDirect3DVertexBuffer8Impl
*object
;
726 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
727 HRESULT hrc
= D3D_OK
;
729 TRACE("(%p) Relay\n", This
);
730 /* Allocate the storage for the device */
731 object
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(IDirect3DVertexBuffer8Impl
));
732 if (NULL
== object
) {
733 FIXME("Allocation of memory failed\n");
734 *ppVertexBuffer
= NULL
;
735 return D3DERR_OUTOFVIDEOMEMORY
;
738 object
->lpVtbl
= &Direct3DVertexBuffer8_Vtbl
;
740 EnterCriticalSection(&d3d8_cs
);
741 hrc
= IWineD3DDevice_CreateVertexBuffer(This
->WineD3DDevice
, Size
, Usage
& WINED3DUSAGE_MASK
,
742 0 /* fvf for ddraw only */, (WINED3DPOOL
)Pool
, &object
->wineD3DVertexBuffer
, (IUnknown
*)object
);
743 LeaveCriticalSection(&d3d8_cs
);
749 FIXME("(%p) call to IWineD3DDevice_CreateVertexBuffer failed\n", This
);
750 HeapFree(GetProcessHeap(), 0, object
);
751 *ppVertexBuffer
= NULL
;
753 IUnknown_AddRef(iface
);
754 object
->parentDevice
= iface
;
755 *ppVertexBuffer
= (LPDIRECT3DVERTEXBUFFER8
) object
;
760 static HRESULT WINAPI
IDirect3DDevice8Impl_CreateIndexBuffer(LPDIRECT3DDEVICE8 iface
, UINT Length
, DWORD Usage
, D3DFORMAT Format
, D3DPOOL Pool
, IDirect3DIndexBuffer8
** ppIndexBuffer
) {
761 IDirect3DIndexBuffer8Impl
*object
;
762 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
763 HRESULT hrc
= D3D_OK
;
765 TRACE("(%p) Relay\n", This
);
766 /* Allocate the storage for the device */
767 object
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*object
));
768 if (NULL
== object
) {
769 FIXME("Allocation of memory failed\n");
770 *ppIndexBuffer
= NULL
;
771 return D3DERR_OUTOFVIDEOMEMORY
;
774 object
->lpVtbl
= &Direct3DIndexBuffer8_Vtbl
;
776 object
->format
= wined3dformat_from_d3dformat(Format
);
777 TRACE("Calling wined3d create index buffer\n");
778 EnterCriticalSection(&d3d8_cs
);
779 hrc
= IWineD3DDevice_CreateIndexBuffer(This
->WineD3DDevice
, Length
, Usage
& WINED3DUSAGE_MASK
,
780 (WINED3DPOOL
)Pool
, &object
->wineD3DIndexBuffer
, (IUnknown
*)object
);
781 LeaveCriticalSection(&d3d8_cs
);
786 FIXME("(%p) call to IWineD3DDevice_CreateIndexBuffer failed\n", This
);
787 HeapFree(GetProcessHeap(), 0, object
);
788 *ppIndexBuffer
= NULL
;
790 IUnknown_AddRef(iface
);
791 object
->parentDevice
= iface
;
792 *ppIndexBuffer
= (LPDIRECT3DINDEXBUFFER8
)object
;
797 static HRESULT
IDirect3DDevice8Impl_CreateSurface(LPDIRECT3DDEVICE8 iface
, UINT Width
, UINT Height
, D3DFORMAT Format
, BOOL Lockable
, BOOL Discard
, UINT Level
, IDirect3DSurface8
**ppSurface
,D3DRESOURCETYPE Type
, UINT Usage
,D3DPOOL Pool
, D3DMULTISAMPLE_TYPE MultiSample
, DWORD MultisampleQuality
) {
799 IDirect3DSurface8Impl
*object
;
800 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
801 TRACE("(%p) Relay\n", This
);
803 if(MultisampleQuality
> 0){
804 FIXME("MultisampleQuality set to %d, substituting 0\n" , MultisampleQuality
);
807 [in] Quality level. The valid range is between zero and one less than the level returned by pQualityLevels used by IDirect3D8::CheckDeviceMultiSampleType. Passing a larger value returns the error D3DERR_INVALIDCALL. The MultisampleQuality values of paired render targets, depth stencil surfaces, and the MultiSample type must all match.
809 MultisampleQuality
=0;
811 /*FIXME: Check MAX bounds of MultisampleQuality*/
813 /* Allocate the storage for the device */
814 object
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(IDirect3DSurface8Impl
));
815 if (NULL
== object
) {
816 FIXME("Allocation of memory failed\n");
818 return D3DERR_OUTOFVIDEOMEMORY
;
821 object
->lpVtbl
= &Direct3DSurface8_Vtbl
;
824 TRACE("(%p) : w(%d) h(%d) fmt(%d) surf@%p\n", This
, Width
, Height
, Format
, *ppSurface
);
826 EnterCriticalSection(&d3d8_cs
);
827 hrc
= IWineD3DDevice_CreateSurface(This
->WineD3DDevice
, Width
, Height
, wined3dformat_from_d3dformat(Format
),
828 Lockable
, Discard
, Level
, &object
->wineD3DSurface
, Type
, Usage
& WINED3DUSAGE_MASK
,
829 (WINED3DPOOL
)Pool
, MultiSample
, MultisampleQuality
, SURFACE_OPENGL
, (IUnknown
*)object
);
830 LeaveCriticalSection(&d3d8_cs
);
831 if (hrc
!= D3D_OK
|| NULL
== object
->wineD3DSurface
) {
833 FIXME("(%p) call to IWineD3DDevice_CreateSurface failed\n", This
);
834 HeapFree(GetProcessHeap(), 0, object
);
837 IUnknown_AddRef(iface
);
838 object
->parentDevice
= iface
;
839 *ppSurface
= (LPDIRECT3DSURFACE8
) object
;
844 static HRESULT WINAPI
IDirect3DDevice8Impl_CreateRenderTarget(LPDIRECT3DDEVICE8 iface
, UINT Width
, UINT Height
, D3DFORMAT Format
, D3DMULTISAMPLE_TYPE MultiSample
, BOOL Lockable
, IDirect3DSurface8
** ppSurface
) {
848 hr
= IDirect3DDevice8Impl_CreateSurface(iface
, Width
, Height
, Format
, Lockable
, FALSE
/* Discard */, 0 /* Level */ , ppSurface
, D3DRTYPE_SURFACE
, D3DUSAGE_RENDERTARGET
, D3DPOOL_DEFAULT
, MultiSample
, 0);
852 static HRESULT WINAPI
IDirect3DDevice8Impl_CreateDepthStencilSurface(LPDIRECT3DDEVICE8 iface
, UINT Width
, UINT Height
, D3DFORMAT Format
, D3DMULTISAMPLE_TYPE MultiSample
, IDirect3DSurface8
** ppSurface
) {
856 /* TODO: Verify that Discard is false */
857 hr
= IDirect3DDevice8Impl_CreateSurface(iface
, Width
, Height
, Format
, TRUE
/* Lockable */, FALSE
, 0 /* Level */
858 ,ppSurface
, D3DRTYPE_SURFACE
, D3DUSAGE_DEPTHSTENCIL
,
859 D3DPOOL_DEFAULT
, MultiSample
, 0);
863 /* IDirect3DDevice8Impl::CreateImageSurface returns surface with pool type SYSTEMMEM */
864 static HRESULT WINAPI
IDirect3DDevice8Impl_CreateImageSurface(LPDIRECT3DDEVICE8 iface
, UINT Width
, UINT Height
, D3DFORMAT Format
, IDirect3DSurface8
** ppSurface
) {
868 hr
= IDirect3DDevice8Impl_CreateSurface(iface
, Width
, Height
, Format
, TRUE
/* Loackable */ , FALSE
/*Discard*/ , 0 /* Level */ , ppSurface
,
869 D3DRTYPE_SURFACE
, 0 /* Usage (undefined/none) */ , D3DPOOL_SYSTEMMEM
, D3DMULTISAMPLE_NONE
, 0 /* MultisampleQuality */);
873 static HRESULT WINAPI
IDirect3DDevice8Impl_CopyRects(LPDIRECT3DDEVICE8 iface
, IDirect3DSurface8
*pSourceSurface
, CONST RECT
*pSourceRects
, UINT cRects
, IDirect3DSurface8
*pDestinationSurface
, CONST POINT
*pDestPoints
) {
874 IDirect3DSurface8Impl
*Source
= (IDirect3DSurface8Impl
*) pSourceSurface
;
875 IDirect3DSurface8Impl
*Dest
= (IDirect3DSurface8Impl
*) pDestinationSurface
;
877 HRESULT hr
= WINED3D_OK
;
878 WINED3DFORMAT srcFormat
, destFormat
;
879 UINT srcWidth
, destWidth
;
880 UINT srcHeight
, destHeight
;
882 WINED3DSURFACE_DESC winedesc
;
884 TRACE("(%p) pSrcSur=%p, pSourceRects=%p, cRects=%d, pDstSur=%p, pDestPtsArr=%p\n", iface
,
885 pSourceSurface
, pSourceRects
, cRects
, pDestinationSurface
, pDestPoints
);
888 /* Check that the source texture is in WINED3DPOOL_SYSTEMMEM and the destination texture is in WINED3DPOOL_DEFAULT */
889 memset(&winedesc
, 0, sizeof(winedesc
));
891 winedesc
.Format
= &srcFormat
;
892 winedesc
.Width
= &srcWidth
;
893 winedesc
.Height
= &srcHeight
;
894 winedesc
.Size
= &srcSize
;
895 EnterCriticalSection(&d3d8_cs
);
896 IWineD3DSurface_GetDesc(Source
->wineD3DSurface
, &winedesc
);
898 winedesc
.Format
= &destFormat
;
899 winedesc
.Width
= &destWidth
;
900 winedesc
.Height
= &destHeight
;
901 winedesc
.Size
= NULL
;
902 IWineD3DSurface_GetDesc(Dest
->wineD3DSurface
, &winedesc
);
904 /* Check that the source and destination formats match */
905 if (srcFormat
!= destFormat
&& WINED3DFMT_UNKNOWN
!= destFormat
) {
906 WARN("(%p) source %p format must match the dest %p format, returning WINED3DERR_INVALIDCALL\n", iface
, pSourceSurface
, pDestinationSurface
);
907 LeaveCriticalSection(&d3d8_cs
);
908 return WINED3DERR_INVALIDCALL
;
909 } else if (WINED3DFMT_UNKNOWN
== destFormat
) {
910 TRACE("(%p) : Converting destination surface from WINED3DFMT_UNKNOWN to the source format\n", iface
);
911 IWineD3DSurface_SetFormat(Dest
->wineD3DSurface
, srcFormat
);
912 destFormat
= srcFormat
;
915 /* Quick if complete copy ... */
916 if (cRects
== 0 && pSourceRects
== NULL
&& pDestPoints
== NULL
) {
917 IWineD3DSurface_BltFast(Dest
->wineD3DSurface
, 0, 0, Source
->wineD3DSurface
, NULL
, WINEDDBLTFAST_NOCOLORKEY
);
920 /* Copy rect by rect */
921 if (NULL
!= pSourceRects
&& NULL
!= pDestPoints
) {
922 for (i
= 0; i
< cRects
; ++i
) {
923 IWineD3DSurface_BltFast(Dest
->wineD3DSurface
, pDestPoints
[i
].x
, pDestPoints
[i
].y
, Source
->wineD3DSurface
, &pSourceRects
[i
], WINEDDBLTFAST_NOCOLORKEY
);
926 for (i
= 0; i
< cRects
; ++i
) {
927 IWineD3DSurface_BltFast(Dest
->wineD3DSurface
, 0, 0, Source
->wineD3DSurface
, &pSourceRects
[i
], WINEDDBLTFAST_NOCOLORKEY
);
931 LeaveCriticalSection(&d3d8_cs
);
936 static HRESULT WINAPI
IDirect3DDevice8Impl_UpdateTexture(LPDIRECT3DDEVICE8 iface
, IDirect3DBaseTexture8
* pSourceTexture
, IDirect3DBaseTexture8
* pDestinationTexture
) {
937 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
939 TRACE("(%p) Relay\n" , This
);
941 EnterCriticalSection(&d3d8_cs
);
942 hr
= IWineD3DDevice_UpdateTexture(This
->WineD3DDevice
, ((IDirect3DBaseTexture8Impl
*)pSourceTexture
)->wineD3DBaseTexture
, ((IDirect3DBaseTexture8Impl
*)pDestinationTexture
)->wineD3DBaseTexture
);
943 LeaveCriticalSection(&d3d8_cs
);
947 static HRESULT WINAPI
IDirect3DDevice8Impl_GetFrontBuffer(LPDIRECT3DDEVICE8 iface
, IDirect3DSurface8
* pDestSurface
) {
948 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
949 IDirect3DSurface8Impl
*destSurface
= (IDirect3DSurface8Impl
*)pDestSurface
;
952 TRACE("(%p) Relay\n" , This
);
954 if (pDestSurface
== NULL
) {
955 WARN("(%p) : Caller passed NULL as pDestSurface returning D3DERR_INVALIDCALL\n", This
);
956 return D3DERR_INVALIDCALL
;
959 EnterCriticalSection(&d3d8_cs
);
960 hr
= IWineD3DDevice_GetFrontBufferData(This
->WineD3DDevice
, 0, destSurface
->wineD3DSurface
);
961 LeaveCriticalSection(&d3d8_cs
);
965 static HRESULT WINAPI
IDirect3DDevice8Impl_SetRenderTarget(LPDIRECT3DDEVICE8 iface
, IDirect3DSurface8
* pRenderTarget
, IDirect3DSurface8
* pNewZStencil
) {
966 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
967 IDirect3DSurface8Impl
*pSurface
= (IDirect3DSurface8Impl
*)pRenderTarget
;
968 IDirect3DSurface8Impl
*pZSurface
= (IDirect3DSurface8Impl
*)pNewZStencil
;
969 IWineD3DSurface
*original_ds
= NULL
;
971 TRACE("(%p) Relay\n" , This
);
973 EnterCriticalSection(&d3d8_cs
);
975 hr
= IWineD3DDevice_GetDepthStencilSurface(This
->WineD3DDevice
, &original_ds
);
976 if (hr
== WINED3D_OK
|| hr
== WINED3DERR_NOTFOUND
)
978 hr
= IWineD3DDevice_SetDepthStencilSurface(This
->WineD3DDevice
, pZSurface
? pZSurface
->wineD3DSurface
: NULL
);
979 if (SUCCEEDED(hr
) && pSurface
)
980 hr
= IWineD3DDevice_SetRenderTarget(This
->WineD3DDevice
, 0, pSurface
->wineD3DSurface
);
981 if (FAILED(hr
)) IWineD3DDevice_SetDepthStencilSurface(This
->WineD3DDevice
, original_ds
);
983 if (original_ds
) IWineD3DSurface_Release(original_ds
);
985 LeaveCriticalSection(&d3d8_cs
);
989 static HRESULT WINAPI
IDirect3DDevice8Impl_GetRenderTarget(LPDIRECT3DDEVICE8 iface
, IDirect3DSurface8
** ppRenderTarget
) {
990 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
992 IWineD3DSurface
*pRenderTarget
;
994 TRACE("(%p) Relay\n" , This
);
996 if (ppRenderTarget
== NULL
) {
997 return D3DERR_INVALIDCALL
;
999 EnterCriticalSection(&d3d8_cs
);
1000 hr
= IWineD3DDevice_GetRenderTarget(This
->WineD3DDevice
, 0, &pRenderTarget
);
1002 if (hr
== D3D_OK
&& pRenderTarget
!= NULL
) {
1003 IWineD3DSurface_GetParent(pRenderTarget
,(IUnknown
**)ppRenderTarget
);
1004 IWineD3DSurface_Release(pRenderTarget
);
1006 FIXME("Call to IWineD3DDevice_GetRenderTarget failed\n");
1007 *ppRenderTarget
= NULL
;
1009 LeaveCriticalSection(&d3d8_cs
);
1014 static HRESULT WINAPI
IDirect3DDevice8Impl_GetDepthStencilSurface(LPDIRECT3DDEVICE8 iface
, IDirect3DSurface8
** ppZStencilSurface
) {
1015 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1016 HRESULT hr
= D3D_OK
;
1017 IWineD3DSurface
*pZStencilSurface
;
1019 TRACE("(%p) Relay\n" , This
);
1020 if(ppZStencilSurface
== NULL
){
1021 return D3DERR_INVALIDCALL
;
1024 EnterCriticalSection(&d3d8_cs
);
1025 hr
=IWineD3DDevice_GetDepthStencilSurface(This
->WineD3DDevice
,&pZStencilSurface
);
1026 if (hr
== WINED3D_OK
) {
1027 IWineD3DSurface_GetParent(pZStencilSurface
,(IUnknown
**)ppZStencilSurface
);
1028 IWineD3DSurface_Release(pZStencilSurface
);
1030 if (hr
!= WINED3DERR_NOTFOUND
)
1031 FIXME("Call to IWineD3DDevice_GetDepthStencilSurface failed with 0x%08x\n", hr
);
1032 *ppZStencilSurface
= NULL
;
1034 LeaveCriticalSection(&d3d8_cs
);
1039 static HRESULT WINAPI
IDirect3DDevice8Impl_BeginScene(LPDIRECT3DDEVICE8 iface
) {
1040 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1042 TRACE("(%p) Relay\n" , This
);
1044 EnterCriticalSection(&d3d8_cs
);
1045 hr
= IWineD3DDevice_BeginScene(This
->WineD3DDevice
);
1046 LeaveCriticalSection(&d3d8_cs
);
1050 static HRESULT WINAPI
IDirect3DDevice8Impl_EndScene(LPDIRECT3DDEVICE8 iface
) {
1051 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1053 TRACE("(%p) Relay\n" , This
);
1055 EnterCriticalSection(&d3d8_cs
);
1056 hr
= IWineD3DDevice_EndScene(This
->WineD3DDevice
);
1057 LeaveCriticalSection(&d3d8_cs
);
1061 static HRESULT WINAPI
IDirect3DDevice8Impl_Clear(LPDIRECT3DDEVICE8 iface
, DWORD Count
, CONST D3DRECT
* pRects
, DWORD Flags
, D3DCOLOR Color
, float Z
, DWORD Stencil
) {
1062 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1064 TRACE("(%p) Relay\n" , This
);
1066 /* Note: D3DRECT is compatible with WINED3DRECT */
1067 EnterCriticalSection(&d3d8_cs
);
1068 hr
= IWineD3DDevice_Clear(This
->WineD3DDevice
, Count
, (CONST WINED3DRECT
*) pRects
, Flags
, Color
, Z
, Stencil
);
1069 LeaveCriticalSection(&d3d8_cs
);
1073 static HRESULT WINAPI
IDirect3DDevice8Impl_SetTransform(LPDIRECT3DDEVICE8 iface
, D3DTRANSFORMSTATETYPE State
, CONST D3DMATRIX
* lpMatrix
) {
1074 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1076 TRACE("(%p) Relay\n" , This
);
1078 /* Note: D3DMATRIX is compatible with WINED3DMATRIX */
1079 EnterCriticalSection(&d3d8_cs
);
1080 hr
= IWineD3DDevice_SetTransform(This
->WineD3DDevice
, State
, (CONST WINED3DMATRIX
*) lpMatrix
);
1081 LeaveCriticalSection(&d3d8_cs
);
1085 static HRESULT WINAPI
IDirect3DDevice8Impl_GetTransform(LPDIRECT3DDEVICE8 iface
, D3DTRANSFORMSTATETYPE State
,D3DMATRIX
* pMatrix
) {
1086 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1088 TRACE("(%p) Relay\n" , This
);
1090 /* Note: D3DMATRIX is compatible with WINED3DMATRIX */
1091 EnterCriticalSection(&d3d8_cs
);
1092 hr
= IWineD3DDevice_GetTransform(This
->WineD3DDevice
, State
, (WINED3DMATRIX
*) pMatrix
);
1093 LeaveCriticalSection(&d3d8_cs
);
1097 static HRESULT WINAPI
IDirect3DDevice8Impl_MultiplyTransform(LPDIRECT3DDEVICE8 iface
, D3DTRANSFORMSTATETYPE State
, CONST D3DMATRIX
* pMatrix
) {
1098 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1100 TRACE("(%p) Relay\n" , This
);
1102 /* Note: D3DMATRIX is compatible with WINED3DMATRIX */
1103 EnterCriticalSection(&d3d8_cs
);
1104 hr
= IWineD3DDevice_MultiplyTransform(This
->WineD3DDevice
, State
, (CONST WINED3DMATRIX
*) pMatrix
);
1105 LeaveCriticalSection(&d3d8_cs
);
1109 static HRESULT WINAPI
IDirect3DDevice8Impl_SetViewport(LPDIRECT3DDEVICE8 iface
, CONST D3DVIEWPORT8
* pViewport
) {
1110 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1112 TRACE("(%p) Relay\n" , This
);
1114 /* Note: D3DVIEWPORT8 is compatible with WINED3DVIEWPORT */
1115 EnterCriticalSection(&d3d8_cs
);
1116 hr
= IWineD3DDevice_SetViewport(This
->WineD3DDevice
, (const WINED3DVIEWPORT
*)pViewport
);
1117 LeaveCriticalSection(&d3d8_cs
);
1121 static HRESULT WINAPI
IDirect3DDevice8Impl_GetViewport(LPDIRECT3DDEVICE8 iface
, D3DVIEWPORT8
* pViewport
) {
1122 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1124 TRACE("(%p) Relay\n" , This
);
1126 /* Note: D3DVIEWPORT8 is compatible with WINED3DVIEWPORT */
1127 EnterCriticalSection(&d3d8_cs
);
1128 hr
= IWineD3DDevice_GetViewport(This
->WineD3DDevice
, (WINED3DVIEWPORT
*)pViewport
);
1129 LeaveCriticalSection(&d3d8_cs
);
1133 static HRESULT WINAPI
IDirect3DDevice8Impl_SetMaterial(LPDIRECT3DDEVICE8 iface
, CONST D3DMATERIAL8
* pMaterial
) {
1134 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1136 TRACE("(%p) Relay\n" , This
);
1138 /* Note: D3DMATERIAL8 is compatible with WINED3DMATERIAL */
1139 EnterCriticalSection(&d3d8_cs
);
1140 hr
= IWineD3DDevice_SetMaterial(This
->WineD3DDevice
, (const WINED3DMATERIAL
*)pMaterial
);
1141 LeaveCriticalSection(&d3d8_cs
);
1145 static HRESULT WINAPI
IDirect3DDevice8Impl_GetMaterial(LPDIRECT3DDEVICE8 iface
, D3DMATERIAL8
* pMaterial
) {
1146 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1148 TRACE("(%p) Relay\n" , This
);
1150 /* Note: D3DMATERIAL8 is compatible with WINED3DMATERIAL */
1151 EnterCriticalSection(&d3d8_cs
);
1152 hr
= IWineD3DDevice_GetMaterial(This
->WineD3DDevice
, (WINED3DMATERIAL
*)pMaterial
);
1153 LeaveCriticalSection(&d3d8_cs
);
1157 static HRESULT WINAPI
IDirect3DDevice8Impl_SetLight(LPDIRECT3DDEVICE8 iface
, DWORD Index
, CONST D3DLIGHT8
* pLight
) {
1158 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1160 TRACE("(%p) Relay\n" , This
);
1162 /* Note: D3DLIGHT8 is compatible with WINED3DLIGHT */
1163 EnterCriticalSection(&d3d8_cs
);
1164 hr
= IWineD3DDevice_SetLight(This
->WineD3DDevice
, Index
, (const WINED3DLIGHT
*)pLight
);
1165 LeaveCriticalSection(&d3d8_cs
);
1169 static HRESULT WINAPI
IDirect3DDevice8Impl_GetLight(LPDIRECT3DDEVICE8 iface
, DWORD Index
,D3DLIGHT8
* pLight
) {
1170 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1172 TRACE("(%p) Relay\n" , This
);
1174 /* Note: D3DLIGHT8 is compatible with WINED3DLIGHT */
1175 EnterCriticalSection(&d3d8_cs
);
1176 hr
= IWineD3DDevice_GetLight(This
->WineD3DDevice
, Index
, (WINED3DLIGHT
*)pLight
);
1177 LeaveCriticalSection(&d3d8_cs
);
1181 static HRESULT WINAPI
IDirect3DDevice8Impl_LightEnable(LPDIRECT3DDEVICE8 iface
, DWORD Index
,BOOL Enable
) {
1182 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1184 TRACE("(%p) Relay\n" , This
);
1186 EnterCriticalSection(&d3d8_cs
);
1187 hr
= IWineD3DDevice_SetLightEnable(This
->WineD3DDevice
, Index
, Enable
);
1188 LeaveCriticalSection(&d3d8_cs
);
1192 static HRESULT WINAPI
IDirect3DDevice8Impl_GetLightEnable(LPDIRECT3DDEVICE8 iface
, DWORD Index
,BOOL
* pEnable
) {
1193 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1195 TRACE("(%p) Relay\n" , This
);
1197 EnterCriticalSection(&d3d8_cs
);
1198 hr
= IWineD3DDevice_GetLightEnable(This
->WineD3DDevice
, Index
, pEnable
);
1199 LeaveCriticalSection(&d3d8_cs
);
1203 static HRESULT WINAPI
IDirect3DDevice8Impl_SetClipPlane(LPDIRECT3DDEVICE8 iface
, DWORD Index
,CONST
float* pPlane
) {
1204 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1206 TRACE("(%p) Relay\n" , This
);
1208 EnterCriticalSection(&d3d8_cs
);
1209 hr
= IWineD3DDevice_SetClipPlane(This
->WineD3DDevice
, Index
, pPlane
);
1210 LeaveCriticalSection(&d3d8_cs
);
1214 static HRESULT WINAPI
IDirect3DDevice8Impl_GetClipPlane(LPDIRECT3DDEVICE8 iface
, DWORD Index
,float* pPlane
) {
1215 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1217 TRACE("(%p) Relay\n" , This
);
1219 EnterCriticalSection(&d3d8_cs
);
1220 hr
= IWineD3DDevice_GetClipPlane(This
->WineD3DDevice
, Index
, pPlane
);
1221 LeaveCriticalSection(&d3d8_cs
);
1225 static HRESULT WINAPI
IDirect3DDevice8Impl_SetRenderState(LPDIRECT3DDEVICE8 iface
, D3DRENDERSTATETYPE State
,DWORD Value
) {
1226 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1228 TRACE("(%p) Relay\n" , This
);
1230 EnterCriticalSection(&d3d8_cs
);
1231 hr
= IWineD3DDevice_SetRenderState(This
->WineD3DDevice
, State
, Value
);
1232 LeaveCriticalSection(&d3d8_cs
);
1236 static HRESULT WINAPI
IDirect3DDevice8Impl_GetRenderState(LPDIRECT3DDEVICE8 iface
, D3DRENDERSTATETYPE State
,DWORD
* pValue
) {
1237 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1239 TRACE("(%p) Relay\n" , This
);
1241 EnterCriticalSection(&d3d8_cs
);
1242 hr
= IWineD3DDevice_GetRenderState(This
->WineD3DDevice
, State
, pValue
);
1243 LeaveCriticalSection(&d3d8_cs
);
1247 static HRESULT WINAPI
IDirect3DDevice8Impl_BeginStateBlock(LPDIRECT3DDEVICE8 iface
) {
1248 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1250 TRACE("(%p)\n", This
);
1252 EnterCriticalSection(&d3d8_cs
);
1253 hr
= IWineD3DDevice_BeginStateBlock(This
->WineD3DDevice
);
1254 LeaveCriticalSection(&d3d8_cs
);
1258 static HRESULT WINAPI
IDirect3DDevice8Impl_EndStateBlock(LPDIRECT3DDEVICE8 iface
, DWORD
* pToken
) {
1259 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1261 IWineD3DStateBlock
* wineD3DStateBlock
;
1262 IDirect3DStateBlock8Impl
* object
;
1264 TRACE("(%p) Relay\n", This
);
1266 /* Tell wineD3D to endstateblock before anything else (in case we run out
1267 * of memory later and cause locking problems)
1269 EnterCriticalSection(&d3d8_cs
);
1270 hr
= IWineD3DDevice_EndStateBlock(This
->WineD3DDevice
, &wineD3DStateBlock
);
1272 WARN("IWineD3DDevice_EndStateBlock returned an error\n");
1273 LeaveCriticalSection(&d3d8_cs
);
1277 /* allocate a new IDirectD3DStateBlock */
1278 object
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,sizeof(IDirect3DStateBlock8Impl
));
1280 object
->lpVtbl
= &Direct3DStateBlock8_Vtbl
;
1282 object
->wineD3DStateBlock
= wineD3DStateBlock
;
1284 *pToken
= d3d8_allocate_handle(&This
->handle_table
, object
);
1285 LeaveCriticalSection(&d3d8_cs
);
1287 if (*pToken
== D3D8_INVALID_HANDLE
)
1289 ERR("Failed to create a handle\n");
1290 IDirect3DStateBlock8_Release((IDirect3DStateBlock8
*)object
);
1295 TRACE("Returning %#x (%p).\n", *pToken
, object
);
1300 static HRESULT WINAPI
IDirect3DDevice8Impl_ApplyStateBlock(LPDIRECT3DDEVICE8 iface
, DWORD Token
) {
1301 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1302 IDirect3DStateBlock8Impl
*pSB
;
1305 TRACE("(%p) %#x Relay\n", This
, Token
);
1307 EnterCriticalSection(&d3d8_cs
);
1308 pSB
= d3d8_get_object(&This
->handle_table
, Token
- 1);
1311 WARN("Invalid handle (%#x) passed.\n", Token
);
1312 LeaveCriticalSection(&d3d8_cs
);
1313 return D3DERR_INVALIDCALL
;
1315 hr
= IWineD3DStateBlock_Apply(pSB
->wineD3DStateBlock
);
1316 LeaveCriticalSection(&d3d8_cs
);
1320 static HRESULT WINAPI
IDirect3DDevice8Impl_CaptureStateBlock(LPDIRECT3DDEVICE8 iface
, DWORD Token
) {
1321 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1322 IDirect3DStateBlock8Impl
*pSB
;
1325 TRACE("(%p) %#x Relay\n", This
, Token
);
1327 EnterCriticalSection(&d3d8_cs
);
1328 pSB
= d3d8_get_object(&This
->handle_table
, Token
- 1);
1331 WARN("Invalid handle (%#x) passed.\n", Token
);
1332 LeaveCriticalSection(&d3d8_cs
);
1333 return D3DERR_INVALIDCALL
;
1335 hr
= IWineD3DStateBlock_Capture(pSB
->wineD3DStateBlock
);
1336 LeaveCriticalSection(&d3d8_cs
);
1340 static HRESULT WINAPI
IDirect3DDevice8Impl_DeleteStateBlock(LPDIRECT3DDEVICE8 iface
, DWORD Token
) {
1341 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1342 IDirect3DStateBlock8Impl
*pSB
;
1344 TRACE("(%p) Relay\n", This
);
1346 EnterCriticalSection(&d3d8_cs
);
1347 pSB
= d3d8_free_handle(&This
->handle_table
, Token
- 1);
1348 LeaveCriticalSection(&d3d8_cs
);
1352 WARN("Invalid handle (%#x) passed.\n", Token
);
1353 return D3DERR_INVALIDCALL
;
1356 if (IUnknown_Release((IUnknown
*)pSB
))
1358 ERR("Stateblock %p has references left, this shouldn't happen.\n", pSB
);
1364 static HRESULT WINAPI
IDirect3DDevice8Impl_CreateStateBlock(IDirect3DDevice8
*iface
,
1365 D3DSTATEBLOCKTYPE Type
, DWORD
*handle
)
1367 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1368 IDirect3DStateBlock8Impl
*object
;
1371 TRACE("(%p) Relay\n", This
);
1373 if (Type
!= D3DSBT_ALL
1374 && Type
!= D3DSBT_PIXELSTATE
1375 && Type
!= D3DSBT_VERTEXSTATE
)
1377 WARN("Unexpected stateblock type, returning D3DERR_INVALIDCALL\n");
1378 return D3DERR_INVALIDCALL
;
1381 object
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(IDirect3DStateBlock8Impl
));
1384 ERR("Failed to allocate memory.\n");
1385 return E_OUTOFMEMORY
;
1388 object
->lpVtbl
= &Direct3DStateBlock8_Vtbl
;
1391 EnterCriticalSection(&d3d8_cs
);
1392 hr
= IWineD3DDevice_CreateStateBlock(This
->WineD3DDevice
, (WINED3DSTATEBLOCKTYPE
)Type
,
1393 &object
->wineD3DStateBlock
, (IUnknown
*)object
);
1396 LeaveCriticalSection(&d3d8_cs
);
1397 ERR("IWineD3DDevice_CreateStateBlock failed, hr %#x\n", hr
);
1398 HeapFree(GetProcessHeap(), 0, object
);
1402 *handle
= d3d8_allocate_handle(&This
->handle_table
, object
);
1403 LeaveCriticalSection(&d3d8_cs
);
1405 if (*handle
== D3D8_INVALID_HANDLE
)
1407 ERR("Failed to allocate a handle.\n");
1408 IDirect3DStateBlock8_Release((IDirect3DStateBlock8
*)object
);
1413 TRACE("Returning %#x (%p).\n", *handle
, object
);
1418 static HRESULT WINAPI
IDirect3DDevice8Impl_SetClipStatus(LPDIRECT3DDEVICE8 iface
, CONST D3DCLIPSTATUS8
* pClipStatus
) {
1419 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1421 TRACE("(%p) Relay\n" , This
);
1422 /* FIXME: Verify that D3DCLIPSTATUS8 ~= WINED3DCLIPSTATUS */
1423 EnterCriticalSection(&d3d8_cs
);
1424 hr
= IWineD3DDevice_SetClipStatus(This
->WineD3DDevice
, (const WINED3DCLIPSTATUS
*)pClipStatus
);
1425 LeaveCriticalSection(&d3d8_cs
);
1429 static HRESULT WINAPI
IDirect3DDevice8Impl_GetClipStatus(LPDIRECT3DDEVICE8 iface
, D3DCLIPSTATUS8
* pClipStatus
) {
1430 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1432 TRACE("(%p) Relay\n" , This
);
1434 EnterCriticalSection(&d3d8_cs
);
1435 hr
= IWineD3DDevice_GetClipStatus(This
->WineD3DDevice
, (WINED3DCLIPSTATUS
*)pClipStatus
);
1436 LeaveCriticalSection(&d3d8_cs
);
1440 static HRESULT WINAPI
IDirect3DDevice8Impl_GetTexture(LPDIRECT3DDEVICE8 iface
, DWORD Stage
,IDirect3DBaseTexture8
** ppTexture
) {
1441 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1442 IWineD3DBaseTexture
*retTexture
= NULL
;
1443 HRESULT rc
= D3D_OK
;
1445 TRACE("(%p) Relay\n" , This
);
1447 if(ppTexture
== NULL
){
1448 return D3DERR_INVALIDCALL
;
1451 EnterCriticalSection(&d3d8_cs
);
1452 rc
= IWineD3DDevice_GetTexture(This
->WineD3DDevice
, Stage
, &retTexture
);
1453 if (rc
== D3D_OK
&& NULL
!= retTexture
) {
1454 IWineD3DBaseTexture_GetParent(retTexture
, (IUnknown
**)ppTexture
);
1455 IWineD3DBaseTexture_Release(retTexture
);
1457 FIXME("Call to get texture (%d) failed (%p)\n", Stage
, retTexture
);
1460 LeaveCriticalSection(&d3d8_cs
);
1465 static HRESULT WINAPI
IDirect3DDevice8Impl_SetTexture(LPDIRECT3DDEVICE8 iface
, DWORD Stage
, IDirect3DBaseTexture8
* pTexture
) {
1466 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1468 TRACE("(%p) Relay %d %p\n" , This
, Stage
, pTexture
);
1470 EnterCriticalSection(&d3d8_cs
);
1471 hr
= IWineD3DDevice_SetTexture(This
->WineD3DDevice
, Stage
,
1472 pTexture
==NULL
? NULL
: ((IDirect3DBaseTexture8Impl
*)pTexture
)->wineD3DBaseTexture
);
1473 LeaveCriticalSection(&d3d8_cs
);
1477 static const struct tss_lookup
1484 {FALSE
, WINED3DTSS_FORCE_DWORD
}, /* 0, unused */
1485 {FALSE
, WINED3DTSS_COLOROP
}, /* 1, D3DTSS_COLOROP */
1486 {FALSE
, WINED3DTSS_COLORARG1
}, /* 2, D3DTSS_COLORARG1 */
1487 {FALSE
, WINED3DTSS_COLORARG2
}, /* 3, D3DTSS_COLORARG2 */
1488 {FALSE
, WINED3DTSS_ALPHAOP
}, /* 4, D3DTSS_ALPHAOP */
1489 {FALSE
, WINED3DTSS_ALPHAARG1
}, /* 5, D3DTSS_ALPHAARG1 */
1490 {FALSE
, WINED3DTSS_ALPHAARG2
}, /* 6, D3DTSS_ALPHAARG2 */
1491 {FALSE
, WINED3DTSS_BUMPENVMAT00
}, /* 7, D3DTSS_BUMPENVMAT00 */
1492 {FALSE
, WINED3DTSS_BUMPENVMAT01
}, /* 8, D3DTSS_BUMPENVMAT01 */
1493 {FALSE
, WINED3DTSS_BUMPENVMAT10
}, /* 9, D3DTSS_BUMPENVMAT10 */
1494 {FALSE
, WINED3DTSS_BUMPENVMAT11
}, /* 10, D3DTSS_BUMPENVMAT11 */
1495 {FALSE
, WINED3DTSS_TEXCOORDINDEX
}, /* 11, D3DTSS_TEXCOORDINDEX */
1496 {FALSE
, WINED3DTSS_FORCE_DWORD
}, /* 12, unused */
1497 {TRUE
, WINED3DSAMP_ADDRESSU
}, /* 13, D3DTSS_ADDRESSU */
1498 {TRUE
, WINED3DSAMP_ADDRESSV
}, /* 14, D3DTSS_ADDRESSV */
1499 {TRUE
, WINED3DSAMP_BORDERCOLOR
}, /* 15, D3DTSS_BORDERCOLOR */
1500 {TRUE
, WINED3DSAMP_MAGFILTER
}, /* 16, D3DTSS_MAGFILTER */
1501 {TRUE
, WINED3DSAMP_MINFILTER
}, /* 17, D3DTSS_MINFILTER */
1502 {TRUE
, WINED3DSAMP_MIPFILTER
}, /* 18, D3DTSS_MIPFILTER */
1503 {TRUE
, WINED3DSAMP_MIPMAPLODBIAS
}, /* 19, D3DTSS_MIPMAPLODBIAS */
1504 {TRUE
, WINED3DSAMP_MAXMIPLEVEL
}, /* 20, D3DTSS_MAXMIPLEVEL */
1505 {TRUE
, WINED3DSAMP_MAXANISOTROPY
}, /* 21, D3DTSS_MAXANISOTROPY */
1506 {FALSE
, WINED3DTSS_BUMPENVLSCALE
}, /* 22, D3DTSS_BUMPENVLSCALE */
1507 {FALSE
, WINED3DTSS_BUMPENVLOFFSET
}, /* 23, D3DTSS_BUMPENVLOFFSET */
1508 {FALSE
, WINED3DTSS_TEXTURETRANSFORMFLAGS
}, /* 24, D3DTSS_TEXTURETRANSFORMFLAGS */
1509 {TRUE
, WINED3DSAMP_ADDRESSW
}, /* 25, D3DTSS_ADDRESSW */
1510 {FALSE
, WINED3DTSS_COLORARG0
}, /* 26, D3DTSS_COLORARG0 */
1511 {FALSE
, WINED3DTSS_ALPHAARG0
}, /* 27, D3DTSS_ALPHAARG0 */
1512 {FALSE
, WINED3DTSS_RESULTARG
}, /* 28, D3DTSS_RESULTARG */
1515 static HRESULT WINAPI
IDirect3DDevice8Impl_GetTextureStageState(LPDIRECT3DDEVICE8 iface
, DWORD Stage
,D3DTEXTURESTAGESTATETYPE Type
,DWORD
* pValue
) {
1516 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1517 const struct tss_lookup
*l
= &tss_lookup
[Type
];
1519 TRACE("(%p) Relay\n" , This
);
1521 EnterCriticalSection(&d3d8_cs
);
1523 if (l
->sampler_state
) hr
= IWineD3DDevice_GetSamplerState(This
->WineD3DDevice
, Stage
, l
->state
, pValue
);
1524 else hr
= IWineD3DDevice_GetTextureStageState(This
->WineD3DDevice
, Stage
, l
->state
, pValue
);
1526 LeaveCriticalSection(&d3d8_cs
);
1530 static HRESULT WINAPI
IDirect3DDevice8Impl_SetTextureStageState(LPDIRECT3DDEVICE8 iface
, DWORD Stage
, D3DTEXTURESTAGESTATETYPE Type
, DWORD Value
) {
1531 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1532 const struct tss_lookup
*l
= &tss_lookup
[Type
];
1534 TRACE("(%p) Relay\n" , This
);
1536 EnterCriticalSection(&d3d8_cs
);
1538 if (l
->sampler_state
) hr
= IWineD3DDevice_SetSamplerState(This
->WineD3DDevice
, Stage
, l
->state
, Value
);
1539 else hr
= IWineD3DDevice_SetTextureStageState(This
->WineD3DDevice
, Stage
, l
->state
, Value
);
1541 LeaveCriticalSection(&d3d8_cs
);
1545 static HRESULT WINAPI
IDirect3DDevice8Impl_ValidateDevice(LPDIRECT3DDEVICE8 iface
, DWORD
* pNumPasses
) {
1546 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1548 TRACE("(%p) Relay\n" , This
);
1550 EnterCriticalSection(&d3d8_cs
);
1551 hr
= IWineD3DDevice_ValidateDevice(This
->WineD3DDevice
, pNumPasses
);
1552 LeaveCriticalSection(&d3d8_cs
);
1556 static HRESULT WINAPI
IDirect3DDevice8Impl_GetInfo(LPDIRECT3DDEVICE8 iface
, DWORD DevInfoID
, void* pDevInfoStruct
, DWORD DevInfoStructSize
) {
1557 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1558 FIXME("(%p) : stub\n", This
);
1562 static HRESULT WINAPI
IDirect3DDevice8Impl_SetPaletteEntries(LPDIRECT3DDEVICE8 iface
, UINT PaletteNumber
, CONST PALETTEENTRY
* pEntries
) {
1563 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1565 TRACE("(%p) Relay\n" , This
);
1567 EnterCriticalSection(&d3d8_cs
);
1568 hr
= IWineD3DDevice_SetPaletteEntries(This
->WineD3DDevice
, PaletteNumber
, pEntries
);
1569 LeaveCriticalSection(&d3d8_cs
);
1573 static HRESULT WINAPI
IDirect3DDevice8Impl_GetPaletteEntries(LPDIRECT3DDEVICE8 iface
, UINT PaletteNumber
, PALETTEENTRY
* pEntries
) {
1574 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1576 TRACE("(%p) Relay\n" , This
);
1578 EnterCriticalSection(&d3d8_cs
);
1579 hr
= IWineD3DDevice_GetPaletteEntries(This
->WineD3DDevice
, PaletteNumber
, pEntries
);
1580 LeaveCriticalSection(&d3d8_cs
);
1584 static HRESULT WINAPI
IDirect3DDevice8Impl_SetCurrentTexturePalette(LPDIRECT3DDEVICE8 iface
, UINT PaletteNumber
) {
1585 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1587 TRACE("(%p) Relay\n" , This
);
1589 EnterCriticalSection(&d3d8_cs
);
1590 hr
= IWineD3DDevice_SetCurrentTexturePalette(This
->WineD3DDevice
, PaletteNumber
);
1591 LeaveCriticalSection(&d3d8_cs
);
1595 static HRESULT WINAPI
IDirect3DDevice8Impl_GetCurrentTexturePalette(LPDIRECT3DDEVICE8 iface
, UINT
*PaletteNumber
) {
1596 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1598 TRACE("(%p) Relay\n" , This
);
1600 EnterCriticalSection(&d3d8_cs
);
1601 hr
= IWineD3DDevice_GetCurrentTexturePalette(This
->WineD3DDevice
, PaletteNumber
);
1602 LeaveCriticalSection(&d3d8_cs
);
1606 static HRESULT WINAPI
IDirect3DDevice8Impl_DrawPrimitive(LPDIRECT3DDEVICE8 iface
, D3DPRIMITIVETYPE PrimitiveType
, UINT StartVertex
, UINT PrimitiveCount
) {
1607 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1609 TRACE("(%p) Relay\n" , This
);
1611 EnterCriticalSection(&d3d8_cs
);
1612 IWineD3DDevice_SetPrimitiveType(This
->WineD3DDevice
, PrimitiveType
);
1613 hr
= IWineD3DDevice_DrawPrimitive(This
->WineD3DDevice
, StartVertex
,
1614 vertex_count_from_primitive_count(PrimitiveType
, PrimitiveCount
));
1615 LeaveCriticalSection(&d3d8_cs
);
1619 static HRESULT WINAPI
IDirect3DDevice8Impl_DrawIndexedPrimitive(LPDIRECT3DDEVICE8 iface
, D3DPRIMITIVETYPE PrimitiveType
,
1620 UINT MinVertexIndex
,UINT NumVertices
,UINT startIndex
,UINT primCount
) {
1621 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1623 TRACE("(%p) Relay\n" , This
);
1625 EnterCriticalSection(&d3d8_cs
);
1626 IWineD3DDevice_SetPrimitiveType(This
->WineD3DDevice
, PrimitiveType
);
1627 hr
= IWineD3DDevice_DrawIndexedPrimitive(This
->WineD3DDevice
, MinVertexIndex
, NumVertices
,
1628 startIndex
, vertex_count_from_primitive_count(PrimitiveType
, primCount
));
1629 LeaveCriticalSection(&d3d8_cs
);
1633 static HRESULT WINAPI
IDirect3DDevice8Impl_DrawPrimitiveUP(LPDIRECT3DDEVICE8 iface
, D3DPRIMITIVETYPE PrimitiveType
,UINT PrimitiveCount
,CONST
void* pVertexStreamZeroData
,UINT VertexStreamZeroStride
) {
1634 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1636 TRACE("(%p) Relay\n" , This
);
1638 EnterCriticalSection(&d3d8_cs
);
1639 IWineD3DDevice_SetPrimitiveType(This
->WineD3DDevice
, PrimitiveType
);
1640 hr
= IWineD3DDevice_DrawPrimitiveUP(This
->WineD3DDevice
,
1641 vertex_count_from_primitive_count(PrimitiveType
, PrimitiveCount
),
1642 pVertexStreamZeroData
, VertexStreamZeroStride
);
1643 LeaveCriticalSection(&d3d8_cs
);
1647 static HRESULT WINAPI
IDirect3DDevice8Impl_DrawIndexedPrimitiveUP(LPDIRECT3DDEVICE8 iface
, D3DPRIMITIVETYPE PrimitiveType
,UINT MinVertexIndex
,
1648 UINT NumVertexIndices
,UINT PrimitiveCount
,CONST
void* pIndexData
,
1649 D3DFORMAT IndexDataFormat
,CONST
void* pVertexStreamZeroData
,
1650 UINT VertexStreamZeroStride
) {
1651 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1653 TRACE("(%p) Relay\n" , This
);
1655 EnterCriticalSection(&d3d8_cs
);
1656 IWineD3DDevice_SetPrimitiveType(This
->WineD3DDevice
, PrimitiveType
);
1657 hr
= IWineD3DDevice_DrawIndexedPrimitiveUP(This
->WineD3DDevice
, MinVertexIndex
, NumVertexIndices
,
1658 vertex_count_from_primitive_count(PrimitiveType
, PrimitiveCount
), pIndexData
,
1659 wined3dformat_from_d3dformat(IndexDataFormat
), pVertexStreamZeroData
, VertexStreamZeroStride
);
1660 LeaveCriticalSection(&d3d8_cs
);
1664 static HRESULT WINAPI
IDirect3DDevice8Impl_ProcessVertices(LPDIRECT3DDEVICE8 iface
, UINT SrcStartIndex
,UINT DestIndex
,UINT VertexCount
,IDirect3DVertexBuffer8
* pDestBuffer
,DWORD Flags
) {
1665 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1667 IDirect3DVertexBuffer8Impl
*dest
= (IDirect3DVertexBuffer8Impl
*) pDestBuffer
;
1668 TRACE("(%p) Relay\n" , This
);
1670 EnterCriticalSection(&d3d8_cs
);
1671 hr
= IWineD3DDevice_ProcessVertices(This
->WineD3DDevice
,SrcStartIndex
, DestIndex
, VertexCount
, dest
->wineD3DVertexBuffer
, NULL
, Flags
, dest
->fvf
);
1672 LeaveCriticalSection(&d3d8_cs
);
1676 static HRESULT
IDirect3DDevice8Impl_CreateVertexDeclaration(IDirect3DDevice8
*iface
, CONST DWORD
*declaration
, IDirect3DVertexDeclaration8
**decl_ptr
) {
1677 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1678 IDirect3DVertexDeclaration8Impl
*object
;
1679 WINED3DVERTEXELEMENT
*wined3d_elements
;
1680 UINT wined3d_element_count
;
1681 HRESULT hr
= D3D_OK
;
1683 TRACE("(%p) : declaration %p\n", This
, declaration
);
1685 object
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*object
));
1687 ERR("Memory allocation failed\n");
1689 return D3DERR_OUTOFVIDEOMEMORY
;
1692 object
->ref_count
= 1;
1693 object
->lpVtbl
= &Direct3DVertexDeclaration8_Vtbl
;
1695 wined3d_element_count
= convert_to_wined3d_declaration(declaration
, &object
->elements_size
, &wined3d_elements
);
1696 object
->elements
= HeapAlloc(GetProcessHeap(), 0, object
->elements_size
);
1697 if (!object
->elements
) {
1698 ERR("Memory allocation failed\n");
1699 HeapFree(GetProcessHeap(), 0, wined3d_elements
);
1700 HeapFree(GetProcessHeap(), 0, object
);
1702 return D3DERR_OUTOFVIDEOMEMORY
;
1705 CopyMemory(object
->elements
, declaration
, object
->elements_size
);
1707 EnterCriticalSection(&d3d8_cs
);
1708 hr
= IWineD3DDevice_CreateVertexDeclaration(This
->WineD3DDevice
, &object
->wined3d_vertex_declaration
,
1709 (IUnknown
*)object
, wined3d_elements
, wined3d_element_count
);
1710 LeaveCriticalSection(&d3d8_cs
);
1711 HeapFree(GetProcessHeap(), 0, wined3d_elements
);
1714 ERR("(%p) : IWineD3DDevice_CreateVertexDeclaration call failed\n", This
);
1715 HeapFree(GetProcessHeap(), 0, object
->elements
);
1716 HeapFree(GetProcessHeap(), 0, object
);
1718 *decl_ptr
= (IDirect3DVertexDeclaration8
*)object
;
1719 TRACE("(%p) : Created vertex declaration %p\n", This
, object
);
1725 static HRESULT WINAPI
IDirect3DDevice8Impl_CreateVertexShader(LPDIRECT3DDEVICE8 iface
, CONST DWORD
* pDeclaration
, CONST DWORD
* pFunction
, DWORD
* ppShader
, DWORD Usage
) {
1726 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1727 HRESULT hrc
= D3D_OK
;
1728 IDirect3DVertexShader8Impl
*object
;
1729 const DWORD
*token
= pDeclaration
;
1732 /* Test if the vertex declaration is valid */
1733 while (D3DVSD_END() != *token
) {
1734 D3DVSD_TOKENTYPE token_type
= ((*token
& D3DVSD_TOKENTYPEMASK
) >> D3DVSD_TOKENTYPESHIFT
);
1736 if (token_type
== D3DVSD_TOKEN_STREAMDATA
&& !(token_type
& 0x10000000)) {
1737 DWORD type
= ((*token
& D3DVSD_DATATYPEMASK
) >> D3DVSD_DATATYPESHIFT
);
1738 DWORD reg
= ((*token
& D3DVSD_VERTEXREGMASK
) >> D3DVSD_VERTEXREGSHIFT
);
1740 if(reg
== D3DVSDE_NORMAL
&& type
!= D3DVSDT_FLOAT3
&& !pFunction
) {
1741 WARN("Attempt to use a non-FLOAT3 normal with the fixed function function\n");
1742 return D3DERR_INVALIDCALL
;
1745 token
+= parse_token(token
);
1748 /* Setup a stub object for now */
1749 object
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*object
));
1750 TRACE("(%p) : pFunction(%p), ppShader(%p)\n", This
, pFunction
, ppShader
);
1751 if (NULL
== object
) {
1752 FIXME("Allocation of memory failed\n");
1754 return D3DERR_OUTOFVIDEOMEMORY
;
1758 object
->lpVtbl
= &Direct3DVertexShader8_Vtbl
;
1760 hrc
= IDirect3DDevice8Impl_CreateVertexDeclaration(iface
, pDeclaration
, &object
->vertex_declaration
);
1762 ERR("(%p) : IDirect3DDeviceImpl_CreateVertexDeclaration call failed\n", This
);
1763 HeapFree(GetProcessHeap(), 0, object
);
1765 return D3DERR_INVALIDCALL
;
1768 EnterCriticalSection(&d3d8_cs
);
1769 handle
= d3d8_allocate_handle(&This
->handle_table
, object
);
1770 if (handle
== D3D8_INVALID_HANDLE
)
1772 ERR("Failed to allocate shader handle\n");
1773 LeaveCriticalSection(&d3d8_cs
);
1774 IDirect3DVertexDeclaration8_Release(object
->vertex_declaration
);
1775 HeapFree(GetProcessHeap(), 0, object
);
1777 return E_OUTOFMEMORY
;
1781 DWORD shader_handle
= handle
+ VS_HIGHESTFIXEDFXF
+ 1;
1782 *ppShader
= ((IDirect3DVertexDeclaration8Impl
*)object
->vertex_declaration
)->shader_handle
= shader_handle
;
1787 /* Usage is missing ... Use SetRenderState to set the sw vp render state in SetVertexShader */
1788 hrc
= IWineD3DDevice_CreateVertexShader(This
->WineD3DDevice
, pFunction
,
1789 NULL
/* output signature */, &object
->wineD3DVertexShader
, (IUnknown
*)object
);
1793 /* free up object */
1794 FIXME("Call to IWineD3DDevice_CreateVertexShader failed\n");
1795 d3d8_free_handle(&This
->handle_table
, handle
);
1796 IDirect3DVertexDeclaration8_Release(object
->vertex_declaration
);
1797 HeapFree(GetProcessHeap(), 0, object
);
1802 load_local_constants(pDeclaration
, object
->wineD3DVertexShader
);
1803 TRACE("(%p) : returning %p (handle %#x)\n", This
, object
, *ppShader
);
1807 LeaveCriticalSection(&d3d8_cs
);
1812 static IDirect3DVertexDeclaration8Impl
*IDirect3DDevice8Impl_FindDecl(IDirect3DDevice8Impl
*This
, DWORD fvf
)
1814 IDirect3DVertexDeclaration8Impl
*d3d8_declaration
;
1816 int p
, low
, high
; /* deliberately signed */
1817 struct FvfToDecl
*convertedDecls
= This
->decls
;
1819 TRACE("Searching for declaration for fvf %08x... ", fvf
);
1822 high
= This
->numConvertedDecls
- 1;
1823 while(low
<= high
) {
1824 p
= (low
+ high
) >> 1;
1826 if(convertedDecls
[p
].fvf
== fvf
) {
1827 TRACE("found %p\n", convertedDecls
[p
].decl
);
1828 return (IDirect3DVertexDeclaration8Impl
*)convertedDecls
[p
].decl
;
1829 } else if(convertedDecls
[p
].fvf
< fvf
) {
1835 TRACE("not found. Creating and inserting at position %d.\n", low
);
1837 d3d8_declaration
= HeapAlloc(GetProcessHeap(), 0, sizeof(*d3d8_declaration
));
1838 if (!d3d8_declaration
)
1840 ERR("Memory allocation failed.\n");
1844 d3d8_declaration
->ref_count
= 1;
1845 d3d8_declaration
->lpVtbl
= &Direct3DVertexDeclaration8_Vtbl
;
1846 d3d8_declaration
->elements
= NULL
;
1847 d3d8_declaration
->elements_size
= 0;
1848 d3d8_declaration
->shader_handle
= fvf
;
1850 hr
= IWineD3DDevice_CreateVertexDeclarationFromFVF(This
->WineD3DDevice
,
1851 &d3d8_declaration
->wined3d_vertex_declaration
, (IUnknown
*)d3d8_declaration
, fvf
);
1854 ERR("Failed to create wined3d vertex declaration.\n");
1855 HeapFree(GetProcessHeap(), 0, d3d8_declaration
);
1859 if(This
->declArraySize
== This
->numConvertedDecls
) {
1860 int grow
= This
->declArraySize
/ 2;
1861 convertedDecls
= HeapReAlloc(GetProcessHeap(), 0, convertedDecls
,
1862 sizeof(convertedDecls
[0]) * (This
->numConvertedDecls
+ grow
));
1863 if(!convertedDecls
) {
1864 /* This will destroy it */
1865 IDirect3DVertexDeclaration8_Release((IDirect3DVertexDeclaration8
*)d3d8_declaration
);
1868 This
->decls
= convertedDecls
;
1869 This
->declArraySize
+= grow
;
1872 memmove(convertedDecls
+ low
+ 1, convertedDecls
+ low
, sizeof(convertedDecls
[0]) * (This
->numConvertedDecls
- low
));
1873 convertedDecls
[low
].decl
= (IDirect3DVertexDeclaration8
*)d3d8_declaration
;
1874 convertedDecls
[low
].fvf
= fvf
;
1875 This
->numConvertedDecls
++;
1877 TRACE("Returning %p. %u decls in array\n", d3d8_declaration
, This
->numConvertedDecls
);
1878 return d3d8_declaration
;
1881 static HRESULT WINAPI
IDirect3DDevice8Impl_SetVertexShader(LPDIRECT3DDEVICE8 iface
, DWORD pShader
) {
1882 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1883 IDirect3DVertexShader8Impl
*shader
;
1886 TRACE("(%p) : Relay\n", This
);
1888 if (VS_HIGHESTFIXEDFXF
>= pShader
) {
1889 TRACE("Setting FVF, %#x\n", pShader
);
1891 EnterCriticalSection(&d3d8_cs
);
1892 IWineD3DDevice_SetVertexDeclaration(This
->WineD3DDevice
,
1893 IDirect3DDevice8Impl_FindDecl(This
, pShader
)->wined3d_vertex_declaration
);
1894 IWineD3DDevice_SetVertexShader(This
->WineD3DDevice
, NULL
);
1895 LeaveCriticalSection(&d3d8_cs
);
1899 TRACE("Setting shader\n");
1901 EnterCriticalSection(&d3d8_cs
);
1902 shader
= d3d8_get_object(&This
->handle_table
, pShader
- (VS_HIGHESTFIXEDFXF
+ 1));
1905 WARN("Invalid handle (%#x) passed.\n", pShader
);
1906 LeaveCriticalSection(&d3d8_cs
);
1907 return D3DERR_INVALIDCALL
;
1910 hr
= IWineD3DDevice_SetVertexDeclaration(This
->WineD3DDevice
,
1911 ((IDirect3DVertexDeclaration8Impl
*)shader
->vertex_declaration
)->wined3d_vertex_declaration
);
1912 if (SUCCEEDED(hr
)) hr
= IWineD3DDevice_SetVertexShader(This
->WineD3DDevice
, shader
->wineD3DVertexShader
);
1913 LeaveCriticalSection(&d3d8_cs
);
1915 TRACE("Returning hr %#x\n", hr
);
1920 static HRESULT WINAPI
IDirect3DDevice8Impl_GetVertexShader(LPDIRECT3DDEVICE8 iface
, DWORD
* ppShader
) {
1921 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1922 IWineD3DVertexDeclaration
*wined3d_declaration
;
1923 IDirect3DVertexDeclaration8
*d3d8_declaration
;
1926 TRACE("(%p) : Relay device@%p\n", This
, This
->WineD3DDevice
);
1927 EnterCriticalSection(&d3d8_cs
);
1929 hrc
= IWineD3DDevice_GetVertexDeclaration(This
->WineD3DDevice
, &wined3d_declaration
);
1932 LeaveCriticalSection(&d3d8_cs
);
1933 WARN("(%p) : Call to IWineD3DDevice_GetVertexDeclaration failed %#x (device %p)\n",
1934 This
, hrc
, This
->WineD3DDevice
);
1938 if (!wined3d_declaration
)
1940 LeaveCriticalSection(&d3d8_cs
);
1945 hrc
= IWineD3DVertexDeclaration_GetParent(wined3d_declaration
, (IUnknown
**)&d3d8_declaration
);
1946 IWineD3DVertexDeclaration_Release(wined3d_declaration
);
1947 LeaveCriticalSection(&d3d8_cs
);
1950 *ppShader
= ((IDirect3DVertexDeclaration8Impl
*)d3d8_declaration
)->shader_handle
;
1951 IDirect3DVertexDeclaration8_Release(d3d8_declaration
);
1954 TRACE("(%p) : returning %#x\n", This
, *ppShader
);
1959 static HRESULT WINAPI
IDirect3DDevice8Impl_DeleteVertexShader(LPDIRECT3DDEVICE8 iface
, DWORD pShader
) {
1960 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1961 IDirect3DVertexShader8Impl
*shader
;
1962 IWineD3DVertexShader
*cur
= NULL
;
1964 TRACE("(%p) : pShader %#x\n", This
, pShader
);
1966 EnterCriticalSection(&d3d8_cs
);
1968 shader
= d3d8_free_handle(&This
->handle_table
, pShader
- (VS_HIGHESTFIXEDFXF
+ 1));
1971 WARN("Invalid handle (%#x) passed.\n", pShader
);
1972 LeaveCriticalSection(&d3d8_cs
);
1973 return D3DERR_INVALIDCALL
;
1976 IWineD3DDevice_GetVertexShader(This
->WineD3DDevice
, &cur
);
1980 if (cur
== shader
->wineD3DVertexShader
) IDirect3DDevice8_SetVertexShader(iface
, 0);
1981 IWineD3DVertexShader_Release(cur
);
1984 LeaveCriticalSection(&d3d8_cs
);
1986 if (IUnknown_Release((IUnknown
*)shader
))
1988 ERR("Shader %p has references left, this shouldn't happen.\n", shader
);
1994 static HRESULT WINAPI
IDirect3DDevice8Impl_SetVertexShaderConstant(LPDIRECT3DDEVICE8 iface
, DWORD Register
, CONST
void* pConstantData
, DWORD ConstantCount
) {
1995 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
1997 TRACE("(%p) : Relay\n", This
);
1999 if(Register
+ ConstantCount
> D3D8_MAX_VERTEX_SHADER_CONSTANTF
) {
2000 WARN("Trying to access %u constants, but d3d8 only supports %u\n",
2001 Register
+ ConstantCount
, D3D8_MAX_VERTEX_SHADER_CONSTANTF
);
2002 return D3DERR_INVALIDCALL
;
2005 EnterCriticalSection(&d3d8_cs
);
2006 hr
= IWineD3DDevice_SetVertexShaderConstantF(This
->WineD3DDevice
, Register
, pConstantData
, ConstantCount
);
2007 LeaveCriticalSection(&d3d8_cs
);
2011 static HRESULT WINAPI
IDirect3DDevice8Impl_GetVertexShaderConstant(LPDIRECT3DDEVICE8 iface
, DWORD Register
, void* pConstantData
, DWORD ConstantCount
) {
2012 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
2014 TRACE("(%p) : Relay\n", This
);
2016 if(Register
+ ConstantCount
> D3D8_MAX_VERTEX_SHADER_CONSTANTF
) {
2017 WARN("Trying to access %u constants, but d3d8 only supports %u\n",
2018 Register
+ ConstantCount
, D3D8_MAX_VERTEX_SHADER_CONSTANTF
);
2019 return D3DERR_INVALIDCALL
;
2022 EnterCriticalSection(&d3d8_cs
);
2023 hr
= IWineD3DDevice_GetVertexShaderConstantF(This
->WineD3DDevice
, Register
, pConstantData
, ConstantCount
);
2024 LeaveCriticalSection(&d3d8_cs
);
2028 static HRESULT WINAPI
IDirect3DDevice8Impl_GetVertexShaderDeclaration(LPDIRECT3DDEVICE8 iface
, DWORD pVertexShader
, void* pData
, DWORD
* pSizeOfData
) {
2029 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
2030 IDirect3DVertexDeclaration8Impl
*declaration
;
2031 IDirect3DVertexShader8Impl
*shader
;
2033 TRACE("(%p) : pVertexShader 0x%08x, pData %p, *pSizeOfData %u\n", This
, pVertexShader
, pData
, *pSizeOfData
);
2035 EnterCriticalSection(&d3d8_cs
);
2037 shader
= d3d8_get_object(&This
->handle_table
, pVertexShader
- (VS_HIGHESTFIXEDFXF
+ 1));
2038 LeaveCriticalSection(&d3d8_cs
);
2041 WARN("Invalid handle (%#x) passed.\n", pVertexShader
);
2042 return D3DERR_INVALIDCALL
;
2044 declaration
= (IDirect3DVertexDeclaration8Impl
*)shader
->vertex_declaration
;
2046 /* If pData is NULL, we just return the required size of the buffer. */
2048 *pSizeOfData
= declaration
->elements_size
;
2052 /* MSDN claims that if *pSizeOfData is smaller than the required size
2053 * we should write the required size and return D3DERR_MOREDATA.
2054 * That's not actually true. */
2055 if (*pSizeOfData
< declaration
->elements_size
) {
2056 return D3DERR_INVALIDCALL
;
2059 CopyMemory(pData
, declaration
->elements
, declaration
->elements_size
);
2064 static HRESULT WINAPI
IDirect3DDevice8Impl_GetVertexShaderFunction(LPDIRECT3DDEVICE8 iface
, DWORD pVertexShader
, void* pData
, DWORD
* pSizeOfData
) {
2065 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
2066 IDirect3DVertexShader8Impl
*shader
= NULL
;
2069 TRACE("(%p) : pVertexShader %#x, pData %p, pSizeOfData %p\n", This
, pVertexShader
, pData
, pSizeOfData
);
2071 EnterCriticalSection(&d3d8_cs
);
2073 shader
= d3d8_get_object(&This
->handle_table
, pVertexShader
- (VS_HIGHESTFIXEDFXF
+ 1));
2076 WARN("Invalid handle (%#x) passed.\n", pVertexShader
);
2077 LeaveCriticalSection(&d3d8_cs
);
2078 return D3DERR_INVALIDCALL
;
2081 if (!shader
->wineD3DVertexShader
)
2083 LeaveCriticalSection(&d3d8_cs
);
2088 hr
= IWineD3DVertexShader_GetFunction(shader
->wineD3DVertexShader
, pData
, pSizeOfData
);
2090 LeaveCriticalSection(&d3d8_cs
);
2094 static HRESULT WINAPI
IDirect3DDevice8Impl_SetIndices(LPDIRECT3DDEVICE8 iface
, IDirect3DIndexBuffer8
* pIndexData
, UINT baseVertexIndex
) {
2095 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
2097 IDirect3DIndexBuffer8Impl
*ib
= (IDirect3DIndexBuffer8Impl
*)pIndexData
;
2098 TRACE("(%p) Relay\n", This
);
2100 EnterCriticalSection(&d3d8_cs
);
2101 /* WineD3D takes an INT(due to d3d9), but d3d8 uses UINTs. Do I have to add a check here that
2102 * the UINT doesn't cause an overflow in the INT? It seems rather unlikely because such large
2103 * vertex buffers can't be created to address them with an index that requires the 32nd bit
2104 * (4 Byte minimum vertex size * 2^31-1 -> 8 gb buffer. The index sign would be the least
2107 IWineD3DDevice_SetBaseVertexIndex(This
->WineD3DDevice
, baseVertexIndex
);
2108 hr
= IWineD3DDevice_SetIndices(This
->WineD3DDevice
,
2109 ib
? ib
->wineD3DIndexBuffer
: NULL
,
2110 ib
? ib
->format
: WINED3DFMT_UNKNOWN
);
2111 LeaveCriticalSection(&d3d8_cs
);
2115 static HRESULT WINAPI
IDirect3DDevice8Impl_GetIndices(LPDIRECT3DDEVICE8 iface
, IDirect3DIndexBuffer8
** ppIndexData
,UINT
* pBaseVertexIndex
) {
2116 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
2117 IWineD3DBuffer
*retIndexData
= NULL
;
2118 HRESULT rc
= D3D_OK
;
2120 TRACE("(%p) Relay\n", This
);
2122 if(ppIndexData
== NULL
){
2123 return D3DERR_INVALIDCALL
;
2126 EnterCriticalSection(&d3d8_cs
);
2127 /* The case from UINT to INT is safe because d3d8 will never set negative values */
2128 IWineD3DDevice_GetBaseVertexIndex(This
->WineD3DDevice
, (INT
*) pBaseVertexIndex
);
2129 rc
= IWineD3DDevice_GetIndices(This
->WineD3DDevice
, &retIndexData
);
2130 if (SUCCEEDED(rc
) && retIndexData
) {
2131 IWineD3DBuffer_GetParent(retIndexData
, (IUnknown
**)ppIndexData
);
2132 IWineD3DBuffer_Release(retIndexData
);
2134 if (FAILED(rc
)) FIXME("Call to GetIndices failed\n");
2135 *ppIndexData
= NULL
;
2137 LeaveCriticalSection(&d3d8_cs
);
2141 static HRESULT WINAPI
IDirect3DDevice8Impl_CreatePixelShader(LPDIRECT3DDEVICE8 iface
, CONST DWORD
* pFunction
, DWORD
* ppShader
) {
2142 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
2143 IDirect3DPixelShader8Impl
*object
;
2147 TRACE("(%p) : pFunction(%p), ppShader(%p)\n", This
, pFunction
, ppShader
);
2149 if (NULL
== ppShader
) {
2150 TRACE("(%p) Invalid call\n", This
);
2151 return D3DERR_INVALIDCALL
;
2154 object
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*object
));
2157 ERR("Failed to allocate memmory.\n");
2158 return E_OUTOFMEMORY
;
2162 object
->lpVtbl
= &Direct3DPixelShader8_Vtbl
;
2164 EnterCriticalSection(&d3d8_cs
);
2165 hr
= IWineD3DDevice_CreatePixelShader(This
->WineD3DDevice
, pFunction
,
2166 NULL
, &object
->wineD3DPixelShader
, (IUnknown
*)object
);
2169 LeaveCriticalSection(&d3d8_cs
);
2170 FIXME("(%p) call to IWineD3DDevice_CreatePixelShader failed\n", This
);
2171 HeapFree(GetProcessHeap(), 0 , object
);
2176 handle
= d3d8_allocate_handle(&This
->handle_table
, object
);
2177 LeaveCriticalSection(&d3d8_cs
);
2178 if (handle
== D3D8_INVALID_HANDLE
)
2180 ERR("Failed to allocate shader handle\n");
2181 IDirect3DVertexShader8_Release((IUnknown
*)object
);
2182 return E_OUTOFMEMORY
;
2185 *ppShader
= object
->handle
= handle
+ VS_HIGHESTFIXEDFXF
+ 1;
2186 TRACE("(%p) : returning %p (handle %#x)\n", This
, object
, *ppShader
);
2191 static HRESULT WINAPI
IDirect3DDevice8Impl_SetPixelShader(LPDIRECT3DDEVICE8 iface
, DWORD pShader
) {
2192 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
2193 IDirect3DPixelShader8Impl
*shader
;
2196 TRACE("(%p) : pShader %#x\n", This
, pShader
);
2198 EnterCriticalSection(&d3d8_cs
);
2202 hr
= IWineD3DDevice_SetPixelShader(This
->WineD3DDevice
, NULL
);
2203 LeaveCriticalSection(&d3d8_cs
);
2207 shader
= d3d8_get_object(&This
->handle_table
, pShader
- (VS_HIGHESTFIXEDFXF
+ 1));
2210 WARN("Invalid handle (%#x) passed.\n", pShader
);
2211 LeaveCriticalSection(&d3d8_cs
);
2212 return D3DERR_INVALIDCALL
;
2215 TRACE("(%p) : Setting shader %p\n", This
, shader
);
2216 hr
= IWineD3DDevice_SetPixelShader(This
->WineD3DDevice
, shader
->wineD3DPixelShader
);
2217 LeaveCriticalSection(&d3d8_cs
);
2221 static HRESULT WINAPI
IDirect3DDevice8Impl_GetPixelShader(LPDIRECT3DDEVICE8 iface
, DWORD
* ppShader
) {
2222 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
2223 IWineD3DPixelShader
*object
;
2225 HRESULT hrc
= D3D_OK
;
2226 TRACE("(%p) Relay\n", This
);
2227 if (NULL
== ppShader
) {
2228 TRACE("(%p) Invalid call\n", This
);
2229 return D3DERR_INVALIDCALL
;
2232 EnterCriticalSection(&d3d8_cs
);
2233 hrc
= IWineD3DDevice_GetPixelShader(This
->WineD3DDevice
, &object
);
2234 if (D3D_OK
== hrc
&& NULL
!= object
) {
2235 IDirect3DPixelShader8Impl
*d3d8_shader
;
2236 hrc
= IWineD3DPixelShader_GetParent(object
, (IUnknown
**)&d3d8_shader
);
2237 IWineD3DPixelShader_Release(object
);
2238 *ppShader
= d3d8_shader
->handle
;
2239 IDirect3DPixelShader8_Release((IDirect3DPixelShader8
*)d3d8_shader
);
2244 TRACE("(%p) : returning %#x\n", This
, *ppShader
);
2245 LeaveCriticalSection(&d3d8_cs
);
2249 static HRESULT WINAPI
IDirect3DDevice8Impl_DeletePixelShader(LPDIRECT3DDEVICE8 iface
, DWORD pShader
) {
2250 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
2251 IDirect3DPixelShader8Impl
*shader
;
2252 IWineD3DPixelShader
*cur
= NULL
;
2254 TRACE("(%p) : pShader %#x\n", This
, pShader
);
2256 EnterCriticalSection(&d3d8_cs
);
2258 shader
= d3d8_free_handle(&This
->handle_table
, pShader
- (VS_HIGHESTFIXEDFXF
+ 1));
2261 WARN("Invalid handle (%#x) passed.\n", pShader
);
2262 LeaveCriticalSection(&d3d8_cs
);
2263 return D3DERR_INVALIDCALL
;
2266 IWineD3DDevice_GetPixelShader(This
->WineD3DDevice
, &cur
);
2270 if (cur
== shader
->wineD3DPixelShader
) IDirect3DDevice8_SetPixelShader(iface
, 0);
2271 IWineD3DPixelShader_Release(cur
);
2274 LeaveCriticalSection(&d3d8_cs
);
2276 if (IUnknown_Release((IUnknown
*)shader
))
2278 ERR("Shader %p has references left, this shouldn't happen.\n", shader
);
2284 static HRESULT WINAPI
IDirect3DDevice8Impl_SetPixelShaderConstant(LPDIRECT3DDEVICE8 iface
, DWORD Register
, CONST
void* pConstantData
, DWORD ConstantCount
) {
2285 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
2287 TRACE("(%p) Relay\n", This
);
2289 EnterCriticalSection(&d3d8_cs
);
2290 hr
= IWineD3DDevice_SetPixelShaderConstantF(This
->WineD3DDevice
, Register
, pConstantData
, ConstantCount
);
2291 LeaveCriticalSection(&d3d8_cs
);
2295 static HRESULT WINAPI
IDirect3DDevice8Impl_GetPixelShaderConstant(LPDIRECT3DDEVICE8 iface
, DWORD Register
, void* pConstantData
, DWORD ConstantCount
) {
2296 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
2298 TRACE("(%p) Relay\n", This
);
2300 EnterCriticalSection(&d3d8_cs
);
2301 hr
= IWineD3DDevice_GetPixelShaderConstantF(This
->WineD3DDevice
, Register
, pConstantData
, ConstantCount
);
2302 LeaveCriticalSection(&d3d8_cs
);
2306 static HRESULT WINAPI
IDirect3DDevice8Impl_GetPixelShaderFunction(LPDIRECT3DDEVICE8 iface
, DWORD pPixelShader
, void* pData
, DWORD
* pSizeOfData
) {
2307 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
2308 IDirect3DPixelShader8Impl
*shader
= NULL
;
2311 TRACE("(%p) : pPixelShader %#x, pData %p, pSizeOfData %p\n", This
, pPixelShader
, pData
, pSizeOfData
);
2313 EnterCriticalSection(&d3d8_cs
);
2314 shader
= d3d8_get_object(&This
->handle_table
, pPixelShader
- (VS_HIGHESTFIXEDFXF
+ 1));
2317 WARN("Invalid handle (%#x) passed.\n", pPixelShader
);
2318 LeaveCriticalSection(&d3d8_cs
);
2319 return D3DERR_INVALIDCALL
;
2322 hr
= IWineD3DPixelShader_GetFunction(shader
->wineD3DPixelShader
, pData
, pSizeOfData
);
2323 LeaveCriticalSection(&d3d8_cs
);
2327 static HRESULT WINAPI
IDirect3DDevice8Impl_DrawRectPatch(LPDIRECT3DDEVICE8 iface
, UINT Handle
,CONST
float* pNumSegs
,CONST D3DRECTPATCH_INFO
* pRectPatchInfo
) {
2328 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
2330 TRACE("(%p) Relay\n", This
);
2332 EnterCriticalSection(&d3d8_cs
);
2333 hr
= IWineD3DDevice_DrawRectPatch(This
->WineD3DDevice
, Handle
, pNumSegs
, (CONST WINED3DRECTPATCH_INFO
*)pRectPatchInfo
);
2334 LeaveCriticalSection(&d3d8_cs
);
2338 static HRESULT WINAPI
IDirect3DDevice8Impl_DrawTriPatch(LPDIRECT3DDEVICE8 iface
, UINT Handle
,CONST
float* pNumSegs
,CONST D3DTRIPATCH_INFO
* pTriPatchInfo
) {
2339 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
2341 TRACE("(%p) Relay\n", This
);
2343 EnterCriticalSection(&d3d8_cs
);
2344 hr
= IWineD3DDevice_DrawTriPatch(This
->WineD3DDevice
, Handle
, pNumSegs
, (CONST WINED3DTRIPATCH_INFO
*)pTriPatchInfo
);
2345 LeaveCriticalSection(&d3d8_cs
);
2349 static HRESULT WINAPI
IDirect3DDevice8Impl_DeletePatch(LPDIRECT3DDEVICE8 iface
, UINT Handle
) {
2350 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
2352 TRACE("(%p) Relay\n", This
);
2354 EnterCriticalSection(&d3d8_cs
);
2355 hr
= IWineD3DDevice_DeletePatch(This
->WineD3DDevice
, Handle
);
2356 LeaveCriticalSection(&d3d8_cs
);
2360 static HRESULT WINAPI
IDirect3DDevice8Impl_SetStreamSource(LPDIRECT3DDEVICE8 iface
, UINT StreamNumber
,IDirect3DVertexBuffer8
* pStreamData
,UINT Stride
) {
2361 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
2363 TRACE("(%p) Relay\n" , This
);
2365 EnterCriticalSection(&d3d8_cs
);
2366 hr
= IWineD3DDevice_SetStreamSource(This
->WineD3DDevice
, StreamNumber
,
2367 NULL
== pStreamData
? NULL
: ((IDirect3DVertexBuffer8Impl
*)pStreamData
)->wineD3DVertexBuffer
,
2368 0/* Offset in bytes */, Stride
);
2369 LeaveCriticalSection(&d3d8_cs
);
2373 static HRESULT WINAPI
IDirect3DDevice8Impl_GetStreamSource(LPDIRECT3DDEVICE8 iface
, UINT StreamNumber
,IDirect3DVertexBuffer8
** pStream
,UINT
* pStride
) {
2374 IDirect3DDevice8Impl
*This
= (IDirect3DDevice8Impl
*)iface
;
2375 IWineD3DBuffer
*retStream
= NULL
;
2376 HRESULT rc
= D3D_OK
;
2378 TRACE("(%p) Relay\n" , This
);
2380 if(pStream
== NULL
){
2381 return D3DERR_INVALIDCALL
;
2384 EnterCriticalSection(&d3d8_cs
);
2385 rc
= IWineD3DDevice_GetStreamSource(This
->WineD3DDevice
, StreamNumber
, &retStream
, 0 /* Offset in bytes */, pStride
);
2386 if (rc
== D3D_OK
&& NULL
!= retStream
) {
2387 IWineD3DBuffer_GetParent(retStream
, (IUnknown
**)pStream
);
2388 IWineD3DBuffer_Release(retStream
);
2391 FIXME("Call to GetStreamSource failed %p\n", pStride
);
2395 LeaveCriticalSection(&d3d8_cs
);
2401 const IDirect3DDevice8Vtbl Direct3DDevice8_Vtbl
=
2403 IDirect3DDevice8Impl_QueryInterface
,
2404 IDirect3DDevice8Impl_AddRef
,
2405 IDirect3DDevice8Impl_Release
,
2406 IDirect3DDevice8Impl_TestCooperativeLevel
,
2407 IDirect3DDevice8Impl_GetAvailableTextureMem
,
2408 IDirect3DDevice8Impl_ResourceManagerDiscardBytes
,
2409 IDirect3DDevice8Impl_GetDirect3D
,
2410 IDirect3DDevice8Impl_GetDeviceCaps
,
2411 IDirect3DDevice8Impl_GetDisplayMode
,
2412 IDirect3DDevice8Impl_GetCreationParameters
,
2413 IDirect3DDevice8Impl_SetCursorProperties
,
2414 IDirect3DDevice8Impl_SetCursorPosition
,
2415 IDirect3DDevice8Impl_ShowCursor
,
2416 IDirect3DDevice8Impl_CreateAdditionalSwapChain
,
2417 IDirect3DDevice8Impl_Reset
,
2418 IDirect3DDevice8Impl_Present
,
2419 IDirect3DDevice8Impl_GetBackBuffer
,
2420 IDirect3DDevice8Impl_GetRasterStatus
,
2421 IDirect3DDevice8Impl_SetGammaRamp
,
2422 IDirect3DDevice8Impl_GetGammaRamp
,
2423 IDirect3DDevice8Impl_CreateTexture
,
2424 IDirect3DDevice8Impl_CreateVolumeTexture
,
2425 IDirect3DDevice8Impl_CreateCubeTexture
,
2426 IDirect3DDevice8Impl_CreateVertexBuffer
,
2427 IDirect3DDevice8Impl_CreateIndexBuffer
,
2428 IDirect3DDevice8Impl_CreateRenderTarget
,
2429 IDirect3DDevice8Impl_CreateDepthStencilSurface
,
2430 IDirect3DDevice8Impl_CreateImageSurface
,
2431 IDirect3DDevice8Impl_CopyRects
,
2432 IDirect3DDevice8Impl_UpdateTexture
,
2433 IDirect3DDevice8Impl_GetFrontBuffer
,
2434 IDirect3DDevice8Impl_SetRenderTarget
,
2435 IDirect3DDevice8Impl_GetRenderTarget
,
2436 IDirect3DDevice8Impl_GetDepthStencilSurface
,
2437 IDirect3DDevice8Impl_BeginScene
,
2438 IDirect3DDevice8Impl_EndScene
,
2439 IDirect3DDevice8Impl_Clear
,
2440 IDirect3DDevice8Impl_SetTransform
,
2441 IDirect3DDevice8Impl_GetTransform
,
2442 IDirect3DDevice8Impl_MultiplyTransform
,
2443 IDirect3DDevice8Impl_SetViewport
,
2444 IDirect3DDevice8Impl_GetViewport
,
2445 IDirect3DDevice8Impl_SetMaterial
,
2446 IDirect3DDevice8Impl_GetMaterial
,
2447 IDirect3DDevice8Impl_SetLight
,
2448 IDirect3DDevice8Impl_GetLight
,
2449 IDirect3DDevice8Impl_LightEnable
,
2450 IDirect3DDevice8Impl_GetLightEnable
,
2451 IDirect3DDevice8Impl_SetClipPlane
,
2452 IDirect3DDevice8Impl_GetClipPlane
,
2453 IDirect3DDevice8Impl_SetRenderState
,
2454 IDirect3DDevice8Impl_GetRenderState
,
2455 IDirect3DDevice8Impl_BeginStateBlock
,
2456 IDirect3DDevice8Impl_EndStateBlock
,
2457 IDirect3DDevice8Impl_ApplyStateBlock
,
2458 IDirect3DDevice8Impl_CaptureStateBlock
,
2459 IDirect3DDevice8Impl_DeleteStateBlock
,
2460 IDirect3DDevice8Impl_CreateStateBlock
,
2461 IDirect3DDevice8Impl_SetClipStatus
,
2462 IDirect3DDevice8Impl_GetClipStatus
,
2463 IDirect3DDevice8Impl_GetTexture
,
2464 IDirect3DDevice8Impl_SetTexture
,
2465 IDirect3DDevice8Impl_GetTextureStageState
,
2466 IDirect3DDevice8Impl_SetTextureStageState
,
2467 IDirect3DDevice8Impl_ValidateDevice
,
2468 IDirect3DDevice8Impl_GetInfo
,
2469 IDirect3DDevice8Impl_SetPaletteEntries
,
2470 IDirect3DDevice8Impl_GetPaletteEntries
,
2471 IDirect3DDevice8Impl_SetCurrentTexturePalette
,
2472 IDirect3DDevice8Impl_GetCurrentTexturePalette
,
2473 IDirect3DDevice8Impl_DrawPrimitive
,
2474 IDirect3DDevice8Impl_DrawIndexedPrimitive
,
2475 IDirect3DDevice8Impl_DrawPrimitiveUP
,
2476 IDirect3DDevice8Impl_DrawIndexedPrimitiveUP
,
2477 IDirect3DDevice8Impl_ProcessVertices
,
2478 IDirect3DDevice8Impl_CreateVertexShader
,
2479 IDirect3DDevice8Impl_SetVertexShader
,
2480 IDirect3DDevice8Impl_GetVertexShader
,
2481 IDirect3DDevice8Impl_DeleteVertexShader
,
2482 IDirect3DDevice8Impl_SetVertexShaderConstant
,
2483 IDirect3DDevice8Impl_GetVertexShaderConstant
,
2484 IDirect3DDevice8Impl_GetVertexShaderDeclaration
,
2485 IDirect3DDevice8Impl_GetVertexShaderFunction
,
2486 IDirect3DDevice8Impl_SetStreamSource
,
2487 IDirect3DDevice8Impl_GetStreamSource
,
2488 IDirect3DDevice8Impl_SetIndices
,
2489 IDirect3DDevice8Impl_GetIndices
,
2490 IDirect3DDevice8Impl_CreatePixelShader
,
2491 IDirect3DDevice8Impl_SetPixelShader
,
2492 IDirect3DDevice8Impl_GetPixelShader
,
2493 IDirect3DDevice8Impl_DeletePixelShader
,
2494 IDirect3DDevice8Impl_SetPixelShaderConstant
,
2495 IDirect3DDevice8Impl_GetPixelShaderConstant
,
2496 IDirect3DDevice8Impl_GetPixelShaderFunction
,
2497 IDirect3DDevice8Impl_DrawRectPatch
,
2498 IDirect3DDevice8Impl_DrawTriPatch
,
2499 IDirect3DDevice8Impl_DeletePatch
2502 ULONG WINAPI
D3D8CB_DestroySurface(IWineD3DSurface
*pSurface
) {
2503 IDirect3DSurface8Impl
* surfaceParent
;
2504 TRACE("(%p) call back\n", pSurface
);
2506 IWineD3DSurface_GetParent(pSurface
, (IUnknown
**) &surfaceParent
);
2507 /* GetParent's AddRef was forwarded to an object in destruction.
2508 * Releasing it here again would cause an endless recursion. */
2509 surfaceParent
->forwardReference
= NULL
;
2510 return IDirect3DSurface8_Release((IDirect3DSurface8
*) surfaceParent
);
2513 /* IWineD3DDeviceParent IUnknown methods */
2515 static inline struct IDirect3DDevice8Impl
*device_from_device_parent(IWineD3DDeviceParent
*iface
)
2517 return (struct IDirect3DDevice8Impl
*)((char*)iface
2518 - FIELD_OFFSET(struct IDirect3DDevice8Impl
, device_parent_vtbl
));
2521 static HRESULT STDMETHODCALLTYPE
device_parent_QueryInterface(IWineD3DDeviceParent
*iface
, REFIID riid
, void **object
)
2523 struct IDirect3DDevice8Impl
*This
= device_from_device_parent(iface
);
2524 return IDirect3DDevice8Impl_QueryInterface((IDirect3DDevice8
*)This
, riid
, object
);
2527 static ULONG STDMETHODCALLTYPE
device_parent_AddRef(IWineD3DDeviceParent
*iface
)
2529 struct IDirect3DDevice8Impl
*This
= device_from_device_parent(iface
);
2530 return IDirect3DDevice8Impl_AddRef((IDirect3DDevice8
*)This
);
2533 static ULONG STDMETHODCALLTYPE
device_parent_Release(IWineD3DDeviceParent
*iface
)
2535 struct IDirect3DDevice8Impl
*This
= device_from_device_parent(iface
);
2536 return IDirect3DDevice8Impl_Release((IDirect3DDevice8
*)This
);
2539 /* IWineD3DDeviceParent methods */
2541 static void STDMETHODCALLTYPE
device_parent_WineD3DDeviceCreated(IWineD3DDeviceParent
*iface
, IWineD3DDevice
*device
)
2543 TRACE("iface %p, device %p\n", iface
, device
);
2546 static HRESULT STDMETHODCALLTYPE
device_parent_CreateSurface(IWineD3DDeviceParent
*iface
,
2547 IUnknown
*superior
, UINT width
, UINT height
, WINED3DFORMAT format
, DWORD usage
,
2548 WINED3DPOOL pool
, UINT level
, WINED3DCUBEMAP_FACES face
, IWineD3DSurface
**surface
)
2550 struct IDirect3DDevice8Impl
*This
= device_from_device_parent(iface
);
2551 IDirect3DSurface8Impl
*d3d_surface
;
2552 BOOL lockable
= TRUE
;
2555 TRACE("iface %p, superior %p, width %u, height %u, format %#x, usage %#x,\n"
2556 "\tpool %#x, level %u, face %u, surface %p\n",
2557 iface
, superior
, width
, height
, format
, usage
, pool
, level
, face
, surface
);
2560 if (pool
== WINED3DPOOL_DEFAULT
&& !(usage
& WINED3DUSAGE_DYNAMIC
)) lockable
= FALSE
;
2562 hr
= IDirect3DDevice8Impl_CreateSurface((IDirect3DDevice8
*)This
, width
, height
,
2563 d3dformat_from_wined3dformat(format
), lockable
, FALSE
/* Discard */, level
,
2564 (IDirect3DSurface8
**)&d3d_surface
, D3DRTYPE_SURFACE
, usage
, pool
,
2565 D3DMULTISAMPLE_NONE
, 0 /* MultisampleQuality */);
2568 ERR("(%p) CreateSurface failed, returning %#x\n", iface
, hr
);
2572 *surface
= d3d_surface
->wineD3DSurface
;
2573 d3d_surface
->container
= superior
;
2574 IUnknown_Release(d3d_surface
->parentDevice
);
2575 d3d_surface
->parentDevice
= NULL
;
2576 d3d_surface
->forwardReference
= superior
;
2581 static HRESULT STDMETHODCALLTYPE
device_parent_CreateRenderTarget(IWineD3DDeviceParent
*iface
,
2582 IUnknown
*superior
, UINT width
, UINT height
, WINED3DFORMAT format
, WINED3DMULTISAMPLE_TYPE multisample_type
,
2583 DWORD multisample_quality
, BOOL lockable
, IWineD3DSurface
**surface
)
2585 struct IDirect3DDevice8Impl
*This
= device_from_device_parent(iface
);
2586 IDirect3DSurface8Impl
*d3d_surface
;
2589 TRACE("iface %p, superior %p, width %u, height %u, format %#x, multisample_type %#x,\n"
2590 "\tmultisample_quality %u, lockable %u, surface %p\n",
2591 iface
, superior
, width
, height
, format
, multisample_type
, multisample_quality
, lockable
, surface
);
2593 hr
= IDirect3DDevice8_CreateRenderTarget((IDirect3DDevice8
*)This
, width
, height
,
2594 d3dformat_from_wined3dformat(format
), multisample_type
, lockable
, (IDirect3DSurface8
**)&d3d_surface
);
2597 ERR("(%p) CreateRenderTarget failed, returning %#x\n", iface
, hr
);
2601 *surface
= d3d_surface
->wineD3DSurface
;
2602 d3d_surface
->container
= (IUnknown
*)This
;
2603 d3d_surface
->isImplicit
= TRUE
;
2604 /* Implicit surfaces are created with an refcount of 0 */
2605 IUnknown_Release((IUnknown
*)d3d_surface
);
2610 static HRESULT STDMETHODCALLTYPE
device_parent_CreateDepthStencilSurface(IWineD3DDeviceParent
*iface
,
2611 IUnknown
*superior
, UINT width
, UINT height
, WINED3DFORMAT format
, WINED3DMULTISAMPLE_TYPE multisample_type
,
2612 DWORD multisample_quality
, BOOL discard
, IWineD3DSurface
**surface
)
2614 struct IDirect3DDevice8Impl
*This
= device_from_device_parent(iface
);
2615 IDirect3DSurface8Impl
*d3d_surface
;
2618 TRACE("iface %p, superior %p, width %u, height %u, format %#x, multisample_type %#x,\n"
2619 "\tmultisample_quality %u, discard %u, surface %p\n",
2620 iface
, superior
, width
, height
, format
, multisample_type
, multisample_quality
, discard
, surface
);
2622 hr
= IDirect3DDevice8_CreateDepthStencilSurface((IDirect3DDevice8
*)This
, width
, height
,
2623 d3dformat_from_wined3dformat(format
), multisample_type
, (IDirect3DSurface8
**)&d3d_surface
);
2626 ERR("(%p) CreateDepthStencilSurface failed, returning %#x\n", iface
, hr
);
2630 *surface
= d3d_surface
->wineD3DSurface
;
2631 d3d_surface
->container
= (IUnknown
*)This
;
2632 d3d_surface
->isImplicit
= TRUE
;
2633 /* Implicit surfaces are created with an refcount of 0 */
2634 IUnknown_Release((IUnknown
*)d3d_surface
);
2639 static HRESULT STDMETHODCALLTYPE
device_parent_CreateVolume(IWineD3DDeviceParent
*iface
,
2640 IUnknown
*superior
, UINT width
, UINT height
, UINT depth
, WINED3DFORMAT format
,
2641 WINED3DPOOL pool
, DWORD usage
, IWineD3DVolume
**volume
)
2643 struct IDirect3DDevice8Impl
*This
= device_from_device_parent(iface
);
2644 IDirect3DVolume8Impl
*object
;
2647 TRACE("iface %p, superior %p, width %u, height %u, depth %u, format %#x, pool %#x, usage %#x, volume %p\n",
2648 iface
, superior
, width
, height
, depth
, format
, pool
, usage
, volume
);
2650 /* Allocate the storage for the device */
2651 object
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*object
));
2654 FIXME("Allocation of memory failed\n");
2656 return D3DERR_OUTOFVIDEOMEMORY
;
2659 object
->lpVtbl
= &Direct3DVolume8_Vtbl
;
2661 hr
= IWineD3DDevice_CreateVolume(This
->WineD3DDevice
, width
, height
, depth
, usage
,
2662 format
, pool
, &object
->wineD3DVolume
, (IUnknown
*)object
);
2665 ERR("(%p) CreateVolume failed, returning %#x\n", iface
, hr
);
2666 HeapFree(GetProcessHeap(), 0, object
);
2671 *volume
= object
->wineD3DVolume
;
2672 object
->container
= superior
;
2673 object
->forwardReference
= superior
;
2675 TRACE("(%p) Created volume %p\n", iface
, *volume
);
2680 static HRESULT STDMETHODCALLTYPE
device_parent_CreateSwapChain(IWineD3DDeviceParent
*iface
,
2681 WINED3DPRESENT_PARAMETERS
*present_parameters
, IWineD3DSwapChain
**swapchain
)
2683 struct IDirect3DDevice8Impl
*This
= device_from_device_parent(iface
);
2684 IDirect3DSwapChain8Impl
*d3d_swapchain
;
2685 D3DPRESENT_PARAMETERS local_parameters
;
2688 TRACE("iface %p, present_parameters %p, swapchain %p\n", iface
, present_parameters
, swapchain
);
2690 /* Copy the presentation parameters */
2691 local_parameters
.BackBufferWidth
= present_parameters
->BackBufferWidth
;
2692 local_parameters
.BackBufferHeight
= present_parameters
->BackBufferHeight
;
2693 local_parameters
.BackBufferFormat
= d3dformat_from_wined3dformat(present_parameters
->BackBufferFormat
);
2694 local_parameters
.BackBufferCount
= present_parameters
->BackBufferCount
;
2695 local_parameters
.MultiSampleType
= present_parameters
->MultiSampleType
;
2696 local_parameters
.SwapEffect
= present_parameters
->SwapEffect
;
2697 local_parameters
.hDeviceWindow
= present_parameters
->hDeviceWindow
;
2698 local_parameters
.Windowed
= present_parameters
->Windowed
;
2699 local_parameters
.EnableAutoDepthStencil
= present_parameters
->EnableAutoDepthStencil
;
2700 local_parameters
.AutoDepthStencilFormat
= d3dformat_from_wined3dformat(present_parameters
->AutoDepthStencilFormat
);
2701 local_parameters
.Flags
= present_parameters
->Flags
;
2702 local_parameters
.FullScreen_RefreshRateInHz
= present_parameters
->FullScreen_RefreshRateInHz
;
2703 local_parameters
.FullScreen_PresentationInterval
= present_parameters
->PresentationInterval
;
2705 hr
= IDirect3DDevice8_CreateAdditionalSwapChain((IDirect3DDevice8
*)This
,
2706 &local_parameters
, (IDirect3DSwapChain8
**)&d3d_swapchain
);
2709 ERR("(%p) CreateAdditionalSwapChain failed, returning %#x\n", iface
, hr
);
2714 *swapchain
= d3d_swapchain
->wineD3DSwapChain
;
2715 IUnknown_Release(d3d_swapchain
->parentDevice
);
2716 d3d_swapchain
->parentDevice
= NULL
;
2718 /* Copy back the presentation parameters */
2719 present_parameters
->BackBufferWidth
= local_parameters
.BackBufferWidth
;
2720 present_parameters
->BackBufferHeight
= local_parameters
.BackBufferHeight
;
2721 present_parameters
->BackBufferFormat
= wined3dformat_from_d3dformat(local_parameters
.BackBufferFormat
);
2722 present_parameters
->BackBufferCount
= local_parameters
.BackBufferCount
;
2723 present_parameters
->MultiSampleType
= local_parameters
.MultiSampleType
;
2724 present_parameters
->SwapEffect
= local_parameters
.SwapEffect
;
2725 present_parameters
->hDeviceWindow
= local_parameters
.hDeviceWindow
;
2726 present_parameters
->Windowed
= local_parameters
.Windowed
;
2727 present_parameters
->EnableAutoDepthStencil
= local_parameters
.EnableAutoDepthStencil
;
2728 present_parameters
->AutoDepthStencilFormat
= wined3dformat_from_d3dformat(local_parameters
.AutoDepthStencilFormat
);
2729 present_parameters
->Flags
= local_parameters
.Flags
;
2730 present_parameters
->FullScreen_RefreshRateInHz
= local_parameters
.FullScreen_RefreshRateInHz
;
2731 present_parameters
->PresentationInterval
= local_parameters
.FullScreen_PresentationInterval
;
2736 const IWineD3DDeviceParentVtbl d3d8_wined3d_device_parent_vtbl
=
2738 /* IUnknown methods */
2739 device_parent_QueryInterface
,
2740 device_parent_AddRef
,
2741 device_parent_Release
,
2742 /* IWineD3DDeviceParent methods */
2743 device_parent_WineD3DDeviceCreated
,
2744 device_parent_CreateSurface
,
2745 device_parent_CreateRenderTarget
,
2746 device_parent_CreateDepthStencilSurface
,
2747 device_parent_CreateVolume
,
2748 device_parent_CreateSwapChain
,