diff options
| author | Comment <tim@gray.(none)> | 2014-02-09 22:08:45 +0000 |
|---|---|---|
| committer | Comment <tim@gray.(none)> | 2014-02-09 22:08:45 +0000 |
| commit | 8fe0c8d0fd02d42ecd68e562c734d4f41cb41700 (patch) | |
| tree | a152b057c2a493a171edff341b1bb0994c7cee6c /NT/src/rendercontext.h | |
| parent | 22fd121880876005d312827a6a35c9f41c292bb2 (diff) | |
NT command sequence restructure
Diffstat (limited to 'NT/src/rendercontext.h')
| -rw-r--r-- | NT/src/rendercontext.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/NT/src/rendercontext.h b/NT/src/rendercontext.h index 3ac9c08..72c589e 100644 --- a/NT/src/rendercontext.h +++ b/NT/src/rendercontext.h @@ -72,9 +72,9 @@ namespace Rotor { }; class Render_context: public Poco::Task { public: - Render_context(const std::string& _id,const std::string& _media_dir=""): Task(_id) { + Render_context(const std::string& _id,const std::string& _media_path=""): Task(_id) { id=_id; - media_dir=_media_dir; + media_path=_media_path; graph.init(id); //set up log AutoPtr<SplitterChannel> splitterChannel(new SplitterChannel()); @@ -122,7 +122,8 @@ namespace Rotor { std::unordered_map<std::string,Render_status> renders; std::unordered_map<std::string,Render_settings> profiles; std::string profile; - std::string media_dir; + std::string media_path; + std::string graph_path; std::deque<Session_task> work_queue; Poco::Mutex mutex; |
