From e757c4a3bec8b0e8d198531a28327332af00a9ba Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 12 Dec 2018 12:50:58 +1100 Subject: Cleanup: use colon separator after parameter Helps separate variable names from descriptive text. Was already used in some parts of the code, double space and dashes were used elsewhere. --- .../blender/compositor/intern/COM_SocketReader.h | 30 +++++++++++----------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'source/blender/compositor/intern/COM_SocketReader.h') diff --git a/source/blender/compositor/intern/COM_SocketReader.h b/source/blender/compositor/intern/COM_SocketReader.h index 1e0629ae2b4..ec1c200fd81 100644 --- a/source/blender/compositor/intern/COM_SocketReader.h +++ b/source/blender/compositor/intern/COM_SocketReader.h @@ -58,10 +58,10 @@ protected: /** * \brief calculate a single pixel * \note this method is called for non-complex - * \param result is a float[4] array to store the result - * \param x the x-coordinate of the pixel to calculate in image space - * \param y the y-coordinate of the pixel to calculate in image space - * \param inputBuffers chunks that can be read by their ReadBufferOperation. + * \param result: is a float[4] array to store the result + * \param x: the x-coordinate of the pixel to calculate in image space + * \param y: the y-coordinate of the pixel to calculate in image space + * \param inputBuffers: chunks that can be read by their ReadBufferOperation. */ virtual void executePixelSampled(float /*output*/[4], float /*x*/, @@ -71,11 +71,11 @@ protected: /** * \brief calculate a single pixel * \note this method is called for complex - * \param result is a float[4] array to store the result - * \param x the x-coordinate of the pixel to calculate in image space - * \param y the y-coordinate of the pixel to calculate in image space - * \param inputBuffers chunks that can be read by their ReadBufferOperation. - * \param chunkData chunk specific data a during execution time. + * \param result: is a float[4] array to store the result + * \param x: the x-coordinate of the pixel to calculate in image space + * \param y: the y-coordinate of the pixel to calculate in image space + * \param inputBuffers: chunks that can be read by their ReadBufferOperation. + * \param chunkData: chunk specific data a during execution time. */ virtual void executePixel(float output[4], int x, int y, void * /*chunkData*/) { executePixelSampled(output, x, y, COM_PS_NEAREST); @@ -84,12 +84,12 @@ protected: /** * \brief calculate a single pixel using an EWA filter * \note this method is called for complex - * \param result is a float[4] array to store the result - * \param x the x-coordinate of the pixel to calculate in image space - * \param y the y-coordinate of the pixel to calculate in image space - * \param dx - * \param dy - * \param inputBuffers chunks that can be read by their ReadBufferOperation. + * \param result: is a float[4] array to store the result + * \param x: the x-coordinate of the pixel to calculate in image space + * \param y: the y-coordinate of the pixel to calculate in image space + * \param dx: + * \param dy: + * \param inputBuffers: chunks that can be read by their ReadBufferOperation. */ virtual void executePixelFiltered(float /*output*/[4], float /*x*/, float /*y*/, -- cgit v1.2.3