wined3d: Create stub for D3DPERF_SetOptions function.

This commit is contained in:
Phil Costin 2006-05-25 22:49:02 +01:00 committed by Alexandre Julliard
parent 6997ce7c9d
commit 46047402a3
2 changed files with 10 additions and 0 deletions

View File

@ -3,3 +3,4 @@
@ stdcall Direct3DCreate9(long)
@ stdcall ValidatePixelShader(ptr long long ptr)
@ stdcall ValidateVertexShader(ptr long long ptr)
@ stdcall D3DPERF_SetOptions(long)

View File

@ -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);
}