[MPlayer-cvslog] r35190 - trunk/libvo/gl_common.c

reimar subversion at mplayerhq.hu
Thu Sep 13 23:58:38 CEST 2012


Author: reimar
Date: Thu Sep 13 23:58:38 2012
New Revision: 35190

Log:
gl: Prefer OSX backend over SDL.

Modified:
   trunk/libvo/gl_common.c

Modified: trunk/libvo/gl_common.c
==============================================================================
--- trunk/libvo/gl_common.c	Thu Sep 13 23:52:33 2012	(r35189)
+++ trunk/libvo/gl_common.c	Thu Sep 13 23:58:38 2012	(r35190)
@@ -2297,6 +2297,8 @@ int init_mpglcontext(MPGLContext *ctx, e
   if (type == GLTYPE_AUTO) {
     int res = init_mpglcontext(ctx, GLTYPE_W32);
     if (res) return res;
+    res = init_mpglcontext(ctx, GLTYPE_OSX);
+    if (res) return res;
     res = init_mpglcontext(ctx, GLTYPE_X11);
     if (res) return res;
     res = init_mpglcontext(ctx, GLTYPE_SDL);


More information about the MPlayer-cvslog mailing list