[MPlayer-cvslog] r36313 - trunk/libvo/vo_gl.c

reimar subversion at mplayerhq.hu
Sun Jun 9 16:15:09 CEST 2013


Author: reimar
Date: Sun Jun  9 16:15:09 2013
New Revision: 36313

Log:
Detect one more case of software OpenGL implementation.

Modified:
   trunk/libvo/vo_gl.c

Modified: trunk/libvo/vo_gl.c
==============================================================================
--- trunk/libvo/vo_gl.c	Sun Jun  9 16:12:54 2013	(r36312)
+++ trunk/libvo/vo_gl.c	Sun Jun  9 16:15:09 2013	(r36313)
@@ -514,6 +514,7 @@ static int isSoftwareGl(void)
 {
   const char *renderer = mpglGetString(GL_RENDERER);
   return !renderer || strcmp(renderer, "Software Rasterizer") == 0 ||
+         strstr(renderer, "Software Renderer") == 0 ||
          strstr(renderer, "llvmpipe");
 }
 


More information about the MPlayer-cvslog mailing list