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_DoubleEdgeMaskOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h b/source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h
index f233570800a..85c4fd9e5b7 100644
--- a/source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h
+++ b/source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h
@@ -34,15 +34,15 @@ private:
SocketReader * inputInnerMask;
bool adjecentOnly;
bool keepInside;
- float* cachedInstance;
+ float *cachedInstance;
public:
DoubleEdgeMaskOperation();
- void doDoubleEdgeMask(float* inner, float *outer, float *res);
+ void doDoubleEdgeMask(float *inner, float *outer, float *res);
/**
* the inner loop of this program
*/
- void executePixel(float* color, int x, int y, MemoryBuffer *inputBuffers[], void* data);
+ void executePixel(float *color, int x, int y, MemoryBuffer *inputBuffers[], void *data);
/**
* Initialize the execution
@@ -54,7 +54,7 @@ public:
*/
void deinitExecution();
- void* initializeTileData(rcti *rect, MemoryBuffer **memoryBuffers);
+ void *initializeTileData(rcti *rect, MemoryBuffer **memoryBuffers);
bool determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output);