[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 01:52:33 CEST 2008
vlc | branch: 0.9-bugfix | Pierre d'Herbemont <pdherbemont at videolan.org> | Sun Sep 21 00:03:56 2008 +0200| [af5da01c7fcbd2db8fc89a86ab2f082c8fab384c] | committer: Derk-Jan Hartman
macosx: Don't abort() if the screen isn't GL accelerated now that quartzgl is gone.
(cherry picked from commit fa69eae4dfc7d69943820211983500d3595f7f11)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=af5da01c7fcbd2db8fc89a86ab2f082c8fab384c
---
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