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:
authorCampbell Barton <ideasman42@gmail.com>2012-06-14 23:09:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-14 23:09:00 +0400
commitc42d4b101ba01d71e49321d7c82e0edf794a1bcd (patch)
tree496c155b961e228416dd5680d58a9e744e7a6287 /source/blender/compositor/operations/COM_TranslateOperation.h
parent91d0ef0a7eaa74df92f1e30299ba0e1720658eb6 (diff)
remove unused fRGB defines and change float member to bool.
Diffstat (limited to 'source/blender/compositor/operations/COM_TranslateOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_TranslateOperation.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/compositor/operations/COM_TranslateOperation.h b/source/blender/compositor/operations/COM_TranslateOperation.h
index e512bd9318e..bf3121bec11 100644
--- a/source/blender/compositor/operations/COM_TranslateOperation.h
+++ b/source/blender/compositor/operations/COM_TranslateOperation.h
@@ -32,7 +32,7 @@ private:
SocketReader *inputYOperation;
float deltaX;
float deltaY;
- float isDeltaSet;
+ bool isDeltaSet;
public:
TranslateOperation();
bool determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output);