shift renderer prototype to new node structure

This commit is contained in:
itsmattkc
2019-08-28 02:40:44 +10:00
parent 5afe7d523c
commit 7dc2290496
26 changed files with 264 additions and 395 deletions
+1 -12
View File
@@ -25,21 +25,10 @@
#include <QObject>
#include "common/rational.h"
#include "node/dependency.h"
#include "node/input.h"
#include "node/output.h"
class NodeDependency {
public:
NodeDependency(Node* node, const rational& time);
Node* node();
rational time();
private:
Node* node_;
rational time_;
};
/**
* @brief A single processing unit that can be connected with others to create intricate processing systems
*