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_IDMaskOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_IDMaskOperation.h25
1 files changed, 4 insertions, 21 deletions
diff --git a/source/blender/compositor/operations/COM_IDMaskOperation.h b/source/blender/compositor/operations/COM_IDMaskOperation.h
index dfddc489ca4..841d4a76124 100644
--- a/source/blender/compositor/operations/COM_IDMaskOperation.h
+++ b/source/blender/compositor/operations/COM_IDMaskOperation.h
@@ -27,30 +27,13 @@
class IDMaskOperation : public NodeOperation {
private:
- /**
- * Cached reference to the inputProgram
- */
- SocketReader *m_inputProgram;
-
float m_objectIndex;
public:
IDMaskOperation();
-
- /**
- * the inner loop of this program
- */
- void executePixelSampled(float output[4], float x, float y, PixelSampler sampler);
-
- /**
- * Initialize the execution
- */
- void initExecution();
-
- /**
- * Deinitialize the execution
- */
- void deinitExecution();
-
+
+ void *initializeTileData(rcti *rect);
+ void executePixel(float output[4], int x, int y, void *data);
+
void setObjectIndex(float objectIndex) { this->m_objectIndex = objectIndex; }
};