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/operations/COM_CryptomatteOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_CryptomatteOperation.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/source/blender/compositor/operations/COM_CryptomatteOperation.h b/source/blender/compositor/operations/COM_CryptomatteOperation.h
index 63d566c553f..459d8b65f12 100644
--- a/source/blender/compositor/operations/COM_CryptomatteOperation.h
+++ b/source/blender/compositor/operations/COM_CryptomatteOperation.h
@@ -20,19 +20,18 @@
#define __COM_CRYPTOMATTEOPERATION_H__
#include "COM_NodeOperation.h"
-
class CryptomatteOperation : public NodeOperation {
-private:
- std::vector<float> m_objectIndex;
-public:
- std::vector<SocketReader *> inputs;
+ private:
+ std::vector<float> m_objectIndex;
- CryptomatteOperation(size_t num_inputs = 6);
+ public:
+ std::vector<SocketReader *> inputs;
- void initExecution();
- void executePixel(float output[4], int x, int y, void *data);
+ CryptomatteOperation(size_t num_inputs = 6);
- void addObjectIndex(float objectIndex);
+ void initExecution();
+ void executePixel(float output[4], int x, int y, void *data);
+ void addObjectIndex(float objectIndex);
};
#endif