13
0

VST3: move runloop into backend (3/3) - old remove API

This commit is contained in:
Robin Gareus 2024-06-13 21:07:11 +02:00
parent 01a0c2d111
commit 1e491591c3
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 0 additions and 29 deletions

View File

@ -100,9 +100,6 @@ public:
IPlugView* view (); IPlugView* view ();
void close_view (); void close_view ();
void update_contoller_param (); void update_contoller_param ();
#if SMTG_OS_LINUX
void set_runloop (Linux::IRunLoop*);
#endif
PBD::Signal2<void, int, int> OnResizeView; PBD::Signal2<void, int, int> OnResizeView;
tresult PLUGIN_API queryInterface (const TUID _iid, void** obj) SMTG_OVERRIDE; tresult PLUGIN_API queryInterface (const TUID _iid, void** obj) SMTG_OVERRIDE;
@ -279,10 +276,6 @@ private:
Vst::IEditController* _controller; Vst::IEditController* _controller;
IPlugView* _view; IPlugView* _view;
#if SMTG_OS_LINUX
Linux::IRunLoop* _run_loop;
#endif
IPtr<Vst::IAudioProcessor> _processor; IPtr<Vst::IAudioProcessor> _processor;
Vst::ProcessContext _context; Vst::ProcessContext _context;
Glib::Threads::Mutex _process_lock; Glib::Threads::Mutex _process_lock;
@ -442,9 +435,6 @@ public:
Steinberg::IPlugView* view (); Steinberg::IPlugView* view ();
void close_view (); void close_view ();
void update_contoller_param (); void update_contoller_param ();
#if SMTG_OS_LINUX
void set_runloop (Steinberg::Linux::IRunLoop*);
#endif
PBD::Signal2<void, int, int> OnResizeView; PBD::Signal2<void, int, int> OnResizeView;

View File

@ -507,14 +507,6 @@ VST3Plugin::close_view ()
_plug->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 void
VST3Plugin::update_contoller_param () VST3Plugin::update_contoller_param ()
{ {
@ -1308,9 +1300,6 @@ VST3PI::VST3PI (std::shared_ptr<ARDOUR::VST3PluginModule> m, std::string unique_
, _component (0) , _component (0)
, _controller (0) , _controller (0)
, _view (0) , _view (0)
#if SMTG_OS_LINUX
, _run_loop (0)
#endif
, _is_loading_state (false) , _is_loading_state (false)
, _is_processing (false) , _is_processing (false)
, _block_size (0) , _block_size (0)
@ -3390,14 +3379,6 @@ VST3PI::has_editor () const
return rv; return rv;
} }
#if SMTG_OS_LINUX
void
VST3PI::set_runloop (Linux::IRunLoop* run_loop)
{
_run_loop = run_loop;
}
#endif
tresult tresult
VST3PI::resizeView (IPlugView* view, ViewRect* new_size) VST3PI::resizeView (IPlugView* view, ViewRect* new_size)
{ {