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.
This commit is contained in:
Stefan Dösinger 2009-08-30 17:09:11 +02:00 committed by Alexandre Julliard
parent 85c5d3e28b
commit 52d2865521
1 changed files with 0 additions and 4 deletions

View File

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