Commit 46047402 authored by Phil Costin's avatar Phil Costin Committed by Alexandre Julliard

wined3d: Create stub for D3DPERF_SetOptions function.

parent 6997ce7c
......@@ -3,3 +3,4 @@
@ stdcall Direct3DCreate9(long)
@ stdcall ValidatePixelShader(ptr long long ptr)
@ stdcall ValidateVertexShader(ptr long long ptr)
@ stdcall D3DPERF_SetOptions(long)
......@@ -93,3 +93,12 @@ BOOL WINAPI ValidatePixelShader(LPVOID pFunction, int param1, int param2, LPVOID
FIXME("(%p %d %d %p): stub\n", pFunction, param1, param2, toto);
return TRUE;
}
/***********************************************************************
* D3DPERF_SetOptions (D3D9.@)
*
*/
void WINAPI D3DPERF_SetOptions(DWORD options)
{
FIXME("(%#lx) : stub\n", options);
}
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