Commit af5da01c authored by Pierre d'Herbemont's avatar Pierre d'Herbemont Committed by Derk-Jan Hartman

macosx: Don't abort() if the screen isn't GL accelerated now that quartzgl is gone.

(cherry picked from commit fa69eae4)
parent ebfad4b9
...@@ -104,8 +104,7 @@ int OpenVideoGL ( vlc_object_t * p_this ) ...@@ -104,8 +104,7 @@ int OpenVideoGL ( vlc_object_t * p_this )
if( !CGDisplayUsesOpenGLAcceleration( kCGDirectMainDisplay ) ) if( !CGDisplayUsesOpenGLAcceleration( kCGDirectMainDisplay ) )
{ {
msg_Warn( p_vout, "no OpenGL hardware acceleration found. " msg_Warn( p_vout, "no OpenGL hardware acceleration found. "
"Video display will be slow" ); "Video display might be slow" );
return( 1 );
} }
msg_Dbg( p_vout, "display is Quartz Extreme accelerated" ); msg_Dbg( p_vout, "display is Quartz Extreme accelerated" );
......
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