diff options
author | David Robillard <d@drobilla.net> | 2007-08-01 04:42:09 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-08-01 04:42:09 +0000 |
commit | 1a77934531b0ddfc4392ccffbdde0058c2dbab68 (patch) | |
tree | 51e628c9b3dc4299d1f5dbb3bd5aad4938b0ae5a /src/libs/module | |
parent | 9cd4eddfb41c4573d4acd4f625572c4cdff50497 (diff) | |
download | ingen-1a77934531b0ddfc4392ccffbdde0058c2dbab68.tar.gz ingen-1a77934531b0ddfc4392ccffbdde0058c2dbab68.tar.bz2 ingen-1a77934531b0ddfc4392ccffbdde0058c2dbab68.zip |
Remove PostProcessor thread, post-process in main thread instead (solves scripting threading issues, and saves memory anyway).
Revert saw_lp.ingen.ttl (version written by broken raptor committed by mistake).
Working engine->script responses, nicer Python example.
git-svn-id: http://svn.drobilla.net/lad/ingen@665 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/module')
-rw-r--r-- | src/libs/module/World.hpp | 5 | ||||
-rw-r--r-- | src/libs/module/module.cpp | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/libs/module/World.hpp b/src/libs/module/World.hpp index f665e6ad..1caa50ac 100644 --- a/src/libs/module/World.hpp +++ b/src/libs/module/World.hpp @@ -30,6 +30,9 @@ #endif namespace Ingen { + +class Engine; + namespace Shared { class EngineInterface; @@ -52,6 +55,8 @@ struct World { Raul::RDF::World* rdf_world; EngineInterface* engine; + + Engine* local_engine; }; diff --git a/src/libs/module/module.cpp b/src/libs/module/module.cpp index d169e546..2914907a 100644 --- a/src/libs/module/module.cpp +++ b/src/libs/module/module.cpp @@ -48,6 +48,8 @@ get_world() world->slv2_world = slv2_world_new_using_rdf_world(world->rdf_world->world()); slv2_world_load_all(world->slv2_world); #endif + world->engine = NULL; + world->local_engine = NULL; } return world; |