Commit 42fcc1f9 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

d3dx9_36: Move functions D3DXDebugMute, D3DXGetDriverLevel to utils.c.

parent 8ebaccdf
......@@ -53,21 +53,3 @@ BOOL WINAPI D3DXCheckVersion(UINT d3dsdkvers, UINT d3dxsdkvers)
else
return FALSE;
}
/***********************************************************************
* D3DXDebugMute
* Returns always FALSE for us.
*/
BOOL WINAPI D3DXDebugMute(BOOL mute)
{
return FALSE;
}
/***********************************************************************
* D3DXGetDriverLevel.
* Returns always 900 (DX 9) for us
*/
UINT WINAPI D3DXGetDriverLevel(struct IDirect3DDevice9 *device)
{
return 900;
}
......@@ -378,3 +378,22 @@ void set_number(void *outdata, D3DXPARAMETER_TYPE outtype, const void *indata, D
break;
}
}
/***********************************************************************
* D3DXDebugMute
* Returns always FALSE for us.
*/
BOOL WINAPI D3DXDebugMute(BOOL mute)
{
return FALSE;
}
/***********************************************************************
* D3DXGetDriverLevel.
* Returns always 900 (DX 9) for us
*/
UINT WINAPI D3DXGetDriverLevel(struct IDirect3DDevice9 *device)
{
return 900;
}
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