Module: wine Branch: master Commit: 52d28655216e4a14c982eed8c20f10d8259574cc URL: http://source.winehq.org/git/wine.git/?a=commit;h=52d28655216e4a14c982eed8c2...
Author: Stefan Dösinger stefan@codeweavers.com Date: Sun Aug 30 17:09:11 2009 +0200
wined3d: Remove redundant TRACEs.
These made sense before we had the quirk table. Nowadys the quirk table contains quirk description strings that print out whether or not any apple specific quirks are applied. The traces in match_apple just spam the log because this code is run multiple times for many quirks.
---
dlls/wined3d/directx.c | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/dlls/wined3d/directx.c b/dlls/wined3d/directx.c index b971855..ea9431e 100644 --- a/dlls/wined3d/directx.c +++ b/dlls/wined3d/directx.c @@ -519,14 +519,10 @@ static BOOL match_apple(const struct wined3d_gl_info *gl_info, const char *gl_re && gl_info->supported[APPLE_FLUSH_RENDER] && gl_info->supported[APPLE_YCBCR_422]) { - TRACE_(d3d_caps)("GL_APPLE_fence, GL_APPLE_client_storage, GL_APPLE_flush_render and GL_ycbcr_422 are supported.\n"); - TRACE_(d3d_caps)("Activating MacOS fixups.\n"); return TRUE; } else { - TRACE_(d3d_caps)("Apple extensions are not supported.\n"); - TRACE_(d3d_caps)("Not activating MacOS fixups.\n"); return FALSE; } }