[vlc-devel] commit: macosx: Don't abort() if the screen isn' t GL accelerated now that quartzgl is gone. (Pierre d'Herbemont )
git version control
git at videolan.org
Sun Sep 21 00:01:24 CEST 2008
vlc | branch: master | Pierre d'Herbemont <pdherbemont at videolan.org> | Sun Sep 21 00:03:56 2008 +0200| [fa69eae4dfc7d69943820211983500d3595f7f11] | committer: Pierre d'Herbemont
macosx: Don't abort() if the screen isn't GL accelerated now that quartzgl is gone.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fa69eae4dfc7d69943820211983500d3595f7f11
---
modules/gui/macosx/voutgl.m | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/modules/gui/macosx/voutgl.m b/modules/gui/macosx/voutgl.m
index 6b9ba85..fff52ee 100644
--- a/modules/gui/macosx/voutgl.m
+++ b/modules/gui/macosx/voutgl.m
@@ -104,8 +104,7 @@ int OpenVideoGL ( vlc_object_t * p_this )
if( !CGDisplayUsesOpenGLAcceleration( kCGDirectMainDisplay ) )
{
msg_Warn( p_vout, "no OpenGL hardware acceleration found. "
- "Video display will be slow" );
- return( 1 );
+ "Video display might be slow" );
}
msg_Dbg( p_vout, "display is Quartz Extreme accelerated" );
More information about the vlc-devel
mailing list