Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/compositor/intern/COM_NodeOperation.h')
-rw-r--r--source/blender/compositor/intern/COM_NodeOperation.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/source/blender/compositor/intern/COM_NodeOperation.h b/source/blender/compositor/intern/COM_NodeOperation.h
index 2219907b0c8..db1fdda0bcf 100644
--- a/source/blender/compositor/intern/COM_NodeOperation.h
+++ b/source/blender/compositor/intern/COM_NodeOperation.h
@@ -160,11 +160,22 @@ public:
virtual void deinitExecution();
void deinitMutex();
+ bool isResolutionSet() {
+ return this->width != 0 && height != 0;
+ }
+
/**
* @brief set the resolution
* @param resolution the resolution to set
*/
- void setResolution(unsigned int resolution[]) {this->width = resolution[0];this->height = resolution[1];}
+ void setResolution(unsigned int resolution[]) {
+ if (!isResolutionSet()) {
+ this->width = resolution[0];
+ this->height = resolution[1];
+ }
+ }
+
+
void getConnectedInputSockets(vector<InputSocket*> *sockets);
/**
@@ -221,6 +232,7 @@ public:
bool isOpenCL() { return this->openCL; }
virtual bool isViewerOperation() {return false;}
+ virtual bool isPreviewOperation() {return false;}
protected:
NodeOperation();