summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-04-09 14:38:43 +0200
committerwm4 <wm4@nowhere>2015-04-09 14:38:43 +0200
commit11556e05305c3d4e46e27c1d4a4521e334844755 (patch)
treec3df9e39e00a5c23085facf8c3db0aa0bbda5888
parentdb7d56b19f24d2e1bc7fe989aae78b0d5ee828a3 (diff)
downloadmpv-11556e05305c3d4e46e27c1d4a4521e334844755.tar.bz2
mpv-11556e05305c3d4e46e27c1d4a4521e334844755.tar.xz
vo_opengl: log used GLXFBConfig
Now don't ask me why the GLXFBConfig type is a pointer, but stores an integer ID.
-rw-r--r--video/out/gl_x11.c1
1 files changed, 1 insertions, 0 deletions
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);