Search found 1 match

by rlma
Fri Aug 05, 2022 11:34 pm
Forum: Developer's Section
Topic: How do you open the plugin editor in Linux VST2 plugs?
Replies: 2
Views: 9187

Re: How do you open the plugin editor in Linux VST2 plugs?

Hi xos,
wnd was created from the VST host using:

Code: Select all

#include <X11/Xlib.h>

Window wnd = XCreateSimpleWindow(...)
// or Window wnd = XCreateWindow(...)
You can use the window to draw into, or create your own and use XReparentWindow() to fit your window into the window hierarchy.