mirror of
https://github.com/reactos/wine.git
synced 2025-02-22 22:01:51 +00:00
wined3d: Create stub for D3DPERF_SetOptions function.
This commit is contained in:
parent
6997ce7c9d
commit
46047402a3
@ -3,3 +3,4 @@
|
|||||||
@ stdcall Direct3DCreate9(long)
|
@ stdcall Direct3DCreate9(long)
|
||||||
@ stdcall ValidatePixelShader(ptr long long ptr)
|
@ stdcall ValidatePixelShader(ptr long long ptr)
|
||||||
@ stdcall ValidateVertexShader(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);
|
FIXME("(%p %d %d %p): stub\n", pFunction, param1, param2, toto);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* D3DPERF_SetOptions (D3D9.@)
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
void WINAPI D3DPERF_SetOptions(DWORD options)
|
||||||
|
{
|
||||||
|
FIXME("(%#lx) : stub\n", options);
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user