Commit 3b3a8924 authored by David Fuhrmann's avatar David Fuhrmann

macosx vout: public getter for vd should not be needed anymore

parent 3d649ef6
......@@ -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
*****************************************************************************/
......
......@@ -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).
......
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