RustAudio/vst-rs

I'm looking for a GUI sample for macos

YuMuuu opened this issue · 2 comments

/// - On Mac OS X (64 bit), it should be interpreted as a `NSView*`

I understand that there are editor implementations supported on Windows and Mac OS.

I found example for windows.
https://qiita.com/hatoo@github/items/01d7b5266d4e8787785a

But could not found example for macos.

And I still don't understand how to use NSView.
e.g. winit don't supported setting children NSView.

please add /example example of gui for window and macos ;_;

Hi @YuMuuu !

One of the goals for vst-rs is to be as platform-independent as possible; as of right now, there aren't any GUI solutions that offer a full enough functionality on all three platforms (Windows, Mac OS, and Linux/X11), so we're opting to wait until that happens to give an example of how to use it.

If you're interested, a few of us on the Discord are semi-actively working on getting something working for GUIs. One of the most promising approaches right now seems to be creating our own windowing crate [1], [2], and using Iced for graphics [3], [4].

A particularly impressive and recent example is Antonok's ampli-Fe, built with his vst_window and using wgpu for graphics.

I join discode serve. Thank you for inviting me.
I reading now that you teach me sample!!