From 34a0f96ecb50483f9aeef45c3afbf6c9d36779e8 Mon Sep 17 00:00:00 2001 From: Louis Lenders Date: Sun, 8 Nov 2009 14:45:57 +0100 Subject: d3d9: quiet a few noisy fixme's --- dlls/d3d9/d3d9_main.c | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/dlls/d3d9/d3d9_main.c b/dlls/d3d9/d3d9_main.c index e8b4a97..c405a57 100644 --- a/dlls/d3d9/d3d9_main.c +++ b/dlls/d3d9/d3d9_main.c @@ -78,7 +78,9 @@ HRESULT WINAPI DECLSPEC_HOTPATCH Direct3DCreate9Ex(UINT SDKVersion, IDirect3D9Ex */ void* WINAPI Direct3DShaderValidatorCreate9(void) { - FIXME("stub\n"); + static int once; + + if (!once++) FIXME("stub\n"); return NULL; } @@ -99,7 +101,7 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv) * D3DPERF_BeginEvent (D3D9.@) */ int WINAPI D3DPERF_BeginEvent(D3DCOLOR color, LPCWSTR name) { - FIXME("(color %#x, name %s) : stub\n", color, debugstr_w(name)); + TRACE("(color %#x, name %s) : stub\n", color, debugstr_w(name)); return D3DPERF_event_level++; } @@ -108,7 +110,7 @@ int WINAPI D3DPERF_BeginEvent(D3DCOLOR color, LPCWSTR name) { * D3DPERF_EndEvent (D3D9.@) */ int WINAPI D3DPERF_EndEvent(void) { - FIXME("(void) : stub\n"); + TRACE("(void) : stub\n"); return --D3DPERF_event_level; } -- 1.6.3.3