fixed various caching update issues
This commit is contained in:
+17
-3
@@ -427,6 +427,8 @@ public:
|
||||
return output_connections();
|
||||
}
|
||||
|
||||
void InvalidateAll(NodeInput *input, int element);
|
||||
|
||||
protected:
|
||||
void SendInvalidateCache(const TimeRange &range);
|
||||
|
||||
@@ -478,10 +480,15 @@ signals:
|
||||
|
||||
void ColorChanged();
|
||||
|
||||
public slots:
|
||||
void InputChanged(const olive::TimeRange &range, int element);
|
||||
void ValueChanged(NodeInput* input, int element);
|
||||
|
||||
void InputConnectionChanged(Node* source, int element);
|
||||
void InputConnected(Node* output, NodeInput* input, int element);
|
||||
|
||||
void InputDisconnected(Node* output, NodeInput* input, int element);
|
||||
|
||||
void OutputConnected(NodeInput* destination, int element);
|
||||
|
||||
void OutputDisconnected(NodeInput* destination, int element);
|
||||
|
||||
private:
|
||||
template<class T>
|
||||
@@ -518,6 +525,13 @@ private:
|
||||
*/
|
||||
int override_color_;
|
||||
|
||||
private slots:
|
||||
void ParameterValueChanged(const olive::TimeRange &range, int element);
|
||||
|
||||
void ParameterConnected(Node* source, int element);
|
||||
|
||||
void ParameterDisconnected(Node* source, int element);
|
||||
|
||||
};
|
||||
|
||||
template<class T>
|
||||
|
||||
Reference in New Issue
Block a user