VST3: move runloop into backend (3/3) - old remove API
This commit is contained in:
parent
01a0c2d111
commit
1e491591c3
@ -100,9 +100,6 @@ public:
|
||||
IPlugView* view ();
|
||||
void close_view ();
|
||||
void update_contoller_param ();
|
||||
#if SMTG_OS_LINUX
|
||||
void set_runloop (Linux::IRunLoop*);
|
||||
#endif
|
||||
PBD::Signal2<void, int, int> OnResizeView;
|
||||
|
||||
tresult PLUGIN_API queryInterface (const TUID _iid, void** obj) SMTG_OVERRIDE;
|
||||
@ -279,10 +276,6 @@ private:
|
||||
Vst::IEditController* _controller;
|
||||
IPlugView* _view;
|
||||
|
||||
#if SMTG_OS_LINUX
|
||||
Linux::IRunLoop* _run_loop;
|
||||
#endif
|
||||
|
||||
IPtr<Vst::IAudioProcessor> _processor;
|
||||
Vst::ProcessContext _context;
|
||||
Glib::Threads::Mutex _process_lock;
|
||||
@ -442,9 +435,6 @@ public:
|
||||
Steinberg::IPlugView* view ();
|
||||
void close_view ();
|
||||
void update_contoller_param ();
|
||||
#if SMTG_OS_LINUX
|
||||
void set_runloop (Steinberg::Linux::IRunLoop*);
|
||||
#endif
|
||||
|
||||
PBD::Signal2<void, int, int> OnResizeView;
|
||||
|
||||
|
@ -507,14 +507,6 @@ VST3Plugin::close_view ()
|
||||
_plug->close_view ();
|
||||
}
|
||||
|
||||
#if SMTG_OS_LINUX
|
||||
void
|
||||
VST3Plugin::set_runloop (Steinberg::Linux::IRunLoop* run_loop)
|
||||
{
|
||||
return _plug->set_runloop (run_loop);
|
||||
}
|
||||
#endif
|
||||
|
||||
void
|
||||
VST3Plugin::update_contoller_param ()
|
||||
{
|
||||
@ -1308,9 +1300,6 @@ VST3PI::VST3PI (std::shared_ptr<ARDOUR::VST3PluginModule> m, std::string unique_
|
||||
, _component (0)
|
||||
, _controller (0)
|
||||
, _view (0)
|
||||
#if SMTG_OS_LINUX
|
||||
, _run_loop (0)
|
||||
#endif
|
||||
, _is_loading_state (false)
|
||||
, _is_processing (false)
|
||||
, _block_size (0)
|
||||
@ -3390,14 +3379,6 @@ VST3PI::has_editor () const
|
||||
return rv;
|
||||
}
|
||||
|
||||
#if SMTG_OS_LINUX
|
||||
void
|
||||
VST3PI::set_runloop (Linux::IRunLoop* run_loop)
|
||||
{
|
||||
_run_loop = run_loop;
|
||||
}
|
||||
#endif
|
||||
|
||||
tresult
|
||||
VST3PI::resizeView (IPlugView* view, ViewRect* new_size)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user