Commit 3bcac4a4 authored by Felix Paul Kühne's avatar Felix Paul Kühne

vout_macosx: don't fail if quartz extreme isn't available, but show a big warning

parent fe53c6cd
...@@ -125,9 +125,8 @@ static int Open(vlc_object_t *this) ...@@ -125,9 +125,8 @@ static int Open(vlc_object_t *this)
if( !CGDisplayUsesOpenGLAcceleration( kCGDirectMainDisplay ) ) if( !CGDisplayUsesOpenGLAcceleration( kCGDirectMainDisplay ) )
{ {
msg_Err( this, "no OpenGL hardware acceleration found, video output will fail" ); msg_Err( this, "no OpenGL hardware acceleration found. this can lead to slow output and unexpected results" );
dialog_Fatal( this, _("Video output is not supported"), _("Your Mac lacks Quartz Extreme acceleration, which is required for video output.") ); 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.") );
return VLC_EGENERIC;
} }
else else
msg_Dbg( this, "Quartz Extreme acceleration is active" ); msg_Dbg( this, "Quartz Extreme acceleration is active" );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment