]> git.sesse.net Git - vlc/commitdiff
macosx vout: public getter for vd should not be needed anymore
authorDavid Fuhrmann <david.fuhrmann@googlemail.com>
Sun, 6 May 2012 09:13:24 +0000 (11:13 +0200)
committerDavid Fuhrmann <david.fuhrmann@googlemail.com>
Sun, 6 May 2012 10:34:10 +0000 (12:34 +0200)
modules/gui/macosx/VideoView.m
modules/video_output/macosx.m

index ed0f0050699b91859cb5a26ab897776c6ff02dcc..3e90d3a99181a668a462d536f973d40adf8103c2 100644 (file)
@@ -60,16 +60,6 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
     return VLC_SUCCESS;
 }
 
-/*****************************************************************************
- * VLCOpenGLVideoView interface excerpt
- * full implementation in modules/video_output/macosx.m:95
- *****************************************************************************/
-@interface VLCOpenGLVideoView : NSOpenGLView
-{
-}
-- (vout_display_t *)voutDisplay;
-@end
-
 /*****************************************************************************
  * VLCVoutView implementation
  *****************************************************************************/
index 3d475eff026e3ff5df15a77747f10372ea11a649..3fc998bc945ca3ae9e144efff80dc071dedd852c 100644 (file)
@@ -99,7 +99,6 @@ vlc_module_end ()
     BOOL _hasPendingReshape;
 }
 - (void)setVoutDisplay:(vout_display_t *)vd;
-- (vout_display_t *)voutDisplay;
 - (void)setVoutFlushing:(BOOL)flushing;
 @end
 
@@ -536,11 +535,6 @@ static void OpenglSwap (vlc_gl_t *gl)
     }
 }
 
-- (vout_display_t *)voutDisplay
-{
-    return vd;
-}
-
 /**
  * Gets called when the vout will aquire the lock and flush.
  * (Non main thread).