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_ConvertRGBToYCCOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_ConvertRGBToYCCOperation.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/source/blender/compositor/operations/COM_ConvertRGBToYCCOperation.h b/source/blender/compositor/operations/COM_ConvertRGBToYCCOperation.h
index a952627893b..33075cda509 100644
--- a/source/blender/compositor/operations/COM_ConvertRGBToYCCOperation.h
+++ b/source/blender/compositor/operations/COM_ConvertRGBToYCCOperation.h
@@ -25,44 +25,44 @@
/**
- * this program converts an input colour to an output value.
- * it assumes we are in sRGB colour space.
- */
+ * this program converts an input colour to an output value.
+ * it assumes we are in sRGB colour space.
+ */
class ConvertRGBToYCCOperation : public NodeOperation {
private:
/**
- * Cached reference to the inputProgram
- */
- SocketReader * inputOperation;
+ * Cached reference to the inputProgram
+ */
+ SocketReader *inputOperation;
/**
- * YCbCr mode (Jpeg, ITU601, ITU709)
- */
+ * YCbCr mode (Jpeg, ITU601, ITU709)
+ */
int mode;
public:
/**
- * Default constructor
- */
+ * Default constructor
+ */
ConvertRGBToYCCOperation();
/**
- * 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[]);
/**
- * Initialize the execution
- */
+ * Initialize the execution
+ */
void initExecution();
/**
- * Deinitialize the execution
- */
+ * Deinitialize the execution
+ */
void deinitExecution();
/**
- * Set the YCC mode
- */
+ * Set the YCC mode
+ */
void setMode(int mode);
};
#endif