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_LensGlowOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_LensGlowOperation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/compositor/operations/COM_LensGlowOperation.h b/source/blender/compositor/operations/COM_LensGlowOperation.h
index 9a18f605cda..77e13e88418 100644
--- a/source/blender/compositor/operations/COM_LensGlowOperation.h
+++ b/source/blender/compositor/operations/COM_LensGlowOperation.h
@@ -31,7 +31,7 @@ private:
* Cached reference to the inputProgram
*/
SocketReader * inputProgram;
- Lamp* lamp;
+ Lamp *lamp;
public:
LensGlowOperation();
@@ -39,7 +39,7 @@ public:
/**
* the inner loop of this program
*/
- void executePixel(float* color, float x, float y, PixelSampler sampler, MemoryBuffer *inputBuffers[]);
+ void executePixel(float *color, float x, float y, PixelSampler sampler, MemoryBuffer *inputBuffers[]);
/**
* Initialize the execution
@@ -51,6 +51,6 @@ public:
*/
void deinitExecution();
- void setLamp(Lamp* lamp) {this->lamp = lamp;}
+ void setLamp(Lamp *lamp) {this->lamp = lamp;}
};
#endif