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_SetSamplerOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_SetSamplerOperation.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/compositor/operations/COM_SetSamplerOperation.h b/source/blender/compositor/operations/COM_SetSamplerOperation.h
index 49bbae7e4ff..5dba0b3703f 100644
--- a/source/blender/compositor/operations/COM_SetSamplerOperation.h
+++ b/source/blender/compositor/operations/COM_SetSamplerOperation.h
@@ -26,25 +26,25 @@
/**
- * this program converts an input colour to an output Sampler.
- * it assumes we are in sRGB colour space.
- */
+ * this program converts an input colour to an output Sampler.
+ * it assumes we are in sRGB colour space.
+ */
class SetSamplerOperation : public NodeOperation {
private:
PixelSampler sampler;
SocketReader *reader;
public:
/**
- * Default constructor
- */
+ * Default constructor
+ */
SetSamplerOperation();
- void setSampler(PixelSampler sampler) {this->sampler = sampler;}
+ void setSampler(PixelSampler sampler) { this->sampler = sampler; }
/**
- * the inner loop of this program
- */
- void executePixel(float *color, float x, float y, PixelSampler sampler, MemoryBuffer *inputBuffers[]);
+ * the inner loop of this program
+ */
+ void executePixel(float *color, float x, float y, PixelSampler sampler, MemoryBuffer * inputBuffers[]);
void initExecution();
void deinitExecution();
};