2 * IDirect3D8 implementation
4 * Copyright 2002-2004 Jason Edmeades
5 * Copyright 2003-2004 Raphael Junqueira
6 * Copyright 2004 Christian Costa
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
31 #include "wine/debug.h"
32 #include "wine/unicode.h"
34 #include "d3d8_private.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(d3d8
);
38 static inline struct d3d8
*impl_from_IDirect3D8(IDirect3D8
*iface
)
40 return CONTAINING_RECORD(iface
, struct d3d8
, IDirect3D8_iface
);
43 static HRESULT WINAPI
d3d8_QueryInterface(IDirect3D8
*iface
, REFIID riid
, void **out
)
45 TRACE("iface %p, riid %s, out %p.\n", iface
, debugstr_guid(riid
), out
);
47 if (IsEqualGUID(riid
, &IID_IDirect3D8
)
48 || IsEqualGUID(riid
, &IID_IUnknown
))
50 IDirect3D8_AddRef(iface
);
55 WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid
));
61 static ULONG WINAPI
d3d8_AddRef(IDirect3D8
*iface
)
63 struct d3d8
*d3d8
= impl_from_IDirect3D8(iface
);
64 ULONG refcount
= InterlockedIncrement(&d3d8
->refcount
);
66 TRACE("%p increasing refcount to %u.\n", iface
, refcount
);
71 static ULONG WINAPI
d3d8_Release(IDirect3D8
*iface
)
73 struct d3d8
*d3d8
= impl_from_IDirect3D8(iface
);
74 ULONG refcount
= InterlockedDecrement(&d3d8
->refcount
);
76 TRACE("%p decreasing refcount to %u.\n", iface
, refcount
);
81 wined3d_decref(d3d8
->wined3d
);
82 wined3d_mutex_unlock();
84 HeapFree(GetProcessHeap(), 0, d3d8
);
90 static HRESULT WINAPI
d3d8_RegisterSoftwareDevice(IDirect3D8
*iface
, void *init_function
)
92 struct d3d8
*d3d8
= impl_from_IDirect3D8(iface
);
95 TRACE("iface %p, init_function %p.\n", iface
, init_function
);
98 hr
= wined3d_register_software_device(d3d8
->wined3d
, init_function
);
99 wined3d_mutex_unlock();
104 static UINT WINAPI
d3d8_GetAdapterCount(IDirect3D8
*iface
)
106 struct d3d8
*d3d8
= impl_from_IDirect3D8(iface
);
109 TRACE("iface %p.\n", iface
);
111 wined3d_mutex_lock();
112 hr
= wined3d_get_adapter_count(d3d8
->wined3d
);
113 wined3d_mutex_unlock();
118 static HRESULT WINAPI
d3d8_GetAdapterIdentifier(IDirect3D8
*iface
, UINT adapter
,
119 DWORD flags
, D3DADAPTER_IDENTIFIER8
*identifier
)
121 struct d3d8
*d3d8
= impl_from_IDirect3D8(iface
);
122 struct wined3d_adapter_identifier adapter_id
;
125 TRACE("iface %p, adapter %u, flags %#x, identifier %p.\n",
126 iface
, adapter
, flags
, identifier
);
128 adapter_id
.driver
= identifier
->Driver
;
129 adapter_id
.driver_size
= sizeof(identifier
->Driver
);
130 adapter_id
.description
= identifier
->Description
;
131 adapter_id
.description_size
= sizeof(identifier
->Description
);
132 adapter_id
.device_name
= NULL
; /* d3d9 only */
133 adapter_id
.device_name_size
= 0; /* d3d9 only */
135 wined3d_mutex_lock();
136 hr
= wined3d_get_adapter_identifier(d3d8
->wined3d
, adapter
, flags
, &adapter_id
);
137 wined3d_mutex_unlock();
139 identifier
->DriverVersion
= adapter_id
.driver_version
;
140 identifier
->VendorId
= adapter_id
.vendor_id
;
141 identifier
->DeviceId
= adapter_id
.device_id
;
142 identifier
->SubSysId
= adapter_id
.subsystem_id
;
143 identifier
->Revision
= adapter_id
.revision
;
144 memcpy(&identifier
->DeviceIdentifier
, &adapter_id
.device_identifier
, sizeof(identifier
->DeviceIdentifier
));
145 identifier
->WHQLLevel
= adapter_id
.whql_level
;
150 static UINT WINAPI
d3d8_GetAdapterModeCount(IDirect3D8
*iface
, UINT adapter
)
152 struct d3d8
*d3d8
= impl_from_IDirect3D8(iface
);
155 TRACE("iface %p, adapter %u.\n", iface
, adapter
);
157 wined3d_mutex_lock();
158 hr
= wined3d_get_adapter_mode_count(d3d8
->wined3d
, adapter
,
159 WINED3DFMT_UNKNOWN
, WINED3D_SCANLINE_ORDERING_UNKNOWN
);
160 wined3d_mutex_unlock();
165 static HRESULT WINAPI
d3d8_EnumAdapterModes(IDirect3D8
*iface
, UINT adapter
, UINT mode_idx
, D3DDISPLAYMODE
*mode
)
167 struct d3d8
*d3d8
= impl_from_IDirect3D8(iface
);
168 struct wined3d_display_mode wined3d_mode
;
171 TRACE("iface %p, adapter %u, mode_idx %u, mode %p.\n",
172 iface
, adapter
, mode_idx
, mode
);
174 wined3d_mutex_lock();
175 hr
= wined3d_enum_adapter_modes(d3d8
->wined3d
, adapter
, WINED3DFMT_UNKNOWN
,
176 WINED3D_SCANLINE_ORDERING_UNKNOWN
, mode_idx
, &wined3d_mode
);
177 wined3d_mutex_unlock();
181 mode
->Width
= wined3d_mode
.width
;
182 mode
->Height
= wined3d_mode
.height
;
183 mode
->RefreshRate
= wined3d_mode
.refresh_rate
;
184 mode
->Format
= d3dformat_from_wined3dformat(wined3d_mode
.format_id
);
190 static HRESULT WINAPI
d3d8_GetAdapterDisplayMode(IDirect3D8
*iface
, UINT adapter
, D3DDISPLAYMODE
*mode
)
192 struct d3d8
*d3d8
= impl_from_IDirect3D8(iface
);
193 struct wined3d_display_mode wined3d_mode
;
196 TRACE("iface %p, adapter %u, mode %p.\n",
197 iface
, adapter
, mode
);
199 wined3d_mutex_lock();
200 hr
= wined3d_get_adapter_display_mode(d3d8
->wined3d
, adapter
, &wined3d_mode
, NULL
);
201 wined3d_mutex_unlock();
205 mode
->Width
= wined3d_mode
.width
;
206 mode
->Height
= wined3d_mode
.height
;
207 mode
->RefreshRate
= wined3d_mode
.refresh_rate
;
208 mode
->Format
= d3dformat_from_wined3dformat(wined3d_mode
.format_id
);
214 static HRESULT WINAPI
d3d8_CheckDeviceType(IDirect3D8
*iface
, UINT adapter
, D3DDEVTYPE device_type
,
215 D3DFORMAT display_format
, D3DFORMAT backbuffer_format
, BOOL windowed
)
217 struct d3d8
*d3d8
= impl_from_IDirect3D8(iface
);
220 TRACE("iface %p, adapter %u, device_type %#x, display_format %#x, backbuffer_format %#x, windowed %#x.\n",
221 iface
, adapter
, device_type
, display_format
, backbuffer_format
, windowed
);
223 if (!windowed
&& display_format
!= D3DFMT_X8R8G8B8
&& display_format
!= D3DFMT_R5G6B5
)
224 return WINED3DERR_NOTAVAILABLE
;
226 wined3d_mutex_lock();
227 hr
= wined3d_check_device_type(d3d8
->wined3d
, adapter
, device_type
, wined3dformat_from_d3dformat(display_format
),
228 wined3dformat_from_d3dformat(backbuffer_format
), windowed
);
229 wined3d_mutex_unlock();
234 static HRESULT WINAPI
d3d8_CheckDeviceFormat(IDirect3D8
*iface
, UINT adapter
, D3DDEVTYPE device_type
,
235 D3DFORMAT adapter_format
, DWORD usage
, D3DRESOURCETYPE resource_type
, D3DFORMAT format
)
237 struct d3d8
*d3d8
= impl_from_IDirect3D8(iface
);
238 enum wined3d_resource_type wined3d_rtype
;
241 TRACE("iface %p, adapter %u, device_type %#x, adapter_format %#x, usage %#x, resource_type %#x, format %#x.\n",
242 iface
, adapter
, device_type
, adapter_format
, usage
, resource_type
, format
);
244 usage
= usage
& (WINED3DUSAGE_MASK
| WINED3DUSAGE_QUERY_MASK
);
245 switch (resource_type
)
247 case D3DRTYPE_CUBETEXTURE
:
248 usage
|= WINED3DUSAGE_LEGACY_CUBEMAP
;
249 case D3DRTYPE_TEXTURE
:
250 usage
|= WINED3DUSAGE_TEXTURE
;
251 case D3DRTYPE_SURFACE
:
252 wined3d_rtype
= WINED3D_RTYPE_TEXTURE_2D
;
255 case D3DRTYPE_VOLUMETEXTURE
:
256 case D3DRTYPE_VOLUME
:
257 usage
|= WINED3DUSAGE_TEXTURE
;
258 wined3d_rtype
= WINED3D_RTYPE_TEXTURE_3D
;
261 case D3DRTYPE_VERTEXBUFFER
:
262 case D3DRTYPE_INDEXBUFFER
:
263 wined3d_rtype
= WINED3D_RTYPE_BUFFER
;
267 FIXME("Unhandled resource type %#x.\n", resource_type
);
268 return WINED3DERR_INVALIDCALL
;
271 wined3d_mutex_lock();
272 hr
= wined3d_check_device_format(d3d8
->wined3d
, adapter
, device_type
, wined3dformat_from_d3dformat(adapter_format
),
273 usage
, wined3d_rtype
, wined3dformat_from_d3dformat(format
));
274 wined3d_mutex_unlock();
279 static HRESULT WINAPI
d3d8_CheckDeviceMultiSampleType(IDirect3D8
*iface
, UINT adapter
, D3DDEVTYPE device_type
,
280 D3DFORMAT format
, BOOL windowed
, D3DMULTISAMPLE_TYPE multisample_type
)
282 struct d3d8
*d3d8
= impl_from_IDirect3D8(iface
);
285 TRACE("iface %p, adapter %u, device_type %#x, format %#x, windowed %#x, multisample_type %#x.\n",
286 iface
, adapter
, device_type
, format
, windowed
, multisample_type
);
288 if (multisample_type
> D3DMULTISAMPLE_16_SAMPLES
)
289 return D3DERR_INVALIDCALL
;
291 wined3d_mutex_lock();
292 hr
= wined3d_check_device_multisample_type(d3d8
->wined3d
, adapter
, device_type
,
293 wined3dformat_from_d3dformat(format
), windowed
,
294 (enum wined3d_multisample_type
)multisample_type
, NULL
);
295 wined3d_mutex_unlock();
300 static HRESULT WINAPI
d3d8_CheckDepthStencilMatch(IDirect3D8
*iface
, UINT adapter
, D3DDEVTYPE device_type
,
301 D3DFORMAT adapter_format
, D3DFORMAT rt_format
, D3DFORMAT ds_format
)
303 struct d3d8
*d3d8
= impl_from_IDirect3D8(iface
);
306 TRACE("iface %p, adapter %u, device_type %#x, adapter_format %#x, rt_format %#x, ds_format %#x.\n",
307 iface
, adapter
, device_type
, adapter_format
, rt_format
, ds_format
);
309 wined3d_mutex_lock();
310 hr
= wined3d_check_depth_stencil_match(d3d8
->wined3d
, adapter
, device_type
,
311 wined3dformat_from_d3dformat(adapter_format
), wined3dformat_from_d3dformat(rt_format
),
312 wined3dformat_from_d3dformat(ds_format
));
313 wined3d_mutex_unlock();
318 void fixup_caps(WINED3DCAPS
*caps
)
320 /* D3D8 doesn't support SM 2.0 or higher, so clamp to 1.x */
321 if (caps
->PixelShaderVersion
)
322 caps
->PixelShaderVersion
= D3DPS_VERSION(1,4);
324 caps
->PixelShaderVersion
= D3DPS_VERSION(0,0);
325 if (caps
->VertexShaderVersion
)
326 caps
->VertexShaderVersion
= D3DVS_VERSION(1,1);
328 caps
->VertexShaderVersion
= D3DVS_VERSION(0,0);
329 caps
->MaxVertexShaderConst
= min(D3D8_MAX_VERTEX_SHADER_CONSTANTF
, caps
->MaxVertexShaderConst
);
331 caps
->StencilCaps
&= ~WINED3DSTENCILCAPS_TWOSIDED
;
334 static HRESULT WINAPI
d3d8_GetDeviceCaps(IDirect3D8
*iface
, UINT adapter
, D3DDEVTYPE device_type
, D3DCAPS8
*caps
)
336 struct d3d8
*d3d8
= impl_from_IDirect3D8(iface
);
337 WINED3DCAPS
*wined3d_caps
;
340 TRACE("iface %p, adapter %u, device_type %#x, caps %p.\n", iface
, adapter
, device_type
, caps
);
343 return D3DERR_INVALIDCALL
;
345 if (!(wined3d_caps
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*wined3d_caps
))))
346 return D3DERR_INVALIDCALL
;
348 wined3d_mutex_lock();
349 hr
= wined3d_get_device_caps(d3d8
->wined3d
, adapter
, device_type
, wined3d_caps
);
350 wined3d_mutex_unlock();
352 fixup_caps(wined3d_caps
);
353 WINECAPSTOD3D8CAPS(caps
, wined3d_caps
)
354 HeapFree(GetProcessHeap(), 0, wined3d_caps
);
359 static HMONITOR WINAPI
d3d8_GetAdapterMonitor(IDirect3D8
*iface
, UINT adapter
)
361 struct d3d8
*d3d8
= impl_from_IDirect3D8(iface
);
362 struct wined3d_output_desc desc
;
365 TRACE("iface %p, adapter %u.\n", iface
, adapter
);
367 wined3d_mutex_lock();
368 hr
= wined3d_get_output_desc(d3d8
->wined3d
, adapter
, &desc
);
369 wined3d_mutex_unlock();
373 WARN("Failed to get output desc, hr %#x.\n", hr
);
380 static HRESULT WINAPI
d3d8_CreateDevice(IDirect3D8
*iface
, UINT adapter
,
381 D3DDEVTYPE device_type
, HWND focus_window
, DWORD flags
, D3DPRESENT_PARAMETERS
*parameters
,
382 IDirect3DDevice8
**device
)
384 struct d3d8
*d3d8
= impl_from_IDirect3D8(iface
);
385 struct d3d8_device
*object
;
388 TRACE("iface %p, adapter %u, device_type %#x, focus_window %p, flags %#x, parameters %p, device %p.\n",
389 iface
, adapter
, device_type
, focus_window
, flags
, parameters
, device
);
391 object
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*object
));
393 return E_OUTOFMEMORY
;
395 hr
= device_init(object
, d3d8
, d3d8
->wined3d
, adapter
, device_type
, focus_window
, flags
, parameters
);
398 WARN("Failed to initialize device, hr %#x.\n", hr
);
399 HeapFree(GetProcessHeap(), 0, object
);
403 TRACE("Created device %p.\n", object
);
404 *device
= &object
->IDirect3DDevice8_iface
;
409 static const struct IDirect3D8Vtbl d3d8_vtbl
=
416 d3d8_RegisterSoftwareDevice
,
417 d3d8_GetAdapterCount
,
418 d3d8_GetAdapterIdentifier
,
419 d3d8_GetAdapterModeCount
,
420 d3d8_EnumAdapterModes
,
421 d3d8_GetAdapterDisplayMode
,
422 d3d8_CheckDeviceType
,
423 d3d8_CheckDeviceFormat
,
424 d3d8_CheckDeviceMultiSampleType
,
425 d3d8_CheckDepthStencilMatch
,
427 d3d8_GetAdapterMonitor
,
431 BOOL
d3d8_init(struct d3d8
*d3d8
)
433 DWORD flags
= WINED3D_LEGACY_DEPTH_BIAS
| WINED3D_VIDMEM_ACCOUNTING
434 | WINED3D_HANDLE_RESTORE
| WINED3D_PIXEL_CENTER_INTEGER
435 | WINED3D_LEGACY_UNBOUND_RESOURCE_COLOR
;
437 d3d8
->IDirect3D8_iface
.lpVtbl
= &d3d8_vtbl
;
440 wined3d_mutex_lock();
441 d3d8
->wined3d
= wined3d_create(flags
);
442 wined3d_mutex_unlock();