# HG changeset patch # User reimar # Date 1262544296 0 # Node ID 631442f20e95ef179e22a85791bd3f1a62375e1e # Parent 16c71b965952490e43a1d0756192ab55891f8ec4 Make vo gl print the OpenGL vendor and version strings. diff -r 16c71b965952 -r 631442f20e95 libvo/vo_gl.c --- a/libvo/vo_gl.c Sun Jan 03 17:12:12 2010 +0000 +++ b/libvo/vo_gl.c Sun Jan 03 18:44:56 2010 +0000 @@ -449,6 +449,7 @@ const char *version = GetString(GL_VERSION); int is_ati = strstr(vendor, "ATI") != NULL; int ati_broken_pbo = 0; + mp_msg(MSGT_VO, MSGL_V, "[gl] Running on OpenGL by '%s', versions '%s'\n", vendor, version); if (is_ati && strncmp(version, "2.1.", 4) == 0) { int ver = atoi(version + 4); mp_msg(MSGT_VO, MSGL_V, "[gl] Detected ATI driver version: %i\n", ver);