]> git.sesse.net Git - vlc/blobdiff - modules/gui/minimal_macosx/voutgl.m
Removes trailing spaces. Removes tabs.
[vlc] / modules / gui / minimal_macosx / voutgl.m
index 67d17c9a5ebe6a0c0a0dab0880cda1fe9bc06565..4595e2385f3447bb3c716c8601e757d6da77ac77 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * voutgl.m: MacOS X OpenGL provider
  *****************************************************************************
- * Copyright (C) 2001-2004 the VideoLAN team
+ * Copyright (C) 2001-2007 the VideoLAN team
  * $Id$
  *
  * Authors: Colin Delacroix <colin@zoy.org>
@@ -40,7 +40,7 @@ int E_(OpenVideoGL)  ( vlc_object_t * p_this )
 
     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" );
         return( 1 );
     }
@@ -57,7 +57,7 @@ int E_(OpenVideoGL)  ( vlc_object_t * p_this )
     memset( p_vout->p_sys, 0, sizeof( vout_sys_t ) );
 
     var_Get( p_vout->p_libvlc, "drawable", &value_drawable );
-    
     if( 0 /* Are we in the mozilla plugin ? XXX: get that from drawable */ )
     {
         p_vout->pf_init             = aglInit;