kernel32: Properly handle bare console on input.
[wine] / dlls / d3d8 / device.c
1 /*
2  * IDirect3DDevice8 implementation
3  *
4  * Copyright 2002-2004 Jason Edmeades
5  * Copyright 2004 Christian Costa
6  *
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.
11  *
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.
16  *
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
20  */
21
22 #include "config.h"
23
24 #include <math.h>
25 #include <stdarg.h>
26
27 #define NONAMELESSUNION
28 #define NONAMELESSSTRUCT
29 #include "windef.h"
30 #include "winbase.h"
31 #include "winuser.h"
32 #include "wingdi.h"
33 #include "wine/debug.h"
34
35 #include "d3d8_private.h"
36
37 WINE_DEFAULT_DEBUG_CHANNEL(d3d8);
38
39 D3DFORMAT d3dformat_from_wined3dformat(enum wined3d_format_id format)
40 {
41     BYTE *c = (BYTE *)&format;
42
43     /* Don't translate FOURCC formats */
44     if (isprint(c[0]) && isprint(c[1]) && isprint(c[2]) && isprint(c[3])) return format;
45
46     switch(format)
47     {
48         case WINED3DFMT_UNKNOWN: return D3DFMT_UNKNOWN;
49         case WINED3DFMT_B8G8R8_UNORM: return D3DFMT_R8G8B8;
50         case WINED3DFMT_B8G8R8A8_UNORM: return D3DFMT_A8R8G8B8;
51         case WINED3DFMT_B8G8R8X8_UNORM: return D3DFMT_X8R8G8B8;
52         case WINED3DFMT_B5G6R5_UNORM: return D3DFMT_R5G6B5;
53         case WINED3DFMT_B5G5R5X1_UNORM: return D3DFMT_X1R5G5B5;
54         case WINED3DFMT_B5G5R5A1_UNORM: return D3DFMT_A1R5G5B5;
55         case WINED3DFMT_B4G4R4A4_UNORM: return D3DFMT_A4R4G4B4;
56         case WINED3DFMT_B2G3R3_UNORM: return D3DFMT_R3G3B2;
57         case WINED3DFMT_A8_UNORM: return D3DFMT_A8;
58         case WINED3DFMT_B2G3R3A8_UNORM: return D3DFMT_A8R3G3B2;
59         case WINED3DFMT_B4G4R4X4_UNORM: return D3DFMT_X4R4G4B4;
60         case WINED3DFMT_R10G10B10A2_UNORM: return D3DFMT_A2B10G10R10;
61         case WINED3DFMT_R16G16_UNORM: return D3DFMT_G16R16;
62         case WINED3DFMT_P8_UINT_A8_UNORM: return D3DFMT_A8P8;
63         case WINED3DFMT_P8_UINT: return D3DFMT_P8;
64         case WINED3DFMT_L8_UNORM: return D3DFMT_L8;
65         case WINED3DFMT_L8A8_UNORM: return D3DFMT_A8L8;
66         case WINED3DFMT_L4A4_UNORM: return D3DFMT_A4L4;
67         case WINED3DFMT_R8G8_SNORM: return D3DFMT_V8U8;
68         case WINED3DFMT_R5G5_SNORM_L6_UNORM: return D3DFMT_L6V5U5;
69         case WINED3DFMT_R8G8_SNORM_L8X8_UNORM: return D3DFMT_X8L8V8U8;
70         case WINED3DFMT_R8G8B8A8_SNORM: return D3DFMT_Q8W8V8U8;
71         case WINED3DFMT_R16G16_SNORM: return D3DFMT_V16U16;
72         case WINED3DFMT_R10G11B11_SNORM: return D3DFMT_W11V11U10;
73         case WINED3DFMT_R10G10B10_SNORM_A2_UNORM: return D3DFMT_A2W10V10U10;
74         case WINED3DFMT_D16_LOCKABLE: return D3DFMT_D16_LOCKABLE;
75         case WINED3DFMT_D32_UNORM: return D3DFMT_D32;
76         case WINED3DFMT_S1_UINT_D15_UNORM: return D3DFMT_D15S1;
77         case WINED3DFMT_D24_UNORM_S8_UINT: return D3DFMT_D24S8;
78         case WINED3DFMT_X8D24_UNORM: return D3DFMT_D24X8;
79         case WINED3DFMT_S4X4_UINT_D24_UNORM: return D3DFMT_D24X4S4;
80         case WINED3DFMT_D16_UNORM: return D3DFMT_D16;
81         case WINED3DFMT_VERTEXDATA: return D3DFMT_VERTEXDATA;
82         case WINED3DFMT_R16_UINT: return D3DFMT_INDEX16;
83         case WINED3DFMT_R32_UINT: return D3DFMT_INDEX32;
84         default:
85             FIXME("Unhandled wined3d format %#x.\n", format);
86             return D3DFMT_UNKNOWN;
87     }
88 }
89
90 enum wined3d_format_id wined3dformat_from_d3dformat(D3DFORMAT format)
91 {
92     BYTE *c = (BYTE *)&format;
93
94     /* Don't translate FOURCC formats */
95     if (isprint(c[0]) && isprint(c[1]) && isprint(c[2]) && isprint(c[3])) return format;
96
97     switch(format)
98     {
99         case D3DFMT_UNKNOWN: return WINED3DFMT_UNKNOWN;
100         case D3DFMT_R8G8B8: return WINED3DFMT_B8G8R8_UNORM;
101         case D3DFMT_A8R8G8B8: return WINED3DFMT_B8G8R8A8_UNORM;
102         case D3DFMT_X8R8G8B8: return WINED3DFMT_B8G8R8X8_UNORM;
103         case D3DFMT_R5G6B5: return WINED3DFMT_B5G6R5_UNORM;
104         case D3DFMT_X1R5G5B5: return WINED3DFMT_B5G5R5X1_UNORM;
105         case D3DFMT_A1R5G5B5: return WINED3DFMT_B5G5R5A1_UNORM;
106         case D3DFMT_A4R4G4B4: return WINED3DFMT_B4G4R4A4_UNORM;
107         case D3DFMT_R3G3B2: return WINED3DFMT_B2G3R3_UNORM;
108         case D3DFMT_A8: return WINED3DFMT_A8_UNORM;
109         case D3DFMT_A8R3G3B2: return WINED3DFMT_B2G3R3A8_UNORM;
110         case D3DFMT_X4R4G4B4: return WINED3DFMT_B4G4R4X4_UNORM;
111         case D3DFMT_A2B10G10R10: return WINED3DFMT_R10G10B10A2_UNORM;
112         case D3DFMT_G16R16: return WINED3DFMT_R16G16_UNORM;
113         case D3DFMT_A8P8: return WINED3DFMT_P8_UINT_A8_UNORM;
114         case D3DFMT_P8: return WINED3DFMT_P8_UINT;
115         case D3DFMT_L8: return WINED3DFMT_L8_UNORM;
116         case D3DFMT_A8L8: return WINED3DFMT_L8A8_UNORM;
117         case D3DFMT_A4L4: return WINED3DFMT_L4A4_UNORM;
118         case D3DFMT_V8U8: return WINED3DFMT_R8G8_SNORM;
119         case D3DFMT_L6V5U5: return WINED3DFMT_R5G5_SNORM_L6_UNORM;
120         case D3DFMT_X8L8V8U8: return WINED3DFMT_R8G8_SNORM_L8X8_UNORM;
121         case D3DFMT_Q8W8V8U8: return WINED3DFMT_R8G8B8A8_SNORM;
122         case D3DFMT_V16U16: return WINED3DFMT_R16G16_SNORM;
123         case D3DFMT_W11V11U10: return WINED3DFMT_R10G11B11_SNORM;
124         case D3DFMT_A2W10V10U10: return WINED3DFMT_R10G10B10_SNORM_A2_UNORM;
125         case D3DFMT_D16_LOCKABLE: return WINED3DFMT_D16_LOCKABLE;
126         case D3DFMT_D32: return WINED3DFMT_D32_UNORM;
127         case D3DFMT_D15S1: return WINED3DFMT_S1_UINT_D15_UNORM;
128         case D3DFMT_D24S8: return WINED3DFMT_D24_UNORM_S8_UINT;
129         case D3DFMT_D24X8: return WINED3DFMT_X8D24_UNORM;
130         case D3DFMT_D24X4S4: return WINED3DFMT_S4X4_UINT_D24_UNORM;
131         case D3DFMT_D16: return WINED3DFMT_D16_UNORM;
132         case D3DFMT_VERTEXDATA: return WINED3DFMT_VERTEXDATA;
133         case D3DFMT_INDEX16: return WINED3DFMT_R16_UINT;
134         case D3DFMT_INDEX32: return WINED3DFMT_R32_UINT;
135         default:
136             FIXME("Unhandled D3DFORMAT %#x\n", format);
137             return WINED3DFMT_UNKNOWN;
138     }
139 }
140
141 static UINT vertex_count_from_primitive_count(D3DPRIMITIVETYPE primitive_type, UINT primitive_count)
142 {
143     switch(primitive_type)
144     {
145         case D3DPT_POINTLIST:
146             return primitive_count;
147
148         case D3DPT_LINELIST:
149             return primitive_count * 2;
150
151         case D3DPT_LINESTRIP:
152             return primitive_count + 1;
153
154         case D3DPT_TRIANGLELIST:
155             return primitive_count * 3;
156
157         case D3DPT_TRIANGLESTRIP:
158         case D3DPT_TRIANGLEFAN:
159             return primitive_count + 2;
160
161         default:
162             FIXME("Unhandled primitive type %#x\n", primitive_type);
163             return 0;
164     }
165 }
166
167 /* Handle table functions */
168 static DWORD d3d8_allocate_handle(struct d3d8_handle_table *t, void *object, enum d3d8_handle_type type)
169 {
170     struct d3d8_handle_entry *entry;
171
172     if (t->free_entries)
173     {
174         DWORD index = t->free_entries - t->entries;
175         /* Use a free handle */
176         entry = t->free_entries;
177         if (entry->type != D3D8_HANDLE_FREE)
178         {
179             ERR("Handle %u(%p) is in the free list, but has type %#x.\n", index, entry, entry->type);
180             return D3D8_INVALID_HANDLE;
181         }
182         t->free_entries = entry->object;
183         entry->object = object;
184         entry->type = type;
185
186         return index;
187     }
188
189     if (!(t->entry_count < t->table_size))
190     {
191         /* Grow the table */
192         UINT new_size = t->table_size + (t->table_size >> 1);
193         struct d3d8_handle_entry *new_entries = HeapReAlloc(GetProcessHeap(),
194                 0, t->entries, new_size * sizeof(*t->entries));
195         if (!new_entries)
196         {
197             ERR("Failed to grow the handle table.\n");
198             return D3D8_INVALID_HANDLE;
199         }
200         t->entries = new_entries;
201         t->table_size = new_size;
202     }
203
204     entry = &t->entries[t->entry_count];
205     entry->object = object;
206     entry->type = type;
207
208     return t->entry_count++;
209 }
210
211 static void *d3d8_free_handle(struct d3d8_handle_table *t, DWORD handle, enum d3d8_handle_type type)
212 {
213     struct d3d8_handle_entry *entry;
214     void *object;
215
216     if (handle == D3D8_INVALID_HANDLE || handle >= t->entry_count)
217     {
218         WARN("Invalid handle %u passed.\n", handle);
219         return NULL;
220     }
221
222     entry = &t->entries[handle];
223     if (entry->type != type)
224     {
225         WARN("Handle %u(%p) is not of type %#x.\n", handle, entry, type);
226         return NULL;
227     }
228
229     object = entry->object;
230     entry->object = t->free_entries;
231     entry->type = D3D8_HANDLE_FREE;
232     t->free_entries = entry;
233
234     return object;
235 }
236
237 static void *d3d8_get_object(struct d3d8_handle_table *t, DWORD handle, enum d3d8_handle_type type)
238 {
239     struct d3d8_handle_entry *entry;
240
241     if (handle == D3D8_INVALID_HANDLE || handle >= t->entry_count)
242     {
243         WARN("Invalid handle %u passed.\n", handle);
244         return NULL;
245     }
246
247     entry = &t->entries[handle];
248     if (entry->type != type)
249     {
250         WARN("Handle %u(%p) is not of type %#x.\n", handle, entry, type);
251         return NULL;
252     }
253
254     return entry->object;
255 }
256
257 static ULONG WINAPI D3D8CB_DestroySwapChain(IWineD3DSwapChain *swapchain)
258 {
259     IUnknown *parent;
260
261     TRACE("swapchain %p.\n", swapchain);
262
263     parent = IWineD3DSwapChain_GetParent(swapchain);
264     return IUnknown_Release(parent);
265 }
266
267 /* IDirect3D IUnknown parts follow: */
268 static HRESULT WINAPI IDirect3DDevice8Impl_QueryInterface(LPDIRECT3DDEVICE8 iface,REFIID riid,LPVOID *ppobj)
269 {
270     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
271
272     TRACE("iface %p, riid %s, object %p.\n",
273             iface, debugstr_guid(riid), ppobj);
274
275     if (IsEqualGUID(riid, &IID_IUnknown)
276         || IsEqualGUID(riid, &IID_IDirect3DDevice8)) {
277         IUnknown_AddRef(iface);
278         *ppobj = This;
279         return S_OK;
280     }
281
282     if (IsEqualGUID(riid, &IID_IWineD3DDeviceParent))
283     {
284         IUnknown_AddRef((IUnknown *)&This->device_parent_vtbl);
285         *ppobj = &This->device_parent_vtbl;
286         return S_OK;
287     }
288
289     WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
290     *ppobj = NULL;
291     return E_NOINTERFACE;
292 }
293
294 static ULONG WINAPI IDirect3DDevice8Impl_AddRef(LPDIRECT3DDEVICE8 iface) {
295     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
296     ULONG ref = InterlockedIncrement(&This->ref);
297
298     TRACE("%p increasing refcount to %u.\n", iface, ref);
299
300     return ref;
301 }
302
303 static ULONG WINAPI IDirect3DDevice8Impl_Release(LPDIRECT3DDEVICE8 iface) {
304     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
305     ULONG ref;
306
307     if (This->inDestruction) return 0;
308     ref = InterlockedDecrement(&This->ref);
309
310     TRACE("%p decreasing refcount to %u.\n", iface, ref);
311
312     if (ref == 0) {
313         unsigned i;
314
315         TRACE("Releasing wined3d device %p\n", This->WineD3DDevice);
316
317         wined3d_mutex_lock();
318
319         This->inDestruction = TRUE;
320
321         for(i = 0; i < This->numConvertedDecls; i++) {
322             IDirect3DVertexDeclaration8_Release(This->decls[i].decl);
323         }
324         HeapFree(GetProcessHeap(), 0, This->decls);
325
326         IWineD3DDevice_Uninit3D(This->WineD3DDevice, D3D8CB_DestroySwapChain);
327         IWineD3DDevice_ReleaseFocusWindow(This->WineD3DDevice);
328         IWineD3DDevice_Release(This->WineD3DDevice);
329         HeapFree(GetProcessHeap(), 0, This->handle_table.entries);
330         HeapFree(GetProcessHeap(), 0, This);
331
332         wined3d_mutex_unlock();
333     }
334     return ref;
335 }
336
337 /* IDirect3DDevice Interface follow: */
338 static HRESULT WINAPI IDirect3DDevice8Impl_TestCooperativeLevel(IDirect3DDevice8 *iface)
339 {
340     TRACE("iface %p.\n", iface);
341
342     return D3D_OK;
343 }
344
345 static UINT WINAPI  IDirect3DDevice8Impl_GetAvailableTextureMem(LPDIRECT3DDEVICE8 iface) {
346     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
347     HRESULT hr;
348
349     TRACE("iface %p.\n", iface);
350
351     wined3d_mutex_lock();
352     hr = IWineD3DDevice_GetAvailableTextureMem(This->WineD3DDevice);
353     wined3d_mutex_unlock();
354
355     return hr;
356 }
357
358 static HRESULT WINAPI IDirect3DDevice8Impl_ResourceManagerDiscardBytes(LPDIRECT3DDEVICE8 iface, DWORD Bytes) {
359     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
360     HRESULT hr;
361
362     TRACE("iface %p, byte_count %u.\n", iface, Bytes);
363     FIXME("Byte count ignored.\n");
364
365     wined3d_mutex_lock();
366     hr = IWineD3DDevice_EvictManagedResources(This->WineD3DDevice);
367     wined3d_mutex_unlock();
368
369     return hr;
370 }
371
372 static HRESULT WINAPI IDirect3DDevice8Impl_GetDirect3D(IDirect3DDevice8 *iface, IDirect3D8 **ppD3D8)
373 {
374     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
375     IWineD3D *pWineD3D;
376     HRESULT hr;
377
378     TRACE("iface %p, d3d8 %p.\n", iface, ppD3D8);
379
380     if (NULL == ppD3D8) {
381         return D3DERR_INVALIDCALL;
382     }
383
384     wined3d_mutex_lock();
385     hr = IWineD3DDevice_GetDirect3D(This->WineD3DDevice, &pWineD3D);
386     if (SUCCEEDED(hr) && pWineD3D)
387     {
388         *ppD3D8 = IWineD3D_GetParent(pWineD3D);
389         IDirect3D8_AddRef(*ppD3D8);
390         IWineD3D_Release(pWineD3D);
391     }
392     else
393     {
394         FIXME("Call to IWineD3DDevice_GetDirect3D failed\n");
395         *ppD3D8 = NULL;
396     }
397     wined3d_mutex_unlock();
398
399     TRACE("(%p) returning %p\n",This , *ppD3D8);
400
401     return hr;
402 }
403
404 static HRESULT WINAPI IDirect3DDevice8Impl_GetDeviceCaps(LPDIRECT3DDEVICE8 iface, D3DCAPS8* pCaps) {
405     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
406     HRESULT hrc = D3D_OK;
407     WINED3DCAPS *pWineCaps;
408
409     TRACE("iface %p, caps %p.\n", iface, pCaps);
410
411     if(NULL == pCaps){
412         return D3DERR_INVALIDCALL;
413     }
414     pWineCaps = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WINED3DCAPS));
415     if(pWineCaps == NULL){
416         return D3DERR_INVALIDCALL; /* well this is what MSDN says to return */
417     }
418
419     wined3d_mutex_lock();
420     hrc = IWineD3DDevice_GetDeviceCaps(This->WineD3DDevice, pWineCaps);
421     wined3d_mutex_unlock();
422
423     fixup_caps(pWineCaps);
424     WINECAPSTOD3D8CAPS(pCaps, pWineCaps)
425     HeapFree(GetProcessHeap(), 0, pWineCaps);
426
427     TRACE("Returning %p %p\n", This, pCaps);
428     return hrc;
429 }
430
431 static HRESULT WINAPI IDirect3DDevice8Impl_GetDisplayMode(LPDIRECT3DDEVICE8 iface, D3DDISPLAYMODE* pMode) {
432     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
433     HRESULT hr;
434
435     TRACE("iface %p, mode %p.\n", iface, pMode);
436
437     wined3d_mutex_lock();
438     hr = IWineD3DDevice_GetDisplayMode(This->WineD3DDevice, 0, (WINED3DDISPLAYMODE *) pMode);
439     wined3d_mutex_unlock();
440
441     if (SUCCEEDED(hr)) pMode->Format = d3dformat_from_wined3dformat(pMode->Format);
442
443     return hr;
444 }
445
446 static HRESULT WINAPI IDirect3DDevice8Impl_GetCreationParameters(LPDIRECT3DDEVICE8 iface, D3DDEVICE_CREATION_PARAMETERS *pParameters) {
447     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
448     HRESULT hr;
449
450     TRACE("iface %p, parameters %p.\n", iface, pParameters);
451
452     wined3d_mutex_lock();
453     hr = IWineD3DDevice_GetCreationParameters(This->WineD3DDevice, (WINED3DDEVICE_CREATION_PARAMETERS *) pParameters);
454     wined3d_mutex_unlock();
455
456     return hr;
457 }
458
459 static HRESULT WINAPI IDirect3DDevice8Impl_SetCursorProperties(LPDIRECT3DDEVICE8 iface, UINT XHotSpot, UINT YHotSpot, IDirect3DSurface8* pCursorBitmap) {
460     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
461     IDirect3DSurface8Impl *pSurface = (IDirect3DSurface8Impl*)pCursorBitmap;
462     HRESULT hr;
463
464     TRACE("iface %p, hotspot_x %u, hotspot_y %u, bitmap %p.\n",
465             iface, XHotSpot, YHotSpot, pCursorBitmap);
466
467     if(!pCursorBitmap) {
468         WARN("No cursor bitmap, returning WINED3DERR_INVALIDCALL\n");
469         return WINED3DERR_INVALIDCALL;
470     }
471
472     wined3d_mutex_lock();
473     hr = IWineD3DDevice_SetCursorProperties(This->WineD3DDevice,XHotSpot,YHotSpot,pSurface->wineD3DSurface);
474     wined3d_mutex_unlock();
475
476     return hr;
477 }
478
479 static void WINAPI IDirect3DDevice8Impl_SetCursorPosition(LPDIRECT3DDEVICE8 iface, UINT XScreenSpace, UINT YScreenSpace, DWORD Flags) {
480     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
481
482     TRACE("iface %p, x %u, y %u, flags %#x.\n",
483             iface, XScreenSpace, YScreenSpace, Flags);
484
485     wined3d_mutex_lock();
486     IWineD3DDevice_SetCursorPosition(This->WineD3DDevice, XScreenSpace, YScreenSpace, Flags);
487     wined3d_mutex_unlock();
488 }
489
490 static BOOL WINAPI IDirect3DDevice8Impl_ShowCursor(LPDIRECT3DDEVICE8 iface, BOOL bShow) {
491     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
492     BOOL ret;
493
494     TRACE("iface %p, show %#x.\n", iface, bShow);
495
496     wined3d_mutex_lock();
497     ret = IWineD3DDevice_ShowCursor(This->WineD3DDevice, bShow);
498     wined3d_mutex_unlock();
499
500     return ret;
501 }
502
503 static HRESULT WINAPI IDirect3DDevice8Impl_CreateAdditionalSwapChain(IDirect3DDevice8 *iface,
504         D3DPRESENT_PARAMETERS *present_parameters, IDirect3DSwapChain8 **swapchain)
505 {
506     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
507     IDirect3DSwapChain8Impl *object;
508     HRESULT hr;
509
510     TRACE("iface %p, present_parameters %p, swapchain %p.\n",
511             iface, present_parameters, swapchain);
512
513     object = HeapAlloc(GetProcessHeap(),  HEAP_ZERO_MEMORY, sizeof(*object));
514     if (!object)
515     {
516         ERR("Failed to allocate swapchain memory.\n");
517         return E_OUTOFMEMORY;
518     }
519
520     hr = swapchain_init(object, This, present_parameters);
521     if (FAILED(hr))
522     {
523         WARN("Failed to initialize swapchain, hr %#x.\n", hr);
524         HeapFree(GetProcessHeap(), 0, object);
525         return hr;
526     }
527
528     TRACE("Created swapchain %p.\n", object);
529     *swapchain = (IDirect3DSwapChain8 *)object;
530
531     return D3D_OK;
532 }
533
534 static HRESULT WINAPI IDirect3DDevice8Impl_Reset(LPDIRECT3DDEVICE8 iface, D3DPRESENT_PARAMETERS* pPresentationParameters) {
535     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
536     WINED3DPRESENT_PARAMETERS localParameters;
537     HRESULT hr;
538
539     TRACE("iface %p, present_parameters %p.\n", iface, pPresentationParameters);
540
541     localParameters.BackBufferWidth                             = pPresentationParameters->BackBufferWidth;
542     localParameters.BackBufferHeight                            = pPresentationParameters->BackBufferHeight;
543     localParameters.BackBufferFormat                            = wined3dformat_from_d3dformat(pPresentationParameters->BackBufferFormat);
544     localParameters.BackBufferCount                             = pPresentationParameters->BackBufferCount;
545     localParameters.MultiSampleType                             = pPresentationParameters->MultiSampleType;
546     localParameters.MultiSampleQuality                          = 0; /* d3d9 only */
547     localParameters.SwapEffect                                  = pPresentationParameters->SwapEffect;
548     localParameters.hDeviceWindow                               = pPresentationParameters->hDeviceWindow;
549     localParameters.Windowed                                    = pPresentationParameters->Windowed;
550     localParameters.EnableAutoDepthStencil                      = pPresentationParameters->EnableAutoDepthStencil;
551     localParameters.AutoDepthStencilFormat                      = wined3dformat_from_d3dformat(pPresentationParameters->AutoDepthStencilFormat);
552     localParameters.Flags                                       = pPresentationParameters->Flags;
553     localParameters.FullScreen_RefreshRateInHz                  = pPresentationParameters->FullScreen_RefreshRateInHz;
554     localParameters.PresentationInterval                        = pPresentationParameters->FullScreen_PresentationInterval;
555     localParameters.AutoRestoreDisplayMode                      = TRUE;
556
557     wined3d_mutex_lock();
558     hr = IWineD3DDevice_Reset(This->WineD3DDevice, &localParameters);
559     if(SUCCEEDED(hr)) {
560         hr = IWineD3DDevice_SetRenderState(This->WineD3DDevice, WINED3DRS_POINTSIZE_MIN, 0);
561     }
562     wined3d_mutex_unlock();
563
564     pPresentationParameters->BackBufferWidth                    = localParameters.BackBufferWidth;
565     pPresentationParameters->BackBufferHeight                   = localParameters.BackBufferHeight;
566     pPresentationParameters->BackBufferFormat                   = d3dformat_from_wined3dformat(localParameters.BackBufferFormat);
567     pPresentationParameters->BackBufferCount                    = localParameters.BackBufferCount;
568     pPresentationParameters->MultiSampleType                    = localParameters.MultiSampleType;
569     pPresentationParameters->SwapEffect                         = localParameters.SwapEffect;
570     pPresentationParameters->hDeviceWindow                      = localParameters.hDeviceWindow;
571     pPresentationParameters->Windowed                           = localParameters.Windowed;
572     pPresentationParameters->EnableAutoDepthStencil             = localParameters.EnableAutoDepthStencil;
573     pPresentationParameters->AutoDepthStencilFormat             = d3dformat_from_wined3dformat(localParameters.AutoDepthStencilFormat);
574     pPresentationParameters->Flags                              = localParameters.Flags;
575     pPresentationParameters->FullScreen_RefreshRateInHz         = localParameters.FullScreen_RefreshRateInHz;
576     pPresentationParameters->FullScreen_PresentationInterval    = localParameters.PresentationInterval;
577
578     return hr;
579 }
580
581 static HRESULT WINAPI IDirect3DDevice8Impl_Present(LPDIRECT3DDEVICE8 iface, CONST RECT* pSourceRect,CONST RECT* pDestRect,HWND hDestWindowOverride,CONST RGNDATA* pDirtyRegion) {
582     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
583     HRESULT hr;
584
585     TRACE("iface %p, src_rect %p, dst_rect %p, dst_window_override %p, dirty_region %p.\n",
586             iface, pSourceRect, pDestRect, hDestWindowOverride, pDirtyRegion);
587
588     wined3d_mutex_lock();
589     hr = IWineD3DDevice_Present(This->WineD3DDevice, pSourceRect, pDestRect, hDestWindowOverride, pDirtyRegion);
590     wined3d_mutex_unlock();
591
592     return hr;
593 }
594
595 static HRESULT WINAPI IDirect3DDevice8Impl_GetBackBuffer(IDirect3DDevice8 *iface,
596         UINT BackBuffer, D3DBACKBUFFER_TYPE Type, IDirect3DSurface8 **ppBackBuffer)
597 {
598     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
599     IWineD3DSurface *retSurface = NULL;
600     HRESULT hr;
601
602     TRACE("iface %p, backbuffer_idx %u, backbuffer_type %#x, backbuffer %p.\n",
603             iface, BackBuffer, Type, ppBackBuffer);
604
605     wined3d_mutex_lock();
606     hr = IWineD3DDevice_GetBackBuffer(This->WineD3DDevice, 0, BackBuffer, (WINED3DBACKBUFFER_TYPE)Type, &retSurface);
607     if (SUCCEEDED(hr) && retSurface && ppBackBuffer)
608     {
609         *ppBackBuffer = IWineD3DSurface_GetParent(retSurface);
610         IDirect3DSurface8_AddRef(*ppBackBuffer);
611         IWineD3DSurface_Release(retSurface);
612     }
613     wined3d_mutex_unlock();
614
615     return hr;
616 }
617
618 static HRESULT WINAPI IDirect3DDevice8Impl_GetRasterStatus(LPDIRECT3DDEVICE8 iface, D3DRASTER_STATUS* pRasterStatus) {
619     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
620     HRESULT hr;
621
622     TRACE("iface %p, raster_status %p.\n", iface, pRasterStatus);
623
624     wined3d_mutex_lock();
625     hr = IWineD3DDevice_GetRasterStatus(This->WineD3DDevice, 0, (WINED3DRASTER_STATUS *) pRasterStatus);
626     wined3d_mutex_unlock();
627
628     return hr;
629 }
630
631 static void WINAPI IDirect3DDevice8Impl_SetGammaRamp(LPDIRECT3DDEVICE8 iface, DWORD Flags, CONST D3DGAMMARAMP* pRamp) {
632     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
633
634     TRACE("iface %p, flags %#x, ramp %p.\n", iface, Flags, pRamp);
635
636     /* Note: D3DGAMMARAMP is compatible with WINED3DGAMMARAMP */
637     wined3d_mutex_lock();
638     IWineD3DDevice_SetGammaRamp(This->WineD3DDevice, 0, Flags, (CONST WINED3DGAMMARAMP *) pRamp);
639     wined3d_mutex_unlock();
640 }
641
642 static void WINAPI IDirect3DDevice8Impl_GetGammaRamp(LPDIRECT3DDEVICE8 iface, D3DGAMMARAMP* pRamp) {
643     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
644
645     TRACE("iface %p, ramp %p.\n", iface, pRamp);
646
647     /* Note: D3DGAMMARAMP is compatible with WINED3DGAMMARAMP */
648     wined3d_mutex_lock();
649     IWineD3DDevice_GetGammaRamp(This->WineD3DDevice, 0, (WINED3DGAMMARAMP *) pRamp);
650     wined3d_mutex_unlock();
651 }
652
653 static HRESULT WINAPI IDirect3DDevice8Impl_CreateTexture(IDirect3DDevice8 *iface,
654         UINT width, UINT height, UINT levels, DWORD usage, D3DFORMAT format,
655         D3DPOOL pool, IDirect3DTexture8 **texture)
656 {
657     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
658     IDirect3DTexture8Impl *object;
659     HRESULT hr;
660
661     TRACE("iface %p, width %u, height %u, levels %u, usage %#x, format %#x, pool %#x, texture %p.\n",
662             iface, width, height, levels, usage, format, pool, texture);
663
664     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
665     if (!object)
666     {
667         ERR("Failed to allocate texture memory.\n");
668         return D3DERR_OUTOFVIDEOMEMORY;
669     }
670
671     hr = texture_init(object, This, width, height, levels, usage, format, pool);
672     if (FAILED(hr))
673     {
674         WARN("Failed to initialize texture, hr %#x.\n", hr);
675         HeapFree(GetProcessHeap(), 0, object);
676         return hr;
677     }
678
679     TRACE("Created texture %p.\n", object);
680     *texture = (IDirect3DTexture8 *)object;
681
682     return D3D_OK;
683 }
684
685 static HRESULT WINAPI IDirect3DDevice8Impl_CreateVolumeTexture(IDirect3DDevice8 *iface,
686         UINT width, UINT height, UINT depth, UINT levels, DWORD usage, D3DFORMAT format,
687         D3DPOOL pool, IDirect3DVolumeTexture8 **texture)
688 {
689     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
690     IDirect3DVolumeTexture8Impl *object;
691     HRESULT hr;
692
693     TRACE("iface %p, width %u, height %u, depth %u, levels %u, usage %#x, format %#x, pool %#x, texture %p.\n",
694             iface, width, height, depth, levels, usage, format, pool, texture);
695
696     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
697     if (!object)
698     {
699         ERR("Failed to allocate volume texture memory.\n");
700         return D3DERR_OUTOFVIDEOMEMORY;
701     }
702
703     hr = volumetexture_init(object, This, width, height, depth, levels, usage, format, pool);
704     if (FAILED(hr))
705     {
706         WARN("Failed to initialize volume texture, hr %#x.\n", hr);
707         HeapFree(GetProcessHeap(), 0, object);
708         return hr;
709     }
710
711     TRACE("Created volume texture %p.\n", object);
712     *texture = (IDirect3DVolumeTexture8 *)object;
713
714     return D3D_OK;
715 }
716
717 static HRESULT WINAPI IDirect3DDevice8Impl_CreateCubeTexture(IDirect3DDevice8 *iface, UINT edge_length,
718         UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool, IDirect3DCubeTexture8 **texture)
719 {
720     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
721     IDirect3DCubeTexture8Impl *object;
722     HRESULT hr;
723
724     TRACE("iface %p, edge_length %u, levels %u, usage %#x, format %#x, pool %#x, texture %p.\n",
725             iface, edge_length, levels, usage, format, pool, texture);
726
727     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
728     if (!object)
729     {
730         ERR("Failed to allocate cube texture memory.\n");
731         return D3DERR_OUTOFVIDEOMEMORY;
732     }
733
734     hr = cubetexture_init(object, This, edge_length, levels, usage, format, pool);
735     if (FAILED(hr))
736     {
737         WARN("Failed to initialize cube texture, hr %#x.\n", hr);
738         HeapFree(GetProcessHeap(), 0, object);
739         return hr;
740     }
741
742     TRACE("Created cube texture %p.\n", object);
743     *texture = (IDirect3DCubeTexture8 *)object;
744
745     return hr;
746 }
747
748 static HRESULT WINAPI IDirect3DDevice8Impl_CreateVertexBuffer(IDirect3DDevice8 *iface, UINT size, DWORD usage,
749         DWORD fvf, D3DPOOL pool, IDirect3DVertexBuffer8 **buffer)
750 {
751     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
752     IDirect3DVertexBuffer8Impl *object;
753     HRESULT hr;
754
755     TRACE("iface %p, size %u, usage %#x, fvf %#x, pool %#x, buffer %p.\n",
756             iface, size, usage, fvf, pool, buffer);
757
758     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
759     if (!object)
760     {
761         ERR("Failed to allocate buffer memory.\n");
762         return D3DERR_OUTOFVIDEOMEMORY;
763     }
764
765     hr = vertexbuffer_init(object, This, size, usage, fvf, pool);
766     if (FAILED(hr))
767     {
768         WARN("Failed to initialize vertex buffer, hr %#x.\n", hr);
769         HeapFree(GetProcessHeap(), 0, object);
770         return hr;
771     }
772
773     TRACE("Created vertex buffer %p.\n", object);
774     *buffer = (IDirect3DVertexBuffer8 *)object;
775
776     return D3D_OK;
777 }
778
779 static HRESULT WINAPI IDirect3DDevice8Impl_CreateIndexBuffer(IDirect3DDevice8 *iface, UINT size, DWORD usage,
780         D3DFORMAT format, D3DPOOL pool, IDirect3DIndexBuffer8 **buffer)
781 {
782     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
783     IDirect3DIndexBuffer8Impl *object;
784     HRESULT hr;
785
786     TRACE("iface %p, size %u, usage %#x, format %#x, pool %#x, buffer %p.\n",
787             iface, size, usage, format, pool, buffer);
788
789     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
790     if (!object)
791     {
792         ERR("Failed to allocate buffer memory.\n");
793         return D3DERR_OUTOFVIDEOMEMORY;
794     }
795
796     hr = indexbuffer_init(object, This, size, usage, format, pool);
797     if (FAILED(hr))
798     {
799         WARN("Failed to initialize index buffer, hr %#x.\n", hr);
800         HeapFree(GetProcessHeap(), 0, object);
801         return hr;
802     }
803
804     TRACE("Created index buffer %p.\n", object);
805     *buffer = (IDirect3DIndexBuffer8 *)object;
806
807     return D3D_OK;
808 }
809
810 static HRESULT IDirect3DDevice8Impl_CreateSurface(LPDIRECT3DDEVICE8 iface, UINT Width, UINT Height,
811         D3DFORMAT Format, BOOL Lockable, BOOL Discard, UINT Level, IDirect3DSurface8 **ppSurface,
812         UINT Usage, D3DPOOL Pool, D3DMULTISAMPLE_TYPE MultiSample, DWORD MultisampleQuality)
813 {
814     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
815     IDirect3DSurface8Impl *object;
816     HRESULT hr;
817
818     TRACE("iface %p, width %u, height %u, format %#x, lockable %#x, discard %#x, level %u, surface %p,\n"
819             "\tusage %#x, pool %#x, multisample_type %#x, multisample_quality %u.\n",
820             iface, Width, Height, Format, Lockable, Discard, Level, ppSurface,
821             Usage, Pool, MultiSample, MultisampleQuality);
822
823     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirect3DSurface8Impl));
824     if (!object)
825     {
826         FIXME("Failed to allocate surface memory.\n");
827         return D3DERR_OUTOFVIDEOMEMORY;
828     }
829
830     hr = surface_init(object, This, Width, Height, Format, Lockable, Discard,
831             Level, Usage, Pool, MultiSample, MultisampleQuality);
832     if (FAILED(hr))
833     {
834         WARN("Failed to initialize surface, hr %#x.\n", hr);
835         HeapFree(GetProcessHeap(), 0, object);
836         return hr;
837     }
838
839     TRACE("Created surface %p.\n", object);
840     *ppSurface = (IDirect3DSurface8 *)object;
841
842     return D3D_OK;
843 }
844
845 static HRESULT WINAPI IDirect3DDevice8Impl_CreateRenderTarget(LPDIRECT3DDEVICE8 iface, UINT Width, UINT Height, D3DFORMAT Format, D3DMULTISAMPLE_TYPE MultiSample, BOOL Lockable, IDirect3DSurface8** ppSurface) {
846     HRESULT hr;
847
848     TRACE("iface %p, width %u, height %u, format %#x, multisample_type %#x, lockable %#x, surface %p.\n",
849             iface, Width, Height, Format, MultiSample, Lockable, ppSurface);
850
851     hr = IDirect3DDevice8Impl_CreateSurface(iface, Width, Height, Format, Lockable, FALSE /* Discard */,
852             0 /* Level */, ppSurface, D3DUSAGE_RENDERTARGET, D3DPOOL_DEFAULT, MultiSample, 0);
853
854     return hr;
855 }
856
857 static HRESULT WINAPI IDirect3DDevice8Impl_CreateDepthStencilSurface(LPDIRECT3DDEVICE8 iface, UINT Width, UINT Height, D3DFORMAT Format, D3DMULTISAMPLE_TYPE MultiSample, IDirect3DSurface8** ppSurface) {
858     HRESULT hr;
859
860     TRACE("iface %p, width %u, height %u, format %#x, multisample_type %#x, surface %p.\n",
861             iface, Width, Height, Format, MultiSample, ppSurface);
862
863     /* TODO: Verify that Discard is false */
864     hr = IDirect3DDevice8Impl_CreateSurface(iface, Width, Height, Format, TRUE /* Lockable */, FALSE,
865             0 /* Level */, ppSurface, D3DUSAGE_DEPTHSTENCIL, D3DPOOL_DEFAULT, MultiSample, 0);
866
867     return hr;
868 }
869
870 /*  IDirect3DDevice8Impl::CreateImageSurface returns surface with pool type SYSTEMMEM */
871 static HRESULT WINAPI IDirect3DDevice8Impl_CreateImageSurface(LPDIRECT3DDEVICE8 iface, UINT Width, UINT Height, D3DFORMAT Format, IDirect3DSurface8** ppSurface) {
872     HRESULT hr;
873
874     TRACE("iface %p, width %u, height %u, format %#x, surface %p.\n",
875             iface, Width, Height, Format, ppSurface);
876
877     hr = IDirect3DDevice8Impl_CreateSurface(iface, Width, Height, Format, TRUE /* Lockable */, FALSE /* Discard */,
878             0 /* Level */, ppSurface, 0 /* Usage (undefined/none) */, D3DPOOL_SYSTEMMEM, D3DMULTISAMPLE_NONE,
879             0 /* MultisampleQuality */);
880
881     return hr;
882 }
883
884 static HRESULT WINAPI IDirect3DDevice8Impl_CopyRects(LPDIRECT3DDEVICE8 iface, IDirect3DSurface8 *pSourceSurface, CONST RECT *pSourceRects, UINT cRects, IDirect3DSurface8 *pDestinationSurface, CONST POINT *pDestPoints) {
885     IDirect3DSurface8Impl *Source = (IDirect3DSurface8Impl *) pSourceSurface;
886     IDirect3DSurface8Impl *Dest = (IDirect3DSurface8Impl *) pDestinationSurface;
887
888     HRESULT              hr = WINED3D_OK;
889     enum wined3d_format_id srcFormat, destFormat;
890     WINED3DSURFACE_DESC  winedesc;
891
892     TRACE("iface %p, src_surface %p, src_rects %p, rect_count %u, dst_surface %p, dst_points %p.\n",
893             iface, pSourceSurface, pSourceRects, cRects, pDestinationSurface, pDestPoints);
894
895     /* Check that the source texture is in WINED3DPOOL_SYSTEMMEM and the
896      * destination texture is in WINED3DPOOL_DEFAULT. */
897
898     wined3d_mutex_lock();
899     IWineD3DSurface_GetDesc(Source->wineD3DSurface, &winedesc);
900     srcFormat = winedesc.format;
901
902     IWineD3DSurface_GetDesc(Dest->wineD3DSurface, &winedesc);
903     destFormat = winedesc.format;
904
905     /* Check that the source and destination formats match */
906     if (srcFormat != destFormat && WINED3DFMT_UNKNOWN != destFormat) {
907         WARN("(%p) source %p format must match the dest %p format, returning WINED3DERR_INVALIDCALL\n", iface, pSourceSurface, pDestinationSurface);
908         wined3d_mutex_unlock();
909         return WINED3DERR_INVALIDCALL;
910     } else if (WINED3DFMT_UNKNOWN == destFormat) {
911         TRACE("(%p) : Converting destination surface from WINED3DFMT_UNKNOWN to the source format\n", iface);
912         IWineD3DSurface_SetFormat(Dest->wineD3DSurface, srcFormat);
913     }
914
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);
918     } else {
919         unsigned int i;
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);
924             }
925         } else {
926             for (i = 0; i < cRects; ++i) {
927                 IWineD3DSurface_BltFast(Dest->wineD3DSurface, 0, 0, Source->wineD3DSurface, &pSourceRects[i], WINEDDBLTFAST_NOCOLORKEY);
928             }
929         }
930     }
931     wined3d_mutex_unlock();
932
933     return hr;
934 }
935
936 static HRESULT WINAPI IDirect3DDevice8Impl_UpdateTexture(LPDIRECT3DDEVICE8 iface, IDirect3DBaseTexture8* pSourceTexture, IDirect3DBaseTexture8* pDestinationTexture) {
937     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
938     HRESULT hr;
939
940     TRACE("iface %p, src_texture %p, dst_texture %p.\n", iface, pSourceTexture, pDestinationTexture);
941
942     wined3d_mutex_lock();
943     hr = IWineD3DDevice_UpdateTexture(This->WineD3DDevice,  ((IDirect3DBaseTexture8Impl *)pSourceTexture)->wineD3DBaseTexture, ((IDirect3DBaseTexture8Impl *)pDestinationTexture)->wineD3DBaseTexture);
944     wined3d_mutex_unlock();
945
946     return hr;
947 }
948
949 static HRESULT WINAPI IDirect3DDevice8Impl_GetFrontBuffer(LPDIRECT3DDEVICE8 iface, IDirect3DSurface8* pDestSurface) {
950     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
951     IDirect3DSurface8Impl *destSurface = (IDirect3DSurface8Impl *)pDestSurface;
952     HRESULT hr;
953
954     TRACE("iface %p, dst_surface %p.\n", iface, pDestSurface);
955
956     if (pDestSurface == NULL) {
957         WARN("(%p) : Caller passed NULL as pDestSurface returning D3DERR_INVALIDCALL\n", This);
958         return D3DERR_INVALIDCALL;
959     }
960
961     wined3d_mutex_lock();
962     hr = IWineD3DDevice_GetFrontBufferData(This->WineD3DDevice, 0, destSurface->wineD3DSurface);
963     wined3d_mutex_unlock();
964
965     return hr;
966 }
967
968 static HRESULT WINAPI IDirect3DDevice8Impl_SetRenderTarget(LPDIRECT3DDEVICE8 iface, IDirect3DSurface8* pRenderTarget, IDirect3DSurface8* pNewZStencil) {
969     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
970     IDirect3DSurface8Impl *pSurface = (IDirect3DSurface8Impl *)pRenderTarget;
971     IDirect3DSurface8Impl *pZSurface = (IDirect3DSurface8Impl *)pNewZStencil;
972     IWineD3DSurface *original_ds = NULL;
973     HRESULT hr;
974
975     TRACE("iface %p, render_target %p, depth_stencil %p.\n", iface, pRenderTarget, pNewZStencil);
976
977     wined3d_mutex_lock();
978
979     hr = IWineD3DDevice_GetDepthStencilSurface(This->WineD3DDevice, &original_ds);
980     if (hr == WINED3D_OK || hr == WINED3DERR_NOTFOUND)
981     {
982         hr = IWineD3DDevice_SetDepthStencilSurface(This->WineD3DDevice, pZSurface ? pZSurface->wineD3DSurface : NULL);
983         if (SUCCEEDED(hr) && pSurface)
984             hr = IWineD3DDevice_SetRenderTarget(This->WineD3DDevice, 0, pSurface->wineD3DSurface, TRUE);
985         if (FAILED(hr)) IWineD3DDevice_SetDepthStencilSurface(This->WineD3DDevice, original_ds);
986     }
987     if (original_ds) IWineD3DSurface_Release(original_ds);
988
989     wined3d_mutex_unlock();
990
991     return hr;
992 }
993
994 static HRESULT WINAPI IDirect3DDevice8Impl_GetRenderTarget(IDirect3DDevice8 *iface,
995         IDirect3DSurface8 **ppRenderTarget)
996 {
997     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
998     IWineD3DSurface *pRenderTarget;
999     HRESULT hr;
1000
1001     TRACE("iface %p, render_target %p.\n", iface, ppRenderTarget);
1002
1003     if (ppRenderTarget == NULL) {
1004         return D3DERR_INVALIDCALL;
1005     }
1006
1007     wined3d_mutex_lock();
1008     hr = IWineD3DDevice_GetRenderTarget(This->WineD3DDevice, 0, &pRenderTarget);
1009     if (SUCCEEDED(hr) && pRenderTarget)
1010     {
1011         *ppRenderTarget = IWineD3DSurface_GetParent(pRenderTarget);
1012         IDirect3DSurface8_AddRef(*ppRenderTarget);
1013         IWineD3DSurface_Release(pRenderTarget);
1014     }
1015     else
1016     {
1017         FIXME("Call to IWineD3DDevice_GetRenderTarget failed\n");
1018         *ppRenderTarget = NULL;
1019     }
1020     wined3d_mutex_unlock();
1021
1022     return hr;
1023 }
1024
1025 static HRESULT WINAPI IDirect3DDevice8Impl_GetDepthStencilSurface(IDirect3DDevice8 *iface,
1026         IDirect3DSurface8 **ppZStencilSurface)
1027 {
1028     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1029     IWineD3DSurface *pZStencilSurface;
1030     HRESULT hr;
1031
1032     TRACE("iface %p, depth_stencil %p.\n", iface, ppZStencilSurface);
1033
1034     if(ppZStencilSurface == NULL){
1035         return D3DERR_INVALIDCALL;
1036     }
1037
1038     wined3d_mutex_lock();
1039     hr = IWineD3DDevice_GetDepthStencilSurface(This->WineD3DDevice, &pZStencilSurface);
1040     if (SUCCEEDED(hr))
1041     {
1042         *ppZStencilSurface = IWineD3DSurface_GetParent(pZStencilSurface);
1043         IDirect3DSurface8_AddRef(*ppZStencilSurface);
1044         IWineD3DSurface_Release(pZStencilSurface);
1045     }
1046     else
1047     {
1048         if (hr != WINED3DERR_NOTFOUND)
1049                 FIXME("Call to IWineD3DDevice_GetDepthStencilSurface failed with 0x%08x\n", hr);
1050         *ppZStencilSurface = NULL;
1051     }
1052     wined3d_mutex_unlock();
1053
1054     return hr;
1055 }
1056
1057 static HRESULT WINAPI IDirect3DDevice8Impl_BeginScene(LPDIRECT3DDEVICE8 iface) {
1058     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1059     HRESULT hr;
1060
1061     TRACE("iface %p.\n", iface);
1062
1063     wined3d_mutex_lock();
1064     hr = IWineD3DDevice_BeginScene(This->WineD3DDevice);
1065     wined3d_mutex_unlock();
1066
1067     return hr;
1068 }
1069
1070 static HRESULT WINAPI DECLSPEC_HOTPATCH IDirect3DDevice8Impl_EndScene(LPDIRECT3DDEVICE8 iface) {
1071     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1072     HRESULT hr;
1073
1074     TRACE("iface %p.\n", iface);
1075
1076     wined3d_mutex_lock();
1077     hr = IWineD3DDevice_EndScene(This->WineD3DDevice);
1078     wined3d_mutex_unlock();
1079
1080     return hr;
1081 }
1082
1083 static HRESULT WINAPI IDirect3DDevice8Impl_Clear(LPDIRECT3DDEVICE8 iface, DWORD Count, CONST D3DRECT* pRects, DWORD Flags, D3DCOLOR Color, float Z, DWORD Stencil) {
1084     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1085     HRESULT hr;
1086
1087     TRACE("iface %p, rect_count %u, rects %p, flags %#x, color 0x%08x, z %.8e, stencil %u.\n",
1088             iface, Count, pRects, Flags, Color, Z, Stencil);
1089
1090     wined3d_mutex_lock();
1091     hr = IWineD3DDevice_Clear(This->WineD3DDevice, Count, (const RECT *)pRects, Flags, Color, Z, Stencil);
1092     wined3d_mutex_unlock();
1093
1094     return hr;
1095 }
1096
1097 static HRESULT WINAPI IDirect3DDevice8Impl_SetTransform(LPDIRECT3DDEVICE8 iface, D3DTRANSFORMSTATETYPE State, CONST D3DMATRIX* lpMatrix) {
1098     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1099     HRESULT hr;
1100
1101     TRACE("iface %p, state %#x, matrix %p.\n", iface, State, lpMatrix);
1102
1103     /* Note: D3DMATRIX is compatible with WINED3DMATRIX */
1104     wined3d_mutex_lock();
1105     hr = IWineD3DDevice_SetTransform(This->WineD3DDevice, State, (CONST WINED3DMATRIX*) lpMatrix);
1106     wined3d_mutex_unlock();
1107
1108     return hr;
1109 }
1110
1111 static HRESULT WINAPI IDirect3DDevice8Impl_GetTransform(LPDIRECT3DDEVICE8 iface, D3DTRANSFORMSTATETYPE State,D3DMATRIX* pMatrix) {
1112     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1113     HRESULT hr;
1114
1115     TRACE("iface %p, state %#x, matrix %p.\n", iface, State, pMatrix);
1116
1117     /* Note: D3DMATRIX is compatible with WINED3DMATRIX */
1118     wined3d_mutex_lock();
1119     hr = IWineD3DDevice_GetTransform(This->WineD3DDevice, State, (WINED3DMATRIX*) pMatrix);
1120     wined3d_mutex_unlock();
1121
1122     return hr;
1123 }
1124
1125 static HRESULT WINAPI IDirect3DDevice8Impl_MultiplyTransform(LPDIRECT3DDEVICE8 iface, D3DTRANSFORMSTATETYPE State, CONST D3DMATRIX* pMatrix) {
1126     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1127     HRESULT hr;
1128
1129     TRACE("iface %p, state %#x, matrix %p.\n", iface, State, pMatrix);
1130
1131     /* Note: D3DMATRIX is compatible with WINED3DMATRIX */
1132     wined3d_mutex_lock();
1133     hr = IWineD3DDevice_MultiplyTransform(This->WineD3DDevice, State, (CONST WINED3DMATRIX*) pMatrix);
1134     wined3d_mutex_unlock();
1135
1136     return hr;
1137 }
1138
1139 static HRESULT WINAPI IDirect3DDevice8Impl_SetViewport(LPDIRECT3DDEVICE8 iface, CONST D3DVIEWPORT8* pViewport) {
1140     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1141     HRESULT hr;
1142
1143     TRACE("iface %p, viewport %p.\n", iface, pViewport);
1144
1145     /* Note: D3DVIEWPORT8 is compatible with WINED3DVIEWPORT */
1146     wined3d_mutex_lock();
1147     hr = IWineD3DDevice_SetViewport(This->WineD3DDevice, (const WINED3DVIEWPORT *)pViewport);
1148     wined3d_mutex_unlock();
1149
1150     return hr;
1151 }
1152
1153 static HRESULT WINAPI IDirect3DDevice8Impl_GetViewport(LPDIRECT3DDEVICE8 iface, D3DVIEWPORT8* pViewport) {
1154     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1155     HRESULT hr;
1156
1157     TRACE("iface %p, viewport %p.\n", iface, pViewport);
1158
1159     /* Note: D3DVIEWPORT8 is compatible with WINED3DVIEWPORT */
1160     wined3d_mutex_lock();
1161     hr = IWineD3DDevice_GetViewport(This->WineD3DDevice, (WINED3DVIEWPORT *)pViewport);
1162     wined3d_mutex_unlock();
1163
1164     return hr;
1165 }
1166
1167 static HRESULT WINAPI IDirect3DDevice8Impl_SetMaterial(LPDIRECT3DDEVICE8 iface, CONST D3DMATERIAL8* pMaterial) {
1168     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1169     HRESULT hr;
1170
1171     TRACE("iface %p, material %p.\n", iface, pMaterial);
1172
1173     /* Note: D3DMATERIAL8 is compatible with WINED3DMATERIAL */
1174     wined3d_mutex_lock();
1175     hr = IWineD3DDevice_SetMaterial(This->WineD3DDevice, (const WINED3DMATERIAL *)pMaterial);
1176     wined3d_mutex_unlock();
1177
1178     return hr;
1179 }
1180
1181 static HRESULT WINAPI IDirect3DDevice8Impl_GetMaterial(LPDIRECT3DDEVICE8 iface, D3DMATERIAL8* pMaterial) {
1182     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1183     HRESULT hr;
1184
1185     TRACE("iface %p, material %p.\n", iface, pMaterial);
1186
1187     /* Note: D3DMATERIAL8 is compatible with WINED3DMATERIAL */
1188     wined3d_mutex_lock();
1189     hr = IWineD3DDevice_GetMaterial(This->WineD3DDevice, (WINED3DMATERIAL *)pMaterial);
1190     wined3d_mutex_unlock();
1191
1192     return hr;
1193 }
1194
1195 static HRESULT WINAPI IDirect3DDevice8Impl_SetLight(LPDIRECT3DDEVICE8 iface, DWORD Index, CONST D3DLIGHT8* pLight) {
1196     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1197     HRESULT hr;
1198
1199     TRACE("iface %p, index %u, light %p.\n", iface, Index, pLight);
1200
1201     /* Note: D3DLIGHT8 is compatible with WINED3DLIGHT */
1202     wined3d_mutex_lock();
1203     hr = IWineD3DDevice_SetLight(This->WineD3DDevice, Index, (const WINED3DLIGHT *)pLight);
1204     wined3d_mutex_unlock();
1205
1206     return hr;
1207 }
1208
1209 static HRESULT WINAPI IDirect3DDevice8Impl_GetLight(LPDIRECT3DDEVICE8 iface, DWORD Index,D3DLIGHT8* pLight) {
1210     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1211     HRESULT hr;
1212
1213     TRACE("iface %p, index %u, light %p.\n", iface, Index, pLight);
1214
1215     /* Note: D3DLIGHT8 is compatible with WINED3DLIGHT */
1216     wined3d_mutex_lock();
1217     hr = IWineD3DDevice_GetLight(This->WineD3DDevice, Index, (WINED3DLIGHT *)pLight);
1218     wined3d_mutex_unlock();
1219
1220     return hr;
1221 }
1222
1223 static HRESULT WINAPI IDirect3DDevice8Impl_LightEnable(LPDIRECT3DDEVICE8 iface, DWORD Index,BOOL Enable) {
1224     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1225     HRESULT hr;
1226
1227     TRACE("iface %p, index %u, enable %#x.\n", iface, Index, Enable);
1228
1229     wined3d_mutex_lock();
1230     hr = IWineD3DDevice_SetLightEnable(This->WineD3DDevice, Index, Enable);
1231     wined3d_mutex_unlock();
1232
1233     return hr;
1234 }
1235
1236 static HRESULT WINAPI IDirect3DDevice8Impl_GetLightEnable(LPDIRECT3DDEVICE8 iface, DWORD Index,BOOL* pEnable) {
1237     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1238     HRESULT hr;
1239
1240     TRACE("iface %p, index %u, enable %p.\n", iface, Index, pEnable);
1241
1242     wined3d_mutex_lock();
1243     hr = IWineD3DDevice_GetLightEnable(This->WineD3DDevice, Index, pEnable);
1244     wined3d_mutex_unlock();
1245
1246     return hr;
1247 }
1248
1249 static HRESULT WINAPI IDirect3DDevice8Impl_SetClipPlane(LPDIRECT3DDEVICE8 iface, DWORD Index,CONST float* pPlane) {
1250     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1251     HRESULT hr;
1252
1253     TRACE("iface %p, index %u, plane %p.\n", iface, Index, pPlane);
1254
1255     wined3d_mutex_lock();
1256     hr = IWineD3DDevice_SetClipPlane(This->WineD3DDevice, Index, pPlane);
1257     wined3d_mutex_unlock();
1258
1259     return hr;
1260 }
1261
1262 static HRESULT WINAPI IDirect3DDevice8Impl_GetClipPlane(LPDIRECT3DDEVICE8 iface, DWORD Index,float* pPlane) {
1263     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1264     HRESULT hr;
1265
1266     TRACE("iface %p, index %u, plane %p.\n", iface, Index, pPlane);
1267
1268     wined3d_mutex_lock();
1269     hr = IWineD3DDevice_GetClipPlane(This->WineD3DDevice, Index, pPlane);
1270     wined3d_mutex_unlock();
1271
1272     return hr;
1273 }
1274
1275 static HRESULT WINAPI IDirect3DDevice8Impl_SetRenderState(LPDIRECT3DDEVICE8 iface, D3DRENDERSTATETYPE State,DWORD Value) {
1276     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1277     HRESULT hr;
1278
1279     TRACE("iface %p, state %#x, value %#x.\n", iface, State, Value);
1280
1281     wined3d_mutex_lock();
1282     hr = IWineD3DDevice_SetRenderState(This->WineD3DDevice, State, Value);
1283     wined3d_mutex_unlock();
1284
1285     return hr;
1286 }
1287
1288 static HRESULT WINAPI IDirect3DDevice8Impl_GetRenderState(LPDIRECT3DDEVICE8 iface, D3DRENDERSTATETYPE State,DWORD* pValue) {
1289     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1290     HRESULT hr;
1291
1292     TRACE("iface %p, state %#x, value %p.\n", iface, State, pValue);
1293
1294     wined3d_mutex_lock();
1295     hr = IWineD3DDevice_GetRenderState(This->WineD3DDevice, State, pValue);
1296     wined3d_mutex_unlock();
1297
1298     return hr;
1299 }
1300
1301 static HRESULT WINAPI IDirect3DDevice8Impl_BeginStateBlock(LPDIRECT3DDEVICE8 iface) {
1302     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1303     HRESULT hr;
1304
1305     TRACE("iface %p.\n", iface);
1306
1307     wined3d_mutex_lock();
1308     hr = IWineD3DDevice_BeginStateBlock(This->WineD3DDevice);
1309     wined3d_mutex_unlock();
1310
1311     return hr;
1312 }
1313
1314 static HRESULT WINAPI IDirect3DDevice8Impl_EndStateBlock(LPDIRECT3DDEVICE8 iface, DWORD* pToken) {
1315     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1316     IWineD3DStateBlock *stateblock;
1317     HRESULT hr;
1318
1319     TRACE("iface %p, token %p.\n", iface, pToken);
1320
1321     /* Tell wineD3D to endstateblock before anything else (in case we run out
1322      * of memory later and cause locking problems)
1323      */
1324     wined3d_mutex_lock();
1325     hr = IWineD3DDevice_EndStateBlock(This->WineD3DDevice , &stateblock);
1326     if (hr != D3D_OK) {
1327         WARN("IWineD3DDevice_EndStateBlock returned an error\n");
1328         wined3d_mutex_unlock();
1329         return hr;
1330     }
1331
1332     *pToken = d3d8_allocate_handle(&This->handle_table, stateblock, D3D8_HANDLE_SB);
1333     wined3d_mutex_unlock();
1334
1335     if (*pToken == D3D8_INVALID_HANDLE)
1336     {
1337         ERR("Failed to create a handle\n");
1338         wined3d_mutex_lock();
1339         IWineD3DStateBlock_Release(stateblock);
1340         wined3d_mutex_unlock();
1341         return E_FAIL;
1342     }
1343     ++*pToken;
1344
1345     TRACE("Returning %#x (%p).\n", *pToken, stateblock);
1346
1347     return hr;
1348 }
1349
1350 static HRESULT WINAPI IDirect3DDevice8Impl_ApplyStateBlock(LPDIRECT3DDEVICE8 iface, DWORD Token) {
1351     IDirect3DDevice8Impl     *This = (IDirect3DDevice8Impl *)iface;
1352     IWineD3DStateBlock *stateblock;
1353     HRESULT hr;
1354
1355     TRACE("iface %p, token %#x.\n", iface, Token);
1356
1357     wined3d_mutex_lock();
1358     stateblock = d3d8_get_object(&This->handle_table, Token - 1, D3D8_HANDLE_SB);
1359     if (!stateblock)
1360     {
1361         WARN("Invalid handle (%#x) passed.\n", Token);
1362         wined3d_mutex_unlock();
1363         return D3DERR_INVALIDCALL;
1364     }
1365     hr = IWineD3DStateBlock_Apply(stateblock);
1366     wined3d_mutex_unlock();
1367
1368     return hr;
1369 }
1370
1371 static HRESULT WINAPI IDirect3DDevice8Impl_CaptureStateBlock(LPDIRECT3DDEVICE8 iface, DWORD Token) {
1372     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1373     IWineD3DStateBlock *stateblock;
1374     HRESULT hr;
1375
1376     TRACE("iface %p, token %#x.\n", iface, Token);
1377
1378     wined3d_mutex_lock();
1379     stateblock = d3d8_get_object(&This->handle_table, Token - 1, D3D8_HANDLE_SB);
1380     if (!stateblock)
1381     {
1382         WARN("Invalid handle (%#x) passed.\n", Token);
1383         wined3d_mutex_unlock();
1384         return D3DERR_INVALIDCALL;
1385     }
1386     hr = IWineD3DStateBlock_Capture(stateblock);
1387     wined3d_mutex_unlock();
1388
1389     return hr;
1390 }
1391
1392 static HRESULT WINAPI IDirect3DDevice8Impl_DeleteStateBlock(LPDIRECT3DDEVICE8 iface, DWORD Token) {
1393     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1394     IWineD3DStateBlock *stateblock;
1395
1396     TRACE("iface %p, token %#x.\n", iface, Token);
1397
1398     wined3d_mutex_lock();
1399     stateblock = d3d8_free_handle(&This->handle_table, Token - 1, D3D8_HANDLE_SB);
1400
1401     if (!stateblock)
1402     {
1403         WARN("Invalid handle (%#x) passed.\n", Token);
1404         wined3d_mutex_unlock();
1405         return D3DERR_INVALIDCALL;
1406     }
1407
1408     if (IWineD3DStateBlock_Release((IUnknown *)stateblock))
1409     {
1410         ERR("Stateblock %p has references left, this shouldn't happen.\n", stateblock);
1411     }
1412     wined3d_mutex_unlock();
1413
1414     return D3D_OK;
1415 }
1416
1417 static HRESULT WINAPI IDirect3DDevice8Impl_CreateStateBlock(IDirect3DDevice8 *iface,
1418         D3DSTATEBLOCKTYPE Type, DWORD *handle)
1419 {
1420     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1421     IWineD3DStateBlock *stateblock;
1422     HRESULT hr;
1423
1424     TRACE("iface %p, type %#x, handle %p.\n", iface, Type, handle);
1425
1426     if (Type != D3DSBT_ALL
1427             && Type != D3DSBT_PIXELSTATE
1428             && Type != D3DSBT_VERTEXSTATE)
1429     {
1430         WARN("Unexpected stateblock type, returning D3DERR_INVALIDCALL\n");
1431         return D3DERR_INVALIDCALL;
1432     }
1433
1434     wined3d_mutex_lock();
1435     hr = IWineD3DDevice_CreateStateBlock(This->WineD3DDevice, (WINED3DSTATEBLOCKTYPE)Type, &stateblock);
1436     if (FAILED(hr))
1437     {
1438         wined3d_mutex_unlock();
1439         ERR("IWineD3DDevice_CreateStateBlock failed, hr %#x\n", hr);
1440         return hr;
1441     }
1442
1443     *handle = d3d8_allocate_handle(&This->handle_table, stateblock, D3D8_HANDLE_SB);
1444     wined3d_mutex_unlock();
1445
1446     if (*handle == D3D8_INVALID_HANDLE)
1447     {
1448         ERR("Failed to allocate a handle.\n");
1449         wined3d_mutex_lock();
1450         IWineD3DStateBlock_Release(stateblock);
1451         wined3d_mutex_unlock();
1452         return E_FAIL;
1453     }
1454     ++*handle;
1455
1456     TRACE("Returning %#x (%p).\n", *handle, stateblock);
1457
1458     return hr;
1459 }
1460
1461 static HRESULT WINAPI IDirect3DDevice8Impl_SetClipStatus(LPDIRECT3DDEVICE8 iface, CONST D3DCLIPSTATUS8* pClipStatus) {
1462     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1463     HRESULT hr;
1464
1465     TRACE("iface %p, clip_status %p.\n", iface, pClipStatus);
1466 /* FIXME: Verify that D3DCLIPSTATUS8 ~= WINED3DCLIPSTATUS */
1467
1468     wined3d_mutex_lock();
1469     hr = IWineD3DDevice_SetClipStatus(This->WineD3DDevice, (const WINED3DCLIPSTATUS *)pClipStatus);
1470     wined3d_mutex_unlock();
1471
1472     return hr;
1473 }
1474
1475 static HRESULT WINAPI IDirect3DDevice8Impl_GetClipStatus(LPDIRECT3DDEVICE8 iface, D3DCLIPSTATUS8* pClipStatus) {
1476     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1477     HRESULT hr;
1478
1479     TRACE("iface %p, clip_status %p.\n", iface, pClipStatus);
1480
1481     wined3d_mutex_lock();
1482     hr = IWineD3DDevice_GetClipStatus(This->WineD3DDevice, (WINED3DCLIPSTATUS *)pClipStatus);
1483     wined3d_mutex_unlock();
1484
1485     return hr;
1486 }
1487
1488 static HRESULT WINAPI IDirect3DDevice8Impl_GetTexture(IDirect3DDevice8 *iface,
1489         DWORD Stage, IDirect3DBaseTexture8 **ppTexture)
1490 {
1491     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1492     IWineD3DBaseTexture *retTexture;
1493     HRESULT hr;
1494
1495     TRACE("iface %p, stage %u, texture %p.\n", iface, Stage, ppTexture);
1496
1497     if(ppTexture == NULL){
1498         return D3DERR_INVALIDCALL;
1499     }
1500
1501     wined3d_mutex_lock();
1502     hr = IWineD3DDevice_GetTexture(This->WineD3DDevice, Stage, &retTexture);
1503     if (FAILED(hr))
1504     {
1505         WARN("Failed to get texture for stage %u, hr %#x.\n", Stage, hr);
1506         wined3d_mutex_unlock();
1507         *ppTexture = NULL;
1508         return hr;
1509     }
1510
1511     if (retTexture)
1512     {
1513         *ppTexture = IWineD3DBaseTexture_GetParent(retTexture);
1514         IDirect3DBaseTexture8_AddRef(*ppTexture);
1515         IWineD3DBaseTexture_Release(retTexture);
1516     }
1517     else
1518     {
1519         *ppTexture = NULL;
1520     }
1521     wined3d_mutex_unlock();
1522
1523     return D3D_OK;
1524 }
1525
1526 static HRESULT WINAPI IDirect3DDevice8Impl_SetTexture(LPDIRECT3DDEVICE8 iface, DWORD Stage, IDirect3DBaseTexture8* pTexture) {
1527     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1528     HRESULT hr;
1529
1530     TRACE("iface %p, stage %u, texture %p.\n", iface, Stage, pTexture);
1531
1532     wined3d_mutex_lock();
1533     hr = IWineD3DDevice_SetTexture(This->WineD3DDevice, Stage,
1534                                    pTexture==NULL ? NULL : ((IDirect3DBaseTexture8Impl *)pTexture)->wineD3DBaseTexture);
1535     wined3d_mutex_unlock();
1536
1537     return hr;
1538 }
1539
1540 static const struct tss_lookup
1541 {
1542     BOOL sampler_state;
1543     DWORD state;
1544 }
1545 tss_lookup[] =
1546 {
1547     {FALSE, WINED3DTSS_FORCE_DWORD},            /*  0, unused */
1548     {FALSE, WINED3DTSS_COLOROP},                /*  1, D3DTSS_COLOROP */
1549     {FALSE, WINED3DTSS_COLORARG1},              /*  2, D3DTSS_COLORARG1 */
1550     {FALSE, WINED3DTSS_COLORARG2},              /*  3, D3DTSS_COLORARG2 */
1551     {FALSE, WINED3DTSS_ALPHAOP},                /*  4, D3DTSS_ALPHAOP */
1552     {FALSE, WINED3DTSS_ALPHAARG1},              /*  5, D3DTSS_ALPHAARG1 */
1553     {FALSE, WINED3DTSS_ALPHAARG2},              /*  6, D3DTSS_ALPHAARG2 */
1554     {FALSE, WINED3DTSS_BUMPENVMAT00},           /*  7, D3DTSS_BUMPENVMAT00 */
1555     {FALSE, WINED3DTSS_BUMPENVMAT01},           /*  8, D3DTSS_BUMPENVMAT01 */
1556     {FALSE, WINED3DTSS_BUMPENVMAT10},           /*  9, D3DTSS_BUMPENVMAT10 */
1557     {FALSE, WINED3DTSS_BUMPENVMAT11},           /* 10, D3DTSS_BUMPENVMAT11 */
1558     {FALSE, WINED3DTSS_TEXCOORDINDEX},          /* 11, D3DTSS_TEXCOORDINDEX */
1559     {FALSE, WINED3DTSS_FORCE_DWORD},            /* 12, unused */
1560     {TRUE,  WINED3DSAMP_ADDRESSU},              /* 13, D3DTSS_ADDRESSU */
1561     {TRUE,  WINED3DSAMP_ADDRESSV},              /* 14, D3DTSS_ADDRESSV */
1562     {TRUE,  WINED3DSAMP_BORDERCOLOR},           /* 15, D3DTSS_BORDERCOLOR */
1563     {TRUE,  WINED3DSAMP_MAGFILTER},             /* 16, D3DTSS_MAGFILTER */
1564     {TRUE,  WINED3DSAMP_MINFILTER},             /* 17, D3DTSS_MINFILTER */
1565     {TRUE,  WINED3DSAMP_MIPFILTER},             /* 18, D3DTSS_MIPFILTER */
1566     {TRUE,  WINED3DSAMP_MIPMAPLODBIAS},         /* 19, D3DTSS_MIPMAPLODBIAS */
1567     {TRUE,  WINED3DSAMP_MAXMIPLEVEL},           /* 20, D3DTSS_MAXMIPLEVEL */
1568     {TRUE,  WINED3DSAMP_MAXANISOTROPY},         /* 21, D3DTSS_MAXANISOTROPY */
1569     {FALSE, WINED3DTSS_BUMPENVLSCALE},          /* 22, D3DTSS_BUMPENVLSCALE */
1570     {FALSE, WINED3DTSS_BUMPENVLOFFSET},         /* 23, D3DTSS_BUMPENVLOFFSET */
1571     {FALSE, WINED3DTSS_TEXTURETRANSFORMFLAGS},  /* 24, D3DTSS_TEXTURETRANSFORMFLAGS */
1572     {TRUE,  WINED3DSAMP_ADDRESSW},              /* 25, D3DTSS_ADDRESSW */
1573     {FALSE, WINED3DTSS_COLORARG0},              /* 26, D3DTSS_COLORARG0 */
1574     {FALSE, WINED3DTSS_ALPHAARG0},              /* 27, D3DTSS_ALPHAARG0 */
1575     {FALSE, WINED3DTSS_RESULTARG},              /* 28, D3DTSS_RESULTARG */
1576 };
1577
1578 static HRESULT  WINAPI  IDirect3DDevice8Impl_GetTextureStageState(LPDIRECT3DDEVICE8 iface, DWORD Stage,D3DTEXTURESTAGESTATETYPE Type,DWORD* pValue) {
1579     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1580     const struct tss_lookup *l = &tss_lookup[Type];
1581     HRESULT hr;
1582
1583     TRACE("iface %p, stage %u, state %#x, value %p.\n", iface, Stage, Type, pValue);
1584
1585     wined3d_mutex_lock();
1586     if (l->sampler_state) hr = IWineD3DDevice_GetSamplerState(This->WineD3DDevice, Stage, l->state, pValue);
1587     else hr = IWineD3DDevice_GetTextureStageState(This->WineD3DDevice, Stage, l->state, pValue);
1588     wined3d_mutex_unlock();
1589
1590     return hr;
1591 }
1592
1593 static HRESULT WINAPI IDirect3DDevice8Impl_SetTextureStageState(LPDIRECT3DDEVICE8 iface, DWORD Stage, D3DTEXTURESTAGESTATETYPE Type, DWORD Value) {
1594     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1595     const struct tss_lookup *l = &tss_lookup[Type];
1596     HRESULT hr;
1597
1598     TRACE("iface %p, stage %u, state %#x, value %#x.\n", iface, Stage, Type, Value);
1599
1600     wined3d_mutex_lock();
1601     if (l->sampler_state) hr = IWineD3DDevice_SetSamplerState(This->WineD3DDevice, Stage, l->state, Value);
1602     else hr = IWineD3DDevice_SetTextureStageState(This->WineD3DDevice, Stage, l->state, Value);
1603     wined3d_mutex_unlock();
1604
1605     return hr;
1606 }
1607
1608 static HRESULT WINAPI IDirect3DDevice8Impl_ValidateDevice(LPDIRECT3DDEVICE8 iface, DWORD* pNumPasses) {
1609     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1610     HRESULT hr;
1611
1612     TRACE("iface %p, pass_count %p.\n", iface, pNumPasses);
1613
1614     wined3d_mutex_lock();
1615     hr = IWineD3DDevice_ValidateDevice(This->WineD3DDevice, pNumPasses);
1616     wined3d_mutex_unlock();
1617
1618     return hr;
1619 }
1620
1621 static HRESULT WINAPI IDirect3DDevice8Impl_GetInfo(IDirect3DDevice8 *iface,
1622         DWORD info_id, void *info, DWORD info_size)
1623 {
1624     FIXME("iface %p, info_id %#x, info %p, info_size %u stub!\n", iface, info_id, info, info_size);
1625
1626     return D3D_OK;
1627 }
1628
1629 static HRESULT WINAPI IDirect3DDevice8Impl_SetPaletteEntries(LPDIRECT3DDEVICE8 iface, UINT PaletteNumber, CONST PALETTEENTRY* pEntries) {
1630     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1631     HRESULT hr;
1632
1633     TRACE("iface %p, palette_idx %u, entries %p.\n", iface, PaletteNumber, pEntries);
1634
1635     wined3d_mutex_lock();
1636     hr = IWineD3DDevice_SetPaletteEntries(This->WineD3DDevice, PaletteNumber, pEntries);
1637     wined3d_mutex_unlock();
1638
1639     return hr;
1640 }
1641
1642 static HRESULT WINAPI IDirect3DDevice8Impl_GetPaletteEntries(LPDIRECT3DDEVICE8 iface, UINT PaletteNumber, PALETTEENTRY* pEntries) {
1643     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1644     HRESULT hr;
1645
1646     TRACE("iface %p, palette_idx %u, entries %p.\n", iface, PaletteNumber, pEntries);
1647
1648     wined3d_mutex_lock();
1649     hr = IWineD3DDevice_GetPaletteEntries(This->WineD3DDevice, PaletteNumber, pEntries);
1650     wined3d_mutex_unlock();
1651
1652     return hr;
1653 }
1654
1655 static HRESULT WINAPI IDirect3DDevice8Impl_SetCurrentTexturePalette(LPDIRECT3DDEVICE8 iface, UINT PaletteNumber) {
1656     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1657     HRESULT hr;
1658
1659     TRACE("iface %p, palette_idx %u.\n", iface, PaletteNumber);
1660
1661     wined3d_mutex_lock();
1662     hr = IWineD3DDevice_SetCurrentTexturePalette(This->WineD3DDevice, PaletteNumber);
1663     wined3d_mutex_unlock();
1664
1665     return hr;
1666 }
1667
1668 static HRESULT  WINAPI  IDirect3DDevice8Impl_GetCurrentTexturePalette(LPDIRECT3DDEVICE8 iface, UINT *PaletteNumber) {
1669     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1670     HRESULT hr;
1671
1672     TRACE("iface %p, palette_idx %p.\n", iface, PaletteNumber);
1673
1674     wined3d_mutex_lock();
1675     hr = IWineD3DDevice_GetCurrentTexturePalette(This->WineD3DDevice, PaletteNumber);
1676     wined3d_mutex_unlock();
1677
1678     return hr;
1679 }
1680
1681 static HRESULT WINAPI IDirect3DDevice8Impl_DrawPrimitive(IDirect3DDevice8 *iface, D3DPRIMITIVETYPE PrimitiveType,
1682         UINT StartVertex, UINT PrimitiveCount)
1683 {
1684     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1685     HRESULT hr;
1686
1687     TRACE("iface %p, primitive_type %#x, start_vertex %u, primitive_count %u.\n",
1688             iface, PrimitiveType, StartVertex, PrimitiveCount);
1689
1690     wined3d_mutex_lock();
1691     IWineD3DDevice_SetPrimitiveType(This->WineD3DDevice, PrimitiveType);
1692     hr = IWineD3DDevice_DrawPrimitive(This->WineD3DDevice, StartVertex,
1693             vertex_count_from_primitive_count(PrimitiveType, PrimitiveCount));
1694     wined3d_mutex_unlock();
1695
1696     return hr;
1697 }
1698
1699 static HRESULT WINAPI IDirect3DDevice8Impl_DrawIndexedPrimitive(LPDIRECT3DDEVICE8 iface, D3DPRIMITIVETYPE PrimitiveType,
1700                                                            UINT MinVertexIndex,UINT NumVertices,UINT startIndex,UINT primCount) {
1701     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1702     HRESULT hr;
1703
1704     TRACE("iface %p, primitive_type %#x, min_vertex_idx %u, vertex_count %u, start_idx %u, primitive_count %u.\n",
1705             iface, PrimitiveType, MinVertexIndex, NumVertices, startIndex, primCount);
1706
1707     wined3d_mutex_lock();
1708     IWineD3DDevice_SetPrimitiveType(This->WineD3DDevice, PrimitiveType);
1709     hr = IWineD3DDevice_DrawIndexedPrimitive(This->WineD3DDevice, startIndex,
1710             vertex_count_from_primitive_count(PrimitiveType, primCount));
1711     wined3d_mutex_unlock();
1712
1713     return hr;
1714 }
1715
1716 static HRESULT WINAPI IDirect3DDevice8Impl_DrawPrimitiveUP(LPDIRECT3DDEVICE8 iface, D3DPRIMITIVETYPE PrimitiveType,UINT PrimitiveCount,CONST void* pVertexStreamZeroData,UINT VertexStreamZeroStride) {
1717     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1718     HRESULT hr;
1719
1720     TRACE("iface %p, primitive_type %#x, primitive_count %u, data %p, stride %u.\n",
1721             iface, PrimitiveType, PrimitiveCount, pVertexStreamZeroData, VertexStreamZeroStride);
1722
1723     wined3d_mutex_lock();
1724     IWineD3DDevice_SetPrimitiveType(This->WineD3DDevice, PrimitiveType);
1725     hr = IWineD3DDevice_DrawPrimitiveUP(This->WineD3DDevice,
1726             vertex_count_from_primitive_count(PrimitiveType, PrimitiveCount),
1727             pVertexStreamZeroData, VertexStreamZeroStride);
1728     wined3d_mutex_unlock();
1729
1730     return hr;
1731 }
1732
1733 static HRESULT WINAPI IDirect3DDevice8Impl_DrawIndexedPrimitiveUP(LPDIRECT3DDEVICE8 iface, D3DPRIMITIVETYPE PrimitiveType,UINT MinVertexIndex,
1734                                                              UINT NumVertexIndices,UINT PrimitiveCount,CONST void* pIndexData,
1735                                                              D3DFORMAT IndexDataFormat,CONST void* pVertexStreamZeroData,
1736                                                              UINT VertexStreamZeroStride) {
1737     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1738     HRESULT hr;
1739
1740     TRACE("iface %p, primitive_type %#x, min_vertex_idx %u, index_count %u, primitive_count %u,\n"
1741             "index_data %p, index_format %#x, vertex_data %p, vertex_stride %u.\n",
1742             iface, PrimitiveType, MinVertexIndex, NumVertexIndices, PrimitiveCount,
1743             pIndexData, IndexDataFormat, pVertexStreamZeroData, VertexStreamZeroStride);
1744
1745     wined3d_mutex_lock();
1746     IWineD3DDevice_SetPrimitiveType(This->WineD3DDevice, PrimitiveType);
1747     hr = IWineD3DDevice_DrawIndexedPrimitiveUP(This->WineD3DDevice,
1748             vertex_count_from_primitive_count(PrimitiveType, PrimitiveCount), pIndexData,
1749             wined3dformat_from_d3dformat(IndexDataFormat), pVertexStreamZeroData, VertexStreamZeroStride);
1750     wined3d_mutex_unlock();
1751
1752     return hr;
1753 }
1754
1755 static HRESULT WINAPI IDirect3DDevice8Impl_ProcessVertices(LPDIRECT3DDEVICE8 iface, UINT SrcStartIndex,UINT DestIndex,UINT VertexCount,IDirect3DVertexBuffer8* pDestBuffer,DWORD Flags) {
1756     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1757     HRESULT hr;
1758     IDirect3DVertexBuffer8Impl *dest = (IDirect3DVertexBuffer8Impl *) pDestBuffer;
1759
1760     TRACE("iface %p, src_start_idx %u, dst_idx %u, vertex_count %u, dst_buffer %p, flags %#x.\n",
1761             iface, SrcStartIndex, DestIndex, VertexCount, pDestBuffer, Flags);
1762
1763     wined3d_mutex_lock();
1764     hr = IWineD3DDevice_ProcessVertices(This->WineD3DDevice,SrcStartIndex, DestIndex, VertexCount, dest->wineD3DVertexBuffer, NULL, Flags, dest->fvf);
1765     wined3d_mutex_unlock();
1766
1767     return hr;
1768 }
1769
1770 static HRESULT WINAPI IDirect3DDevice8Impl_CreateVertexShader(IDirect3DDevice8 *iface,
1771         const DWORD *declaration, const DWORD *byte_code, DWORD *shader, DWORD usage)
1772 {
1773     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1774     IDirect3DVertexShader8Impl *object;
1775     DWORD shader_handle;
1776     DWORD handle;
1777     HRESULT hr;
1778
1779     TRACE("iface %p, declaration %p, byte_code %p, shader %p, usage %#x.\n",
1780             iface, declaration, byte_code, shader, usage);
1781
1782     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
1783     if (!object)
1784     {
1785         ERR("Failed to allocate vertex shader memory.\n");
1786         *shader = 0;
1787         return E_OUTOFMEMORY;
1788     }
1789
1790     wined3d_mutex_lock();
1791     handle = d3d8_allocate_handle(&This->handle_table, object, D3D8_HANDLE_VS);
1792     wined3d_mutex_unlock();
1793     if (handle == D3D8_INVALID_HANDLE)
1794     {
1795         ERR("Failed to allocate vertex shader handle.\n");
1796         HeapFree(GetProcessHeap(), 0, object);
1797         *shader = 0;
1798         return E_OUTOFMEMORY;
1799     }
1800
1801     shader_handle = handle + VS_HIGHESTFIXEDFXF + 1;
1802
1803     hr = vertexshader_init(object, This, declaration, byte_code, shader_handle, usage);
1804     if (FAILED(hr))
1805     {
1806         WARN("Failed to initialize vertex shader, hr %#x.\n", hr);
1807         wined3d_mutex_lock();
1808         d3d8_free_handle(&This->handle_table, handle, D3D8_HANDLE_VS);
1809         wined3d_mutex_unlock();
1810         HeapFree(GetProcessHeap(), 0, object);
1811         *shader = 0;
1812         return hr;
1813     }
1814
1815     TRACE("Created vertex shader %p (handle %#x).\n", object, shader_handle);
1816     *shader = shader_handle;
1817
1818     return D3D_OK;
1819 }
1820
1821 static IDirect3DVertexDeclaration8Impl *IDirect3DDevice8Impl_FindDecl(IDirect3DDevice8Impl *This, DWORD fvf)
1822 {
1823     IDirect3DVertexDeclaration8Impl *d3d8_declaration;
1824     HRESULT hr;
1825     int p, low, high; /* deliberately signed */
1826     struct FvfToDecl *convertedDecls = This->decls;
1827
1828     TRACE("Searching for declaration for fvf %08x... ", fvf);
1829
1830     low = 0;
1831     high = This->numConvertedDecls - 1;
1832     while(low <= high) {
1833         p = (low + high) >> 1;
1834         TRACE("%d ", p);
1835         if(convertedDecls[p].fvf == fvf) {
1836             TRACE("found %p\n", convertedDecls[p].decl);
1837             return (IDirect3DVertexDeclaration8Impl *)convertedDecls[p].decl;
1838         } else if(convertedDecls[p].fvf < fvf) {
1839             low = p + 1;
1840         } else {
1841             high = p - 1;
1842         }
1843     }
1844     TRACE("not found. Creating and inserting at position %d.\n", low);
1845
1846     d3d8_declaration = HeapAlloc(GetProcessHeap(), 0, sizeof(*d3d8_declaration));
1847     if (!d3d8_declaration)
1848     {
1849         ERR("Memory allocation failed.\n");
1850         return NULL;
1851     }
1852
1853     hr = vertexdeclaration_init_fvf(d3d8_declaration, This, fvf);
1854     if (FAILED(hr))
1855     {
1856         WARN("Failed to initialize vertex declaration, hr %#x.\n", hr);
1857         HeapFree(GetProcessHeap(), 0, d3d8_declaration);
1858         return NULL;
1859     }
1860
1861     if(This->declArraySize == This->numConvertedDecls) {
1862         int grow = This->declArraySize / 2;
1863         convertedDecls = HeapReAlloc(GetProcessHeap(), 0, convertedDecls,
1864                                      sizeof(convertedDecls[0]) * (This->numConvertedDecls + grow));
1865         if(!convertedDecls) {
1866             /* This will destroy it */
1867             IDirect3DVertexDeclaration8_Release((IDirect3DVertexDeclaration8 *)d3d8_declaration);
1868             return NULL;
1869         }
1870         This->decls = convertedDecls;
1871         This->declArraySize += grow;
1872     }
1873
1874     memmove(convertedDecls + low + 1, convertedDecls + low, sizeof(convertedDecls[0]) * (This->numConvertedDecls - low));
1875     convertedDecls[low].decl = (IDirect3DVertexDeclaration8 *)d3d8_declaration;
1876     convertedDecls[low].fvf = fvf;
1877     This->numConvertedDecls++;
1878
1879     TRACE("Returning %p. %u decls in array\n", d3d8_declaration, This->numConvertedDecls);
1880     return d3d8_declaration;
1881 }
1882
1883 static HRESULT WINAPI IDirect3DDevice8Impl_SetVertexShader(LPDIRECT3DDEVICE8 iface, DWORD pShader) {
1884     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1885     IDirect3DVertexShader8Impl *shader;
1886     HRESULT hr;
1887
1888     TRACE("iface %p, shader %#x.\n", iface, pShader);
1889
1890     if (VS_HIGHESTFIXEDFXF >= pShader) {
1891         TRACE("Setting FVF, %#x\n", pShader);
1892
1893         wined3d_mutex_lock();
1894         IWineD3DDevice_SetVertexDeclaration(This->WineD3DDevice,
1895                 IDirect3DDevice8Impl_FindDecl(This, pShader)->wined3d_vertex_declaration);
1896         IWineD3DDevice_SetVertexShader(This->WineD3DDevice, NULL);
1897         wined3d_mutex_unlock();
1898
1899         return D3D_OK;
1900     }
1901
1902     TRACE("Setting shader\n");
1903
1904     wined3d_mutex_lock();
1905     shader = d3d8_get_object(&This->handle_table, pShader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_VS);
1906     if (!shader)
1907     {
1908         WARN("Invalid handle (%#x) passed.\n", pShader);
1909         wined3d_mutex_unlock();
1910
1911         return D3DERR_INVALIDCALL;
1912     }
1913
1914     hr = IWineD3DDevice_SetVertexDeclaration(This->WineD3DDevice,
1915             ((IDirect3DVertexDeclaration8Impl *)shader->vertex_declaration)->wined3d_vertex_declaration);
1916     if (SUCCEEDED(hr)) hr = IWineD3DDevice_SetVertexShader(This->WineD3DDevice, shader->wineD3DVertexShader);
1917     wined3d_mutex_unlock();
1918
1919     TRACE("Returning hr %#x\n", hr);
1920
1921     return hr;
1922 }
1923
1924 static HRESULT WINAPI IDirect3DDevice8Impl_GetVertexShader(IDirect3DDevice8 *iface, DWORD *ppShader)
1925 {
1926     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1927     IWineD3DVertexDeclaration *wined3d_declaration;
1928     IDirect3DVertexDeclaration8 *d3d8_declaration;
1929     HRESULT hr;
1930
1931     TRACE("iface %p, shader %p.\n", iface, ppShader);
1932
1933     wined3d_mutex_lock();
1934     hr = IWineD3DDevice_GetVertexDeclaration(This->WineD3DDevice, &wined3d_declaration);
1935     if (FAILED(hr))
1936     {
1937         wined3d_mutex_unlock();
1938         WARN("(%p) : Call to IWineD3DDevice_GetVertexDeclaration failed %#x (device %p)\n",
1939                 This, hr, This->WineD3DDevice);
1940         return hr;
1941     }
1942
1943     if (!wined3d_declaration)
1944     {
1945         wined3d_mutex_unlock();
1946         *ppShader = 0;
1947         return D3D_OK;
1948     }
1949
1950     d3d8_declaration = IWineD3DVertexDeclaration_GetParent(wined3d_declaration);
1951     IWineD3DVertexDeclaration_Release(wined3d_declaration);
1952     wined3d_mutex_unlock();
1953     *ppShader = ((IDirect3DVertexDeclaration8Impl *)d3d8_declaration)->shader_handle;
1954
1955     TRACE("(%p) : returning %#x\n", This, *ppShader);
1956
1957     return hr;
1958 }
1959
1960 static HRESULT  WINAPI  IDirect3DDevice8Impl_DeleteVertexShader(LPDIRECT3DDEVICE8 iface, DWORD pShader) {
1961     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1962     IDirect3DVertexShader8Impl *shader;
1963     IWineD3DVertexShader *cur = NULL;
1964
1965     TRACE("iface %p, shader %#x.\n", iface, pShader);
1966
1967     wined3d_mutex_lock();
1968     shader = d3d8_free_handle(&This->handle_table, pShader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_VS);
1969     if (!shader)
1970     {
1971         WARN("Invalid handle (%#x) passed.\n", pShader);
1972         wined3d_mutex_unlock();
1973
1974         return D3DERR_INVALIDCALL;
1975     }
1976
1977     IWineD3DDevice_GetVertexShader(This->WineD3DDevice, &cur);
1978
1979     if (cur)
1980     {
1981         if (cur == shader->wineD3DVertexShader) IDirect3DDevice8_SetVertexShader(iface, 0);
1982         IWineD3DVertexShader_Release(cur);
1983     }
1984
1985     wined3d_mutex_unlock();
1986
1987     if (IUnknown_Release((IUnknown *)shader))
1988     {
1989         ERR("Shader %p has references left, this shouldn't happen.\n", shader);
1990     }
1991
1992     return D3D_OK;
1993 }
1994
1995 static HRESULT WINAPI IDirect3DDevice8Impl_SetVertexShaderConstant(LPDIRECT3DDEVICE8 iface, DWORD Register, CONST void* pConstantData, DWORD ConstantCount) {
1996     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
1997     HRESULT hr;
1998
1999     TRACE("iface %p, register %u, data %p, count %u.\n",
2000             iface, Register, pConstantData, ConstantCount);
2001
2002     if(Register + ConstantCount > D3D8_MAX_VERTEX_SHADER_CONSTANTF) {
2003         WARN("Trying to access %u constants, but d3d8 only supports %u\n",
2004              Register + ConstantCount, D3D8_MAX_VERTEX_SHADER_CONSTANTF);
2005         return D3DERR_INVALIDCALL;
2006     }
2007
2008     wined3d_mutex_lock();
2009     hr = IWineD3DDevice_SetVertexShaderConstantF(This->WineD3DDevice, Register, pConstantData, ConstantCount);
2010     wined3d_mutex_unlock();
2011
2012     return hr;
2013 }
2014
2015 static HRESULT WINAPI IDirect3DDevice8Impl_GetVertexShaderConstant(LPDIRECT3DDEVICE8 iface, DWORD Register, void* pConstantData, DWORD ConstantCount) {
2016     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
2017     HRESULT hr;
2018
2019     TRACE("iface %p, register %u, data %p, count %u.\n",
2020             iface, Register, pConstantData, ConstantCount);
2021
2022     if(Register + ConstantCount > D3D8_MAX_VERTEX_SHADER_CONSTANTF) {
2023         WARN("Trying to access %u constants, but d3d8 only supports %u\n",
2024              Register + ConstantCount, D3D8_MAX_VERTEX_SHADER_CONSTANTF);
2025         return D3DERR_INVALIDCALL;
2026     }
2027
2028     wined3d_mutex_lock();
2029     hr = IWineD3DDevice_GetVertexShaderConstantF(This->WineD3DDevice, Register, pConstantData, ConstantCount);
2030     wined3d_mutex_unlock();
2031
2032     return hr;
2033 }
2034
2035 static HRESULT WINAPI IDirect3DDevice8Impl_GetVertexShaderDeclaration(LPDIRECT3DDEVICE8 iface, DWORD pVertexShader, void* pData, DWORD* pSizeOfData) {
2036     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
2037     IDirect3DVertexDeclaration8Impl *declaration;
2038     IDirect3DVertexShader8Impl *shader;
2039
2040     TRACE("iface %p, shader %#x, data %p, data_size %p.\n",
2041             iface, pVertexShader, pData, pSizeOfData);
2042
2043     wined3d_mutex_lock();
2044     shader = d3d8_get_object(&This->handle_table, pVertexShader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_VS);
2045     wined3d_mutex_unlock();
2046
2047     if (!shader)
2048     {
2049         WARN("Invalid handle (%#x) passed.\n", pVertexShader);
2050         return D3DERR_INVALIDCALL;
2051     }
2052     declaration = (IDirect3DVertexDeclaration8Impl *)shader->vertex_declaration;
2053
2054     /* If pData is NULL, we just return the required size of the buffer. */
2055     if (!pData) {
2056         *pSizeOfData = declaration->elements_size;
2057         return D3D_OK;
2058     }
2059
2060     /* MSDN claims that if *pSizeOfData is smaller than the required size
2061      * we should write the required size and return D3DERR_MOREDATA.
2062      * That's not actually true. */
2063     if (*pSizeOfData < declaration->elements_size) {
2064         return D3DERR_INVALIDCALL;
2065     }
2066
2067     CopyMemory(pData, declaration->elements, declaration->elements_size);
2068
2069     return D3D_OK;
2070 }
2071
2072 static HRESULT WINAPI IDirect3DDevice8Impl_GetVertexShaderFunction(LPDIRECT3DDEVICE8 iface, DWORD pVertexShader, void* pData, DWORD* pSizeOfData) {
2073     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
2074     IDirect3DVertexShader8Impl *shader = NULL;
2075     HRESULT hr;
2076
2077     TRACE("iface %p, shader %#x, data %p, data_size %p.\n",
2078             iface, pVertexShader, pData, pSizeOfData);
2079
2080     wined3d_mutex_lock();
2081     shader = d3d8_get_object(&This->handle_table, pVertexShader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_VS);
2082     if (!shader)
2083     {
2084         WARN("Invalid handle (%#x) passed.\n", pVertexShader);
2085         wined3d_mutex_unlock();
2086
2087         return D3DERR_INVALIDCALL;
2088     }
2089
2090     if (!shader->wineD3DVertexShader)
2091     {
2092         wined3d_mutex_unlock();
2093         *pSizeOfData = 0;
2094         return D3D_OK;
2095     }
2096
2097     hr = IWineD3DVertexShader_GetFunction(shader->wineD3DVertexShader, pData, pSizeOfData);
2098     wined3d_mutex_unlock();
2099
2100     return hr;
2101 }
2102
2103 static HRESULT WINAPI IDirect3DDevice8Impl_SetIndices(LPDIRECT3DDEVICE8 iface, IDirect3DIndexBuffer8* pIndexData, UINT baseVertexIndex) {
2104     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
2105     HRESULT hr;
2106     IDirect3DIndexBuffer8Impl *ib = (IDirect3DIndexBuffer8Impl *)pIndexData;
2107
2108     TRACE("iface %p, buffer %p, base_vertex_idx %u.\n", iface, pIndexData, baseVertexIndex);
2109
2110     /* WineD3D takes an INT(due to d3d9), but d3d8 uses UINTs. Do I have to add a check here that
2111      * the UINT doesn't cause an overflow in the INT? It seems rather unlikely because such large
2112      * vertex buffers can't be created to address them with an index that requires the 32nd bit
2113      * (4 Byte minimum vertex size * 2^31-1 -> 8 gb buffer. The index sign would be the least
2114      * problem)
2115      */
2116     wined3d_mutex_lock();
2117     IWineD3DDevice_SetBaseVertexIndex(This->WineD3DDevice, baseVertexIndex);
2118     hr = IWineD3DDevice_SetIndexBuffer(This->WineD3DDevice,
2119             ib ? ib->wineD3DIndexBuffer : NULL,
2120             ib ? ib->format : WINED3DFMT_UNKNOWN);
2121     wined3d_mutex_unlock();
2122
2123     return hr;
2124 }
2125
2126 static HRESULT WINAPI IDirect3DDevice8Impl_GetIndices(IDirect3DDevice8 *iface,
2127         IDirect3DIndexBuffer8 **ppIndexData, UINT *pBaseVertexIndex)
2128 {
2129     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
2130     IWineD3DBuffer *retIndexData = NULL;
2131     HRESULT hr;
2132
2133     TRACE("iface %p, buffer %p, base_vertex_index %p.\n", iface, ppIndexData, pBaseVertexIndex);
2134
2135     if(ppIndexData == NULL){
2136         return D3DERR_INVALIDCALL;
2137     }
2138
2139     /* The case from UINT to INT is safe because d3d8 will never set negative values */
2140     wined3d_mutex_lock();
2141     IWineD3DDevice_GetBaseVertexIndex(This->WineD3DDevice, (INT *) pBaseVertexIndex);
2142     hr = IWineD3DDevice_GetIndexBuffer(This->WineD3DDevice, &retIndexData);
2143     if (SUCCEEDED(hr) && retIndexData)
2144     {
2145         *ppIndexData = IWineD3DBuffer_GetParent(retIndexData);
2146         IDirect3DIndexBuffer8_AddRef(*ppIndexData);
2147         IWineD3DBuffer_Release(retIndexData);
2148     } else {
2149         if (FAILED(hr)) FIXME("Call to GetIndices failed\n");
2150         *ppIndexData = NULL;
2151     }
2152     wined3d_mutex_unlock();
2153
2154     return hr;
2155 }
2156
2157 static HRESULT WINAPI IDirect3DDevice8Impl_CreatePixelShader(IDirect3DDevice8 *iface,
2158         const DWORD *byte_code, DWORD *shader)
2159 {
2160     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
2161     IDirect3DPixelShader8Impl *object;
2162     DWORD shader_handle;
2163     DWORD handle;
2164     HRESULT hr;
2165
2166     TRACE("iface %p, byte_code %p, shader %p.\n", iface, byte_code, shader);
2167
2168     if (!shader)
2169     {
2170         TRACE("(%p) Invalid call\n", This);
2171         return D3DERR_INVALIDCALL;
2172     }
2173
2174     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
2175     if (!object)
2176     {
2177         ERR("Failed to allocate pixel shader memmory.\n");
2178         return E_OUTOFMEMORY;
2179     }
2180
2181     wined3d_mutex_lock();
2182     handle = d3d8_allocate_handle(&This->handle_table, object, D3D8_HANDLE_PS);
2183     wined3d_mutex_unlock();
2184     if (handle == D3D8_INVALID_HANDLE)
2185     {
2186         ERR("Failed to allocate pixel shader handle.\n");
2187         HeapFree(GetProcessHeap(), 0, object);
2188         return E_OUTOFMEMORY;
2189     }
2190
2191     shader_handle = handle + VS_HIGHESTFIXEDFXF + 1;
2192
2193     hr = pixelshader_init(object, This, byte_code, shader_handle);
2194     if (FAILED(hr))
2195     {
2196         WARN("Failed to initialize pixel shader, hr %#x.\n", hr);
2197         wined3d_mutex_lock();
2198         d3d8_free_handle(&This->handle_table, handle, D3D8_HANDLE_PS);
2199         wined3d_mutex_unlock();
2200         HeapFree(GetProcessHeap(), 0, object);
2201         *shader = 0;
2202         return hr;
2203     }
2204
2205     TRACE("Created pixel shader %p (handle %#x).\n", object, shader_handle);
2206     *shader = shader_handle;
2207
2208     return D3D_OK;
2209 }
2210
2211 static HRESULT WINAPI IDirect3DDevice8Impl_SetPixelShader(LPDIRECT3DDEVICE8 iface, DWORD pShader) {
2212     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
2213     IDirect3DPixelShader8Impl *shader;
2214     HRESULT hr;
2215
2216     TRACE("iface %p, shader %#x.\n", iface, pShader);
2217
2218     wined3d_mutex_lock();
2219
2220     if (!pShader)
2221     {
2222         hr = IWineD3DDevice_SetPixelShader(This->WineD3DDevice, NULL);
2223         wined3d_mutex_unlock();
2224         return hr;
2225     }
2226
2227     shader = d3d8_get_object(&This->handle_table, pShader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_PS);
2228     if (!shader)
2229     {
2230         WARN("Invalid handle (%#x) passed.\n", pShader);
2231         wined3d_mutex_unlock();
2232         return D3DERR_INVALIDCALL;
2233     }
2234
2235     TRACE("(%p) : Setting shader %p\n", This, shader);
2236     hr = IWineD3DDevice_SetPixelShader(This->WineD3DDevice, shader->wineD3DPixelShader);
2237     wined3d_mutex_unlock();
2238
2239     return hr;
2240 }
2241
2242 static HRESULT WINAPI IDirect3DDevice8Impl_GetPixelShader(IDirect3DDevice8 *iface, DWORD *ppShader)
2243 {
2244     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
2245     IWineD3DPixelShader *object;
2246     HRESULT hr;
2247
2248     TRACE("iface %p, shader %p.\n", iface, ppShader);
2249
2250     if (NULL == ppShader) {
2251         TRACE("(%p) Invalid call\n", This);
2252         return D3DERR_INVALIDCALL;
2253     }
2254
2255     wined3d_mutex_lock();
2256     hr = IWineD3DDevice_GetPixelShader(This->WineD3DDevice, &object);
2257     if (SUCCEEDED(hr) && object)
2258     {
2259         IDirect3DPixelShader8Impl *d3d8_shader;
2260         d3d8_shader = IWineD3DPixelShader_GetParent(object);
2261         IWineD3DPixelShader_Release(object);
2262         *ppShader = d3d8_shader->handle;
2263     }
2264     else
2265     {
2266         *ppShader = 0;
2267     }
2268     wined3d_mutex_unlock();
2269
2270     TRACE("(%p) : returning %#x\n", This, *ppShader);
2271
2272     return hr;
2273 }
2274
2275 static HRESULT WINAPI IDirect3DDevice8Impl_DeletePixelShader(LPDIRECT3DDEVICE8 iface, DWORD pShader) {
2276     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
2277     IDirect3DPixelShader8Impl *shader;
2278     IWineD3DPixelShader *cur = NULL;
2279
2280     TRACE("iface %p, shader %#x.\n", iface, pShader);
2281
2282     wined3d_mutex_lock();
2283
2284     shader = d3d8_free_handle(&This->handle_table, pShader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_PS);
2285     if (!shader)
2286     {
2287         WARN("Invalid handle (%#x) passed.\n", pShader);
2288         wined3d_mutex_unlock();
2289         return D3DERR_INVALIDCALL;
2290     }
2291
2292     IWineD3DDevice_GetPixelShader(This->WineD3DDevice, &cur);
2293
2294     if (cur)
2295     {
2296         if (cur == shader->wineD3DPixelShader) IDirect3DDevice8_SetPixelShader(iface, 0);
2297         IWineD3DPixelShader_Release(cur);
2298     }
2299
2300     wined3d_mutex_unlock();
2301
2302     if (IUnknown_Release((IUnknown *)shader))
2303     {
2304         ERR("Shader %p has references left, this shouldn't happen.\n", shader);
2305     }
2306
2307     return D3D_OK;
2308 }
2309
2310 static HRESULT  WINAPI  IDirect3DDevice8Impl_SetPixelShaderConstant(LPDIRECT3DDEVICE8 iface, DWORD Register, CONST void* pConstantData, DWORD ConstantCount) {
2311     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
2312     HRESULT hr;
2313
2314     TRACE("iface %p, register %u, data %p, count %u.\n",
2315             iface, Register, pConstantData, ConstantCount);
2316
2317     wined3d_mutex_lock();
2318     hr = IWineD3DDevice_SetPixelShaderConstantF(This->WineD3DDevice, Register, pConstantData, ConstantCount);
2319     wined3d_mutex_unlock();
2320
2321     return hr;
2322 }
2323
2324 static HRESULT WINAPI IDirect3DDevice8Impl_GetPixelShaderConstant(LPDIRECT3DDEVICE8 iface, DWORD Register, void* pConstantData, DWORD ConstantCount) {
2325     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
2326     HRESULT hr;
2327
2328     TRACE("iface %p, register %u, data %p, count %u.\n",
2329             iface, Register, pConstantData, ConstantCount);
2330
2331     wined3d_mutex_lock();
2332     hr = IWineD3DDevice_GetPixelShaderConstantF(This->WineD3DDevice, Register, pConstantData, ConstantCount);
2333     wined3d_mutex_unlock();
2334
2335     return hr;
2336 }
2337
2338 static HRESULT WINAPI IDirect3DDevice8Impl_GetPixelShaderFunction(LPDIRECT3DDEVICE8 iface, DWORD pPixelShader, void* pData, DWORD* pSizeOfData) {
2339     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
2340     IDirect3DPixelShader8Impl *shader = NULL;
2341     HRESULT hr;
2342
2343     TRACE("iface %p, shader %#x, data %p, data_size %p.\n",
2344             iface, pPixelShader, pData, pSizeOfData);
2345
2346     wined3d_mutex_lock();
2347     shader = d3d8_get_object(&This->handle_table, pPixelShader - (VS_HIGHESTFIXEDFXF + 1), D3D8_HANDLE_PS);
2348     if (!shader)
2349     {
2350         WARN("Invalid handle (%#x) passed.\n", pPixelShader);
2351         wined3d_mutex_unlock();
2352
2353         return D3DERR_INVALIDCALL;
2354     }
2355
2356     hr = IWineD3DPixelShader_GetFunction(shader->wineD3DPixelShader, pData, pSizeOfData);
2357     wined3d_mutex_unlock();
2358
2359     return hr;
2360 }
2361
2362 static HRESULT WINAPI IDirect3DDevice8Impl_DrawRectPatch(LPDIRECT3DDEVICE8 iface, UINT Handle,CONST float* pNumSegs,CONST D3DRECTPATCH_INFO* pRectPatchInfo) {
2363     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
2364     HRESULT hr;
2365
2366     TRACE("iface %p, handle %#x, segment_count %p, patch_info %p.\n",
2367             iface, Handle, pNumSegs, pRectPatchInfo);
2368
2369     wined3d_mutex_lock();
2370     hr = IWineD3DDevice_DrawRectPatch(This->WineD3DDevice, Handle, pNumSegs, (CONST WINED3DRECTPATCH_INFO *)pRectPatchInfo);
2371     wined3d_mutex_unlock();
2372
2373     return hr;
2374 }
2375
2376 static HRESULT WINAPI IDirect3DDevice8Impl_DrawTriPatch(LPDIRECT3DDEVICE8 iface, UINT Handle,CONST float* pNumSegs,CONST D3DTRIPATCH_INFO* pTriPatchInfo) {
2377     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
2378     HRESULT hr;
2379
2380     TRACE("iface %p, handle %#x, segment_count %p, patch_info %p.\n",
2381             iface, Handle, pNumSegs, pTriPatchInfo);
2382
2383     wined3d_mutex_lock();
2384     hr = IWineD3DDevice_DrawTriPatch(This->WineD3DDevice, Handle, pNumSegs, (CONST WINED3DTRIPATCH_INFO *)pTriPatchInfo);
2385     wined3d_mutex_unlock();
2386
2387     return hr;
2388 }
2389
2390 static HRESULT WINAPI IDirect3DDevice8Impl_DeletePatch(LPDIRECT3DDEVICE8 iface, UINT Handle) {
2391     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
2392     HRESULT hr;
2393
2394     TRACE("iface %p, handle %#x.\n", iface, Handle);
2395
2396     wined3d_mutex_lock();
2397     hr = IWineD3DDevice_DeletePatch(This->WineD3DDevice, Handle);
2398     wined3d_mutex_unlock();
2399
2400     return hr;
2401 }
2402
2403 static HRESULT WINAPI IDirect3DDevice8Impl_SetStreamSource(LPDIRECT3DDEVICE8 iface, UINT StreamNumber,IDirect3DVertexBuffer8* pStreamData,UINT Stride) {
2404     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
2405     HRESULT hr;
2406
2407     TRACE("iface %p, stream_idx %u, buffer %p, stride %u.\n",
2408             iface, StreamNumber, pStreamData, Stride);
2409
2410     wined3d_mutex_lock();
2411     hr = IWineD3DDevice_SetStreamSource(This->WineD3DDevice, StreamNumber,
2412                                         NULL == pStreamData ? NULL : ((IDirect3DVertexBuffer8Impl *)pStreamData)->wineD3DVertexBuffer,
2413                                         0/* Offset in bytes */, Stride);
2414     wined3d_mutex_unlock();
2415
2416     return hr;
2417 }
2418
2419 static HRESULT WINAPI IDirect3DDevice8Impl_GetStreamSource(IDirect3DDevice8 *iface,
2420         UINT StreamNumber, IDirect3DVertexBuffer8 **pStream, UINT *pStride)
2421 {
2422     IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)iface;
2423     IWineD3DBuffer *retStream = NULL;
2424     HRESULT hr;
2425
2426     TRACE("iface %p, stream_idx %u, buffer %p, stride %p.\n",
2427             iface, StreamNumber, pStream, pStride);
2428
2429     if(pStream == NULL){
2430         return D3DERR_INVALIDCALL;
2431     }
2432
2433     wined3d_mutex_lock();
2434     hr = IWineD3DDevice_GetStreamSource(This->WineD3DDevice, StreamNumber,
2435             &retStream, 0 /* Offset in bytes */, pStride);
2436     if (SUCCEEDED(hr) && retStream)
2437     {
2438         *pStream = IWineD3DBuffer_GetParent(retStream);
2439         IDirect3DVertexBuffer8_AddRef(*pStream);
2440         IWineD3DBuffer_Release(retStream);
2441     }
2442     else
2443     {
2444         if (FAILED(hr)) FIXME("Call to GetStreamSource failed, hr %#x.\n", hr);
2445         *pStream = NULL;
2446     }
2447     wined3d_mutex_unlock();
2448
2449     return hr;
2450 }
2451
2452 static const IDirect3DDevice8Vtbl Direct3DDevice8_Vtbl =
2453 {
2454     IDirect3DDevice8Impl_QueryInterface,
2455     IDirect3DDevice8Impl_AddRef,
2456     IDirect3DDevice8Impl_Release,
2457     IDirect3DDevice8Impl_TestCooperativeLevel,
2458     IDirect3DDevice8Impl_GetAvailableTextureMem,
2459     IDirect3DDevice8Impl_ResourceManagerDiscardBytes,
2460     IDirect3DDevice8Impl_GetDirect3D,
2461     IDirect3DDevice8Impl_GetDeviceCaps,
2462     IDirect3DDevice8Impl_GetDisplayMode,
2463     IDirect3DDevice8Impl_GetCreationParameters,
2464     IDirect3DDevice8Impl_SetCursorProperties,
2465     IDirect3DDevice8Impl_SetCursorPosition,
2466     IDirect3DDevice8Impl_ShowCursor,
2467     IDirect3DDevice8Impl_CreateAdditionalSwapChain,
2468     IDirect3DDevice8Impl_Reset,
2469     IDirect3DDevice8Impl_Present,
2470     IDirect3DDevice8Impl_GetBackBuffer,
2471     IDirect3DDevice8Impl_GetRasterStatus,
2472     IDirect3DDevice8Impl_SetGammaRamp,
2473     IDirect3DDevice8Impl_GetGammaRamp,
2474     IDirect3DDevice8Impl_CreateTexture,
2475     IDirect3DDevice8Impl_CreateVolumeTexture,
2476     IDirect3DDevice8Impl_CreateCubeTexture,
2477     IDirect3DDevice8Impl_CreateVertexBuffer,
2478     IDirect3DDevice8Impl_CreateIndexBuffer,
2479     IDirect3DDevice8Impl_CreateRenderTarget,
2480     IDirect3DDevice8Impl_CreateDepthStencilSurface,
2481     IDirect3DDevice8Impl_CreateImageSurface,
2482     IDirect3DDevice8Impl_CopyRects,
2483     IDirect3DDevice8Impl_UpdateTexture,
2484     IDirect3DDevice8Impl_GetFrontBuffer,
2485     IDirect3DDevice8Impl_SetRenderTarget,
2486     IDirect3DDevice8Impl_GetRenderTarget,
2487     IDirect3DDevice8Impl_GetDepthStencilSurface,
2488     IDirect3DDevice8Impl_BeginScene,
2489     IDirect3DDevice8Impl_EndScene,
2490     IDirect3DDevice8Impl_Clear,
2491     IDirect3DDevice8Impl_SetTransform,
2492     IDirect3DDevice8Impl_GetTransform,
2493     IDirect3DDevice8Impl_MultiplyTransform,
2494     IDirect3DDevice8Impl_SetViewport,
2495     IDirect3DDevice8Impl_GetViewport,
2496     IDirect3DDevice8Impl_SetMaterial,
2497     IDirect3DDevice8Impl_GetMaterial,
2498     IDirect3DDevice8Impl_SetLight,
2499     IDirect3DDevice8Impl_GetLight,
2500     IDirect3DDevice8Impl_LightEnable,
2501     IDirect3DDevice8Impl_GetLightEnable,
2502     IDirect3DDevice8Impl_SetClipPlane,
2503     IDirect3DDevice8Impl_GetClipPlane,
2504     IDirect3DDevice8Impl_SetRenderState,
2505     IDirect3DDevice8Impl_GetRenderState,
2506     IDirect3DDevice8Impl_BeginStateBlock,
2507     IDirect3DDevice8Impl_EndStateBlock,
2508     IDirect3DDevice8Impl_ApplyStateBlock,
2509     IDirect3DDevice8Impl_CaptureStateBlock,
2510     IDirect3DDevice8Impl_DeleteStateBlock,
2511     IDirect3DDevice8Impl_CreateStateBlock,
2512     IDirect3DDevice8Impl_SetClipStatus,
2513     IDirect3DDevice8Impl_GetClipStatus,
2514     IDirect3DDevice8Impl_GetTexture,
2515     IDirect3DDevice8Impl_SetTexture,
2516     IDirect3DDevice8Impl_GetTextureStageState,
2517     IDirect3DDevice8Impl_SetTextureStageState,
2518     IDirect3DDevice8Impl_ValidateDevice,
2519     IDirect3DDevice8Impl_GetInfo,
2520     IDirect3DDevice8Impl_SetPaletteEntries,
2521     IDirect3DDevice8Impl_GetPaletteEntries,
2522     IDirect3DDevice8Impl_SetCurrentTexturePalette,
2523     IDirect3DDevice8Impl_GetCurrentTexturePalette,
2524     IDirect3DDevice8Impl_DrawPrimitive,
2525     IDirect3DDevice8Impl_DrawIndexedPrimitive,
2526     IDirect3DDevice8Impl_DrawPrimitiveUP,
2527     IDirect3DDevice8Impl_DrawIndexedPrimitiveUP,
2528     IDirect3DDevice8Impl_ProcessVertices,
2529     IDirect3DDevice8Impl_CreateVertexShader,
2530     IDirect3DDevice8Impl_SetVertexShader,
2531     IDirect3DDevice8Impl_GetVertexShader,
2532     IDirect3DDevice8Impl_DeleteVertexShader,
2533     IDirect3DDevice8Impl_SetVertexShaderConstant,
2534     IDirect3DDevice8Impl_GetVertexShaderConstant,
2535     IDirect3DDevice8Impl_GetVertexShaderDeclaration,
2536     IDirect3DDevice8Impl_GetVertexShaderFunction,
2537     IDirect3DDevice8Impl_SetStreamSource,
2538     IDirect3DDevice8Impl_GetStreamSource,
2539     IDirect3DDevice8Impl_SetIndices,
2540     IDirect3DDevice8Impl_GetIndices,
2541     IDirect3DDevice8Impl_CreatePixelShader,
2542     IDirect3DDevice8Impl_SetPixelShader,
2543     IDirect3DDevice8Impl_GetPixelShader,
2544     IDirect3DDevice8Impl_DeletePixelShader,
2545     IDirect3DDevice8Impl_SetPixelShaderConstant,
2546     IDirect3DDevice8Impl_GetPixelShaderConstant,
2547     IDirect3DDevice8Impl_GetPixelShaderFunction,
2548     IDirect3DDevice8Impl_DrawRectPatch,
2549     IDirect3DDevice8Impl_DrawTriPatch,
2550     IDirect3DDevice8Impl_DeletePatch
2551 };
2552
2553 /* IWineD3DDeviceParent IUnknown methods */
2554
2555 static inline struct IDirect3DDevice8Impl *device_from_device_parent(IWineD3DDeviceParent *iface)
2556 {
2557     return (struct IDirect3DDevice8Impl *)((char*)iface
2558             - FIELD_OFFSET(struct IDirect3DDevice8Impl, device_parent_vtbl));
2559 }
2560
2561 static HRESULT STDMETHODCALLTYPE device_parent_QueryInterface(IWineD3DDeviceParent *iface, REFIID riid, void **object)
2562 {
2563     struct IDirect3DDevice8Impl *This = device_from_device_parent(iface);
2564     return IDirect3DDevice8Impl_QueryInterface((IDirect3DDevice8 *)This, riid, object);
2565 }
2566
2567 static ULONG STDMETHODCALLTYPE device_parent_AddRef(IWineD3DDeviceParent *iface)
2568 {
2569     struct IDirect3DDevice8Impl *This = device_from_device_parent(iface);
2570     return IDirect3DDevice8Impl_AddRef((IDirect3DDevice8 *)This);
2571 }
2572
2573 static ULONG STDMETHODCALLTYPE device_parent_Release(IWineD3DDeviceParent *iface)
2574 {
2575     struct IDirect3DDevice8Impl *This = device_from_device_parent(iface);
2576     return IDirect3DDevice8Impl_Release((IDirect3DDevice8 *)This);
2577 }
2578
2579 /* IWineD3DDeviceParent methods */
2580
2581 static void STDMETHODCALLTYPE device_parent_WineD3DDeviceCreated(IWineD3DDeviceParent *iface, IWineD3DDevice *device)
2582 {
2583     TRACE("iface %p, device %p\n", iface, device);
2584 }
2585
2586 static HRESULT STDMETHODCALLTYPE device_parent_CreateSurface(IWineD3DDeviceParent *iface,
2587         IUnknown *superior, UINT width, UINT height, enum wined3d_format_id format, DWORD usage,
2588         WINED3DPOOL pool, UINT level, WINED3DCUBEMAP_FACES face, IWineD3DSurface **surface)
2589 {
2590     struct IDirect3DDevice8Impl *This = device_from_device_parent(iface);
2591     IDirect3DSurface8Impl *d3d_surface;
2592     BOOL lockable = TRUE;
2593     HRESULT hr;
2594
2595     TRACE("iface %p, superior %p, width %u, height %u, format %#x, usage %#x,\n"
2596             "\tpool %#x, level %u, face %u, surface %p\n",
2597             iface, superior, width, height, format, usage, pool, level, face, surface);
2598
2599
2600     if (pool == WINED3DPOOL_DEFAULT && !(usage & WINED3DUSAGE_DYNAMIC)) lockable = FALSE;
2601
2602     hr = IDirect3DDevice8Impl_CreateSurface((IDirect3DDevice8 *)This, width, height,
2603             d3dformat_from_wined3dformat(format), lockable, FALSE /* Discard */, level,
2604             (IDirect3DSurface8 **)&d3d_surface, usage, pool, D3DMULTISAMPLE_NONE, 0 /* MultisampleQuality */);
2605     if (FAILED(hr))
2606     {
2607         ERR("(%p) CreateSurface failed, returning %#x\n", iface, hr);
2608         return hr;
2609     }
2610
2611     *surface = d3d_surface->wineD3DSurface;
2612     IWineD3DSurface_AddRef(*surface);
2613
2614     d3d_surface->container = superior;
2615     IUnknown_Release(d3d_surface->parentDevice);
2616     d3d_surface->parentDevice = NULL;
2617
2618     IDirect3DSurface8_Release((IDirect3DSurface8 *)d3d_surface);
2619     d3d_surface->forwardReference = superior;
2620
2621     return hr;
2622 }
2623
2624 static HRESULT STDMETHODCALLTYPE device_parent_CreateRenderTarget(IWineD3DDeviceParent *iface,
2625         IUnknown *superior, UINT width, UINT height, enum wined3d_format_id format,
2626         WINED3DMULTISAMPLE_TYPE multisample_type, DWORD multisample_quality, BOOL lockable,
2627         IWineD3DSurface **surface)
2628 {
2629     struct IDirect3DDevice8Impl *This = device_from_device_parent(iface);
2630     IDirect3DSurface8Impl *d3d_surface;
2631     HRESULT hr;
2632
2633     TRACE("iface %p, superior %p, width %u, height %u, format %#x, multisample_type %#x,\n"
2634             "\tmultisample_quality %u, lockable %u, surface %p\n",
2635             iface, superior, width, height, format, multisample_type, multisample_quality, lockable, surface);
2636
2637     hr = IDirect3DDevice8_CreateRenderTarget((IDirect3DDevice8 *)This, width, height,
2638             d3dformat_from_wined3dformat(format), multisample_type, lockable, (IDirect3DSurface8 **)&d3d_surface);
2639     if (FAILED(hr))
2640     {
2641         ERR("(%p) CreateRenderTarget failed, returning %#x\n", iface, hr);
2642         return hr;
2643     }
2644
2645     *surface = d3d_surface->wineD3DSurface;
2646     IWineD3DSurface_AddRef(*surface);
2647
2648     d3d_surface->container = (IUnknown *)This;
2649     /* Implicit surfaces are created with an refcount of 0 */
2650     IUnknown_Release((IUnknown *)d3d_surface);
2651
2652     return hr;
2653 }
2654
2655 static HRESULT STDMETHODCALLTYPE device_parent_CreateDepthStencilSurface(IWineD3DDeviceParent *iface,
2656         UINT width, UINT height, enum wined3d_format_id format, WINED3DMULTISAMPLE_TYPE multisample_type,
2657         DWORD multisample_quality, BOOL discard, IWineD3DSurface **surface)
2658 {
2659     struct IDirect3DDevice8Impl *This = device_from_device_parent(iface);
2660     IDirect3DSurface8Impl *d3d_surface;
2661     HRESULT hr;
2662
2663     TRACE("iface %p, width %u, height %u, format %#x, multisample_type %#x,\n"
2664             "\tmultisample_quality %u, discard %u, surface %p\n",
2665             iface, width, height, format, multisample_type, multisample_quality, discard, surface);
2666
2667     hr = IDirect3DDevice8_CreateDepthStencilSurface((IDirect3DDevice8 *)This, width, height,
2668             d3dformat_from_wined3dformat(format), multisample_type, (IDirect3DSurface8 **)&d3d_surface);
2669     if (FAILED(hr))
2670     {
2671         ERR("(%p) CreateDepthStencilSurface failed, returning %#x\n", iface, hr);
2672         return hr;
2673     }
2674
2675     *surface = d3d_surface->wineD3DSurface;
2676     IWineD3DSurface_AddRef(*surface);
2677
2678     d3d_surface->container = (IUnknown *)This;
2679     /* Implicit surfaces are created with an refcount of 0 */
2680     IUnknown_Release((IUnknown *)d3d_surface);
2681
2682     return hr;
2683 }
2684
2685 static HRESULT STDMETHODCALLTYPE device_parent_CreateVolume(IWineD3DDeviceParent *iface,
2686         IUnknown *superior, UINT width, UINT height, UINT depth, enum wined3d_format_id format,
2687         WINED3DPOOL pool, DWORD usage, IWineD3DVolume **volume)
2688 {
2689     struct IDirect3DDevice8Impl *This = device_from_device_parent(iface);
2690     IDirect3DVolume8Impl *object;
2691     HRESULT hr;
2692
2693     TRACE("iface %p, superior %p, width %u, height %u, depth %u, format %#x, pool %#x, usage %#x, volume %p\n",
2694             iface, superior, width, height, depth, format, pool, usage, volume);
2695
2696     /* Allocate the storage for the device */
2697     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
2698     if (!object)
2699     {
2700         FIXME("Allocation of memory failed\n");
2701         *volume = NULL;
2702         return D3DERR_OUTOFVIDEOMEMORY;
2703     }
2704
2705     hr = volume_init(object, This, width, height, depth, usage, format, pool);
2706     if (FAILED(hr))
2707     {
2708         WARN("Failed to initialize volume, hr %#x.\n", hr);
2709         HeapFree(GetProcessHeap(), 0, object);
2710         return hr;
2711     }
2712
2713     *volume = object->wineD3DVolume;
2714     IWineD3DVolume_AddRef(*volume);
2715     IDirect3DVolume8_Release((IDirect3DVolume8 *)object);
2716
2717     object->container = superior;
2718     object->forwardReference = superior;
2719
2720     TRACE("(%p) Created volume %p\n", iface, object);
2721
2722     return hr;
2723 }
2724
2725 static HRESULT STDMETHODCALLTYPE device_parent_CreateSwapChain(IWineD3DDeviceParent *iface,
2726         WINED3DPRESENT_PARAMETERS *present_parameters, IWineD3DSwapChain **swapchain)
2727 {
2728     struct IDirect3DDevice8Impl *This = device_from_device_parent(iface);
2729     IDirect3DSwapChain8Impl *d3d_swapchain;
2730     D3DPRESENT_PARAMETERS local_parameters;
2731     HRESULT hr;
2732
2733     TRACE("iface %p, present_parameters %p, swapchain %p\n", iface, present_parameters, swapchain);
2734
2735     /* Copy the presentation parameters */
2736     local_parameters.BackBufferWidth = present_parameters->BackBufferWidth;
2737     local_parameters.BackBufferHeight = present_parameters->BackBufferHeight;
2738     local_parameters.BackBufferFormat = d3dformat_from_wined3dformat(present_parameters->BackBufferFormat);
2739     local_parameters.BackBufferCount = present_parameters->BackBufferCount;
2740     local_parameters.MultiSampleType = present_parameters->MultiSampleType;
2741     local_parameters.SwapEffect = present_parameters->SwapEffect;
2742     local_parameters.hDeviceWindow = present_parameters->hDeviceWindow;
2743     local_parameters.Windowed = present_parameters->Windowed;
2744     local_parameters.EnableAutoDepthStencil = present_parameters->EnableAutoDepthStencil;
2745     local_parameters.AutoDepthStencilFormat = d3dformat_from_wined3dformat(present_parameters->AutoDepthStencilFormat);
2746     local_parameters.Flags = present_parameters->Flags;
2747     local_parameters.FullScreen_RefreshRateInHz = present_parameters->FullScreen_RefreshRateInHz;
2748     local_parameters.FullScreen_PresentationInterval = present_parameters->PresentationInterval;
2749
2750     hr = IDirect3DDevice8_CreateAdditionalSwapChain((IDirect3DDevice8 *)This,
2751             &local_parameters, (IDirect3DSwapChain8 **)&d3d_swapchain);
2752     if (FAILED(hr))
2753     {
2754         ERR("(%p) CreateAdditionalSwapChain failed, returning %#x\n", iface, hr);
2755         *swapchain = NULL;
2756         return hr;
2757     }
2758
2759     *swapchain = d3d_swapchain->wineD3DSwapChain;
2760     IUnknown_Release(d3d_swapchain->parentDevice);
2761     d3d_swapchain->parentDevice = NULL;
2762
2763     /* Copy back the presentation parameters */
2764     present_parameters->BackBufferWidth = local_parameters.BackBufferWidth;
2765     present_parameters->BackBufferHeight = local_parameters.BackBufferHeight;
2766     present_parameters->BackBufferFormat = wined3dformat_from_d3dformat(local_parameters.BackBufferFormat);
2767     present_parameters->BackBufferCount = local_parameters.BackBufferCount;
2768     present_parameters->MultiSampleType = local_parameters.MultiSampleType;
2769     present_parameters->SwapEffect = local_parameters.SwapEffect;
2770     present_parameters->hDeviceWindow = local_parameters.hDeviceWindow;
2771     present_parameters->Windowed = local_parameters.Windowed;
2772     present_parameters->EnableAutoDepthStencil = local_parameters.EnableAutoDepthStencil;
2773     present_parameters->AutoDepthStencilFormat = wined3dformat_from_d3dformat(local_parameters.AutoDepthStencilFormat);
2774     present_parameters->Flags = local_parameters.Flags;
2775     present_parameters->FullScreen_RefreshRateInHz = local_parameters.FullScreen_RefreshRateInHz;
2776     present_parameters->PresentationInterval = local_parameters.FullScreen_PresentationInterval;
2777
2778     return hr;
2779 }
2780
2781 static const IWineD3DDeviceParentVtbl d3d8_wined3d_device_parent_vtbl =
2782 {
2783     /* IUnknown methods */
2784     device_parent_QueryInterface,
2785     device_parent_AddRef,
2786     device_parent_Release,
2787     /* IWineD3DDeviceParent methods */
2788     device_parent_WineD3DDeviceCreated,
2789     device_parent_CreateSurface,
2790     device_parent_CreateRenderTarget,
2791     device_parent_CreateDepthStencilSurface,
2792     device_parent_CreateVolume,
2793     device_parent_CreateSwapChain,
2794 };
2795
2796 static void setup_fpu(void)
2797 {
2798 #if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
2799     WORD cw;
2800     __asm__ volatile ("fnstcw %0" : "=m" (cw));
2801     cw = (cw & ~0xf3f) | 0x3f;
2802     __asm__ volatile ("fldcw %0" : : "m" (cw));
2803 #else
2804     FIXME("FPU setup not implemented for this platform.\n");
2805 #endif
2806 }
2807
2808 HRESULT device_init(IDirect3DDevice8Impl *device, IWineD3D *wined3d, UINT adapter,
2809         D3DDEVTYPE device_type, HWND focus_window, DWORD flags, D3DPRESENT_PARAMETERS *parameters)
2810 {
2811     WINED3DPRESENT_PARAMETERS wined3d_parameters;
2812     HRESULT hr;
2813
2814     device->lpVtbl = &Direct3DDevice8_Vtbl;
2815     device->device_parent_vtbl = &d3d8_wined3d_device_parent_vtbl;
2816     device->ref = 1;
2817     device->handle_table.entries = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
2818             D3D8_INITIAL_HANDLE_TABLE_SIZE * sizeof(*device->handle_table.entries));
2819     if (!device->handle_table.entries)
2820     {
2821         ERR("Failed to allocate handle table memory.\n");
2822         return E_OUTOFMEMORY;
2823     }
2824     device->handle_table.table_size = D3D8_INITIAL_HANDLE_TABLE_SIZE;
2825
2826     if (!(flags & D3DCREATE_FPU_PRESERVE)) setup_fpu();
2827
2828     wined3d_mutex_lock();
2829     hr = IWineD3D_CreateDevice(wined3d, adapter, device_type, focus_window, flags,
2830             (IWineD3DDeviceParent *)&device->device_parent_vtbl, &device->WineD3DDevice);
2831     if (FAILED(hr))
2832     {
2833         WARN("Failed to create wined3d device, hr %#x.\n", hr);
2834         wined3d_mutex_unlock();
2835         HeapFree(GetProcessHeap(), 0, device->handle_table.entries);
2836         return hr;
2837     }
2838
2839     if (!parameters->Windowed)
2840     {
2841         if (!focus_window) focus_window = parameters->hDeviceWindow;
2842         if (FAILED(hr = IWineD3DDevice_AcquireFocusWindow(device->WineD3DDevice, focus_window)))
2843         {
2844             ERR("Failed to acquire focus window, hr %#x.\n", hr);
2845             IWineD3DDevice_Release(device->WineD3DDevice);
2846             wined3d_mutex_unlock();
2847             HeapFree(GetProcessHeap(), 0, device->handle_table.entries);
2848             return hr;
2849         }
2850     }
2851
2852     if (flags & D3DCREATE_MULTITHREADED) IWineD3DDevice_SetMultithreaded(device->WineD3DDevice);
2853
2854     wined3d_parameters.BackBufferWidth = parameters->BackBufferWidth;
2855     wined3d_parameters.BackBufferHeight = parameters->BackBufferHeight;
2856     wined3d_parameters.BackBufferFormat = wined3dformat_from_d3dformat(parameters->BackBufferFormat);
2857     wined3d_parameters.BackBufferCount = parameters->BackBufferCount;
2858     wined3d_parameters.MultiSampleType = parameters->MultiSampleType;
2859     wined3d_parameters.MultiSampleQuality = 0; /* d3d9 only */
2860     wined3d_parameters.SwapEffect = parameters->SwapEffect;
2861     wined3d_parameters.hDeviceWindow = parameters->hDeviceWindow;
2862     wined3d_parameters.Windowed = parameters->Windowed;
2863     wined3d_parameters.EnableAutoDepthStencil = parameters->EnableAutoDepthStencil;
2864     wined3d_parameters.AutoDepthStencilFormat = wined3dformat_from_d3dformat(parameters->AutoDepthStencilFormat);
2865     wined3d_parameters.Flags = parameters->Flags;
2866     wined3d_parameters.FullScreen_RefreshRateInHz = parameters->FullScreen_RefreshRateInHz;
2867     wined3d_parameters.PresentationInterval = parameters->FullScreen_PresentationInterval;
2868     wined3d_parameters.AutoRestoreDisplayMode = TRUE;
2869
2870     hr = IWineD3DDevice_Init3D(device->WineD3DDevice, &wined3d_parameters);
2871     if (FAILED(hr))
2872     {
2873         WARN("Failed to initialize 3D, hr %#x.\n", hr);
2874         IWineD3DDevice_ReleaseFocusWindow(device->WineD3DDevice);
2875         IWineD3DDevice_Release(device->WineD3DDevice);
2876         wined3d_mutex_unlock();
2877         HeapFree(GetProcessHeap(), 0, device->handle_table.entries);
2878         return hr;
2879     }
2880
2881     hr = IWineD3DDevice_SetRenderState(device->WineD3DDevice, WINED3DRS_POINTSIZE_MIN, 0);
2882     wined3d_mutex_unlock();
2883     if (FAILED(hr))
2884     {
2885         ERR("Failed to set minimum pointsize, hr %#x.\n", hr);
2886         goto err;
2887     }
2888
2889     parameters->BackBufferWidth = wined3d_parameters.BackBufferWidth;
2890     parameters->BackBufferHeight = wined3d_parameters.BackBufferHeight;
2891     parameters->BackBufferFormat = d3dformat_from_wined3dformat(wined3d_parameters.BackBufferFormat);
2892     parameters->BackBufferCount = wined3d_parameters.BackBufferCount;
2893     parameters->MultiSampleType = wined3d_parameters.MultiSampleType;
2894     parameters->SwapEffect = wined3d_parameters.SwapEffect;
2895     parameters->hDeviceWindow = wined3d_parameters.hDeviceWindow;
2896     parameters->Windowed = wined3d_parameters.Windowed;
2897     parameters->EnableAutoDepthStencil = wined3d_parameters.EnableAutoDepthStencil;
2898     parameters->AutoDepthStencilFormat = d3dformat_from_wined3dformat(wined3d_parameters.AutoDepthStencilFormat);
2899     parameters->Flags = wined3d_parameters.Flags;
2900     parameters->FullScreen_RefreshRateInHz = wined3d_parameters.FullScreen_RefreshRateInHz;
2901     parameters->FullScreen_PresentationInterval = wined3d_parameters.PresentationInterval;
2902
2903     device->declArraySize = 16;
2904     device->decls = HeapAlloc(GetProcessHeap(), 0, device->declArraySize * sizeof(*device->decls));
2905     if (!device->decls)
2906     {
2907         ERR("Failed to allocate FVF vertex delcaration map memory.\n");
2908         hr = E_OUTOFMEMORY;
2909         goto err;
2910     }
2911
2912     return D3D_OK;
2913
2914 err:
2915     wined3d_mutex_lock();
2916     IWineD3DDevice_Uninit3D(device->WineD3DDevice, D3D8CB_DestroySwapChain);
2917     IWineD3DDevice_ReleaseFocusWindow(device->WineD3DDevice);
2918     IWineD3DDevice_Release(device->WineD3DDevice);
2919     wined3d_mutex_unlock();
2920     HeapFree(GetProcessHeap(), 0, device->handle_table.entries);
2921     return hr;
2922 }