summaryrefslogtreecommitdiff
path: root/rotord/src/rendercontext.h
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2013-12-08 10:55:03 +0000
committerComment <tim@gray.(none)>2013-12-08 10:55:03 +0000
commit1d05d2380bb4f1fd265aef55744f432af38b08aa (patch)
tree89c1c15497149951d4b99938ad932abde42eae14 /rotord/src/rendercontext.h
parente04516069c71a5a1e32e6a5fbf0eb5b86dcfc5a2 (diff)
switched signals to double and random to uint16
Diffstat (limited to 'rotord/src/rendercontext.h')
-rw-r--r--rotord/src/rendercontext.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/rotord/src/rendercontext.h b/rotord/src/rendercontext.h
index b0f8649..380e197 100644
--- a/rotord/src/rendercontext.h
+++ b/rotord/src/rendercontext.h
@@ -48,10 +48,10 @@ namespace Rotor {
};
class Render_status {
public:
- Render_status():status(0),progress(0.0f){};
- Render_status(int _status):status(_status),progress(0.0f){};
+ Render_status():status(0),progress(0.0){};
+ Render_status(int _status):status(_status),progress(0.0){};
int status;
- float progress;
+ double progress;
};
class Render_context: public Poco::Task { //Poco task object
//manages a 'patchbay'
@@ -60,7 +60,7 @@ namespace Rotor {
public:
Render_context(const std::string& name): Task(name) {
state=IDLE;
- output_framerate=25.0f;
+ output_framerate=25.0;
start=0;
stop=999999;
xmlIO xml;
@@ -112,7 +112,7 @@ namespace Rotor {
Audio_thumbnailer *audio_thumb;
Graph graph;
- float output_framerate;
+ double output_framerate;
int start,stop;
};
}