diff options
author | wm4 <wm4@nowhere> | 2015-04-09 14:38:43 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-04-09 14:38:43 +0200 |
commit | 11556e05305c3d4e46e27c1d4a4521e334844755 (patch) | |
tree | c3df9e39e00a5c23085facf8c3db0aa0bbda5888 /video/out | |
parent | db7d56b19f24d2e1bc7fe989aae78b0d5ee828a3 (diff) |
vo_opengl: log used GLXFBConfig
Now don't ask me why the GLXFBConfig type is a pointer, but stores an
integer ID.
Diffstat (limited to 'video/out')
-rw-r--r-- | video/out/gl_x11.c | 1 |
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); |