From 11556e05305c3d4e46e27c1d4a4521e334844755 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 9 Apr 2015 14:38:43 +0200 Subject: vo_opengl: log used GLXFBConfig Now don't ask me why the GLXFBConfig type is a pointer, but stores an integer ID. --- video/out/gl_x11.c | 1 + 1 file changed, 1 insertion(+) diff --git a/video/out/gl_x11.c b/video/out/gl_x11.c index 8a67e0e13f..9d3d06711c 100644 --- a/video/out/gl_x11.c +++ b/video/out/gl_x11.c @@ -231,6 +231,7 @@ static bool config_window_x11(struct MPGLContext *ctx, int flags) MP_ERR(vo, "no GLX support present\n"); return false; } + MP_VERBOSE(vo, "GLX chose FB config with ID 0x%x\n", (int)(intptr_t)fbc); glx_ctx->fbc = fbc; glx_ctx->vinfo = glXGetVisualFromFBConfig(vo->x11->display, fbc); -- cgit v1.2.3