hw/xwin: Don't log all fbConfigs and GL/WGL extensions

Don't log all fbConfigs and GL/WGL extensions, unless verbose logging
is requested
Log the number of pixelFormats which gave rise to the fbConfigs

Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Reviewed-by: Colin Harrison <colin.harrison@virgin.net>
This commit is contained in:
Jon TURNEY 2012-06-25 15:58:21 +01:00
parent 9b10f20f47
commit 886f4c3892

View File

@ -86,6 +86,7 @@
#include <winpriv.h>
#include <wgl_ext_api.h>
#include <winglobals.h>
#define NUM_ELEMENTS(x) (sizeof(x)/ sizeof(x[1]))
@ -341,6 +342,10 @@ swap_method_name(int mthd)
static void
fbConfigsDump(unsigned int n, __GLXconfig * c)
{
LogMessage(X_INFO, "%d fbConfigs\n", n);
if (g_iLogVerbose < 3)
return;
ErrorF("%d fbConfigs\n", n);
ErrorF
("pxf vis fb render Ste aux accum MS drawable Group/\n");
@ -595,11 +600,14 @@ glxWinScreenProbe(ScreenPtr pScreen)
gl_renderer = (const char *) glGetStringWrapperNonstatic(GL_RENDERER);
ErrorF("GL_RENDERER: %s\n", gl_renderer);
gl_extensions = (const char *) glGetStringWrapperNonstatic(GL_EXTENSIONS);
glxLogExtensions("GL_EXTENSIONS: ", gl_extensions);
wgl_extensions = wglGetExtensionsStringARBWrapper(hdc);
if (!wgl_extensions)
wgl_extensions = "";
glxLogExtensions("WGL_EXTENSIONS: ", wgl_extensions);
if (g_iLogVerbose >= 3) {
glxLogExtensions("GL_EXTENSIONS: ", gl_extensions);
glxLogExtensions("WGL_EXTENSIONS: ", wgl_extensions);
}
if (strcasecmp(gl_renderer, "GDI Generic") == 0) {
free(screen);
@ -1835,8 +1843,8 @@ glxWinCreateConfigs(HDC hdc, glxWinScreen * screen)
// get the number of pixelformats
numConfigs =
DescribePixelFormat(hdc, 1, sizeof(PIXELFORMATDESCRIPTOR), NULL);
GLWIN_DEBUG_MSG("DescribePixelFormat says %d possible pixel formats",
numConfigs);
LogMessage(X_INFO, "%d pixel formats reported by DescribePixelFormat\n",
numConfigs);
/* alloc */
result = malloc(sizeof(GLXWinConfig) * numConfigs);
@ -2083,9 +2091,9 @@ glxWinCreateConfigsExt(HDC hdc, glxWinScreen * screen)
return;
}
GLWIN_DEBUG_MSG
("wglGetPixelFormatAttribivARB says %d possible pixel formats",
numConfigs);
LogMessage(X_INFO,
"%d pixel formats reported by wglGetPixelFormatAttribivARB\n",
numConfigs);
/* alloc */
result = malloc(sizeof(GLXWinConfig) * numConfigs);