From e22aa7bc38c5d38a0714bed8a2a1869383cd5e5a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 13 Jun 2012 14:33:50 +0000 Subject: style cleanup --- .../operations/COM_GlareThresholdOperation.h | 38 ++++++++++++---------- 1 file changed, 20 insertions(+), 18 deletions(-) (limited to 'source/blender/compositor/operations/COM_GlareThresholdOperation.h') diff --git a/source/blender/compositor/operations/COM_GlareThresholdOperation.h b/source/blender/compositor/operations/COM_GlareThresholdOperation.h index 3dfa2f44339..d5ec8ba93a6 100644 --- a/source/blender/compositor/operations/COM_GlareThresholdOperation.h +++ b/source/blender/compositor/operations/COM_GlareThresholdOperation.h @@ -15,8 +15,8 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - * Contributor: - * Jeroen Bakker + * Contributor: + * Jeroen Bakker * Monique Dewanchand */ @@ -28,30 +28,32 @@ class GlareThresholdOperation : public NodeOperation { private: /** - * @brief Cached reference to the inputProgram - */ - SocketReader * inputProgram; - + * @brief Cached reference to the inputProgram + */ + SocketReader *inputProgram; + float threshold; public: GlareThresholdOperation(); - + /** - * 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(); - - void setThreshold(float threshold) {this->threshold = threshold;} + + void setThreshold(float threshold) { + this->threshold = threshold; + } }; #endif -- cgit v1.2.3