diff options
author | David Robillard <d@drobilla.net> | 2007-10-11 02:31:34 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-10-11 02:31:34 +0000 |
commit | 8defdcb32f4421c9d124767d1c677c05791ead55 (patch) | |
tree | d323293739b2c0ec78f0cf776265d882941c2e52 /src/libs/engine/NodeFactory.cpp | |
parent | c7f3a28390e651e03a68b664086351788a6a2d73 (diff) | |
download | ingen-8defdcb32f4421c9d124767d1c677c05791ead55.tar.gz ingen-8defdcb32f4421c9d124767d1c677c05791ead55.tar.bz2 ingen-8defdcb32f4421c9d124767d1c677c05791ead55.zip |
Fix Gtk rendering corruption problems when running monolithic (internal engine).
Reduce Gtk main loop overhead when running monolithic.
Fix crash on importing certain Om patches.
git-svn-id: http://svn.drobilla.net/lad/ingen@870 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/NodeFactory.cpp')
-rw-r--r-- | src/libs/engine/NodeFactory.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/libs/engine/NodeFactory.cpp b/src/libs/engine/NodeFactory.cpp index b2714e23..c2b9536a 100644 --- a/src/libs/engine/NodeFactory.cpp +++ b/src/libs/engine/NodeFactory.cpp @@ -336,7 +336,11 @@ NodeFactory::load_lv2_plugin(const string& plug_uri, if (plugin) { n = new LV2Node(plugin, node_name, polyphonic, parent, srate, buffer_size); - bool success = ((LV2Node*)n)->instantiate(); + + Glib::Mutex::Lock lock(_world->rdf_world->mutex()); + + const bool success = ((LV2Node*)n)->instantiate(); + if (!success) { delete n; n = NULL; |