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_BlurBaseOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_BlurBaseOperation.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/compositor/operations/COM_BlurBaseOperation.h b/source/blender/compositor/operations/COM_BlurBaseOperation.h
index 3eb36f29865..13e7eb52b77 100644
--- a/source/blender/compositor/operations/COM_BlurBaseOperation.h
+++ b/source/blender/compositor/operations/COM_BlurBaseOperation.h
@@ -32,11 +32,11 @@ protected:
/**
* Cached reference to the inputProgram
*/
- SocketReader* inputProgram;
- SocketReader* inputSize;
+ SocketReader *inputProgram;
+ SocketReader *inputSize;
NodeBlurData * data;
BlurBaseOperation();
- float* make_gausstab(int rad);
+ float *make_gausstab(int rad);
float size;
bool deleteData;
void updateSize(MemoryBuffer **memoryBuffers);
@@ -51,7 +51,7 @@ public:
*/
void deinitExecution();
- void setData(NodeBlurData* data) {this->data= data;}
+ void setData(NodeBlurData *data) {this->data = data;}
void deleteDataWhenFinished() {this->deleteData = true;}
};