Commit ce0e1f07 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

d3d9: Improve CheckDeviceState stub to run Firefox 4 Beta 7.

parent 696b8325
......@@ -2790,9 +2790,14 @@ static HRESULT WINAPI IDirect3DDevice9ExImpl_GetMaximumFrameLatency(IDirect3DDev
static HRESULT WINAPI IDirect3DDevice9ExImpl_CheckDeviceState(IDirect3DDevice9Ex *iface, HWND dst_window)
{
FIXME("iface %p, dst_window %p stub!\n", iface, dst_window);
static int i;
return WINED3DERR_INVALIDCALL;
TRACE("iface %p, dst_window %p stub!\n", iface, dst_window);
if (!i++)
FIXME("iface %p, dst_window %p stub!\n", iface, dst_window);
return WINED3D_OK;
}
static HRESULT WINAPI IDirect3DDevice9ExImpl_CreateRenderTargetEx(IDirect3DDevice9Ex *iface,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment