]> git.sesse.net Git - vlc/commitdiff
vout_macosx: remove misleading user-facing error message about Quartz Extreme being...
authorFelix Paul Kühne <fkuehne@videolan.org>
Fri, 21 Feb 2014 13:28:48 +0000 (14:28 +0100)
committerFelix Paul Kühne <fkuehne@videolan.org>
Fri, 21 Feb 2014 13:29:14 +0000 (14:29 +0100)
While it is strongly desirable to be present, the API behavior or the driver quality seem to have changed on OS X 10.9, so this alert is triggered way to often while video is actually being displayed just fine.

Log message is retained for debugging purposes.

modules/video_output/macosx.m

index a14fff63aee9fbee3e78823fcbdc504f484377be..f0ca190ddb57efa4b21b52fc8bc4cb8a9bed8c79 100644 (file)
@@ -143,11 +143,8 @@ static int Open (vlc_object_t *this)
     if (!sys)
         return VLC_ENOMEM;
 
-    if (!CGDisplayUsesOpenGLAcceleration (kCGDirectMainDisplay)) {
+    if (!CGDisplayUsesOpenGLAcceleration (kCGDirectMainDisplay))
         msg_Err (this, "no OpenGL hardware acceleration found. this can lead to slow output and unexpected results");
-        dialog_Fatal (this, _("OpenGL acceleration is not supported on your Mac"), _("Your Mac lacks Quartz Extreme acceleration, which is required for video output. It will still work, but much slower and with possibly unexpected results."));
-    } else
-        msg_Dbg (this, "Quartz Extreme acceleration is active");
 
     vd->sys = sys;
     sys->pool = NULL;