changeset 35096:d1651b078aa7

gl: Prefer OSX backend over SDL.
author reimar
date Thu, 13 Sep 2012 21:58:38 +0000
parents dfa2e1b78664
children 9abac64d7a11
files libvo/gl_common.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/gl_common.c	Thu Sep 13 21:52:33 2012 +0000
+++ b/libvo/gl_common.c	Thu Sep 13 21:58:38 2012 +0000
@@ -2297,6 +2297,8 @@
   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);