From 7ceb622fd3d8629226ef1c0ca028aa89194f5131 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 4 Nov 2020 00:01:00 +1100 Subject: Cleanup: doxy param syntax --- source/blender/imbuf/intern/rectop.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'source/blender/imbuf') diff --git a/source/blender/imbuf/intern/rectop.c b/source/blender/imbuf/intern/rectop.c index 8e348ead756..cdc8cd1068c 100644 --- a/source/blender/imbuf/intern/rectop.c +++ b/source/blender/imbuf/intern/rectop.c @@ -1071,8 +1071,8 @@ void IMB_rectblend_threaded(ImBuf *dbuf, /** * Replace pixels of entire image with solid color. - * \param ibuf an image to be filled with color. It must be 4 channel image. - * \param col RGBA color, which is assigned directly to both byte (via scaling) and float buffers. + * \param ibuf: An image to be filled with color. It must be 4 channel image. + * \param col: RGBA color, which is assigned directly to both byte (via scaling) and float buffers. */ void IMB_rectfill(ImBuf *drect, const float col[4]) { @@ -1108,9 +1108,9 @@ void IMB_rectfill(ImBuf *drect, const float col[4]) /** * Replace pixels of image area with solid color. - * \param ibuf an image to be filled with color. It must be 4 channel image. - * \param col RGBA color, which is assigned directly to both byte (via scaling) and float buffers. - * \param x1, y1, x2, y2 (x1, y1) defines starting point of the rectangular area to be filled, + * \param ibuf: an image to be filled with color. It must be 4 channel image. + * \param col: RGBA color, which is assigned directly to both byte (via scaling) and float buffers. + * \param x1, y1, x2, y2: (x1, y1) defines starting point of the rectangular area to be filled, * (x2, y2) is the end point. Note that values are allowed to be loosely ordered, which means that * x2 is allowed to be lower than x1, as well as y2 is allowed to be lower than y1. No matter the * order the area between x1 and x2, and y1 and y2 is filled. @@ -1275,17 +1275,17 @@ void buf_rectfill_area(unsigned char *rect, /** * Blend pixels of image area with solid color. * - * For images with uchar buffer use color matching image colorspace. + * For images with `uchar` buffer use color matching image colorspace. * For images with float buffer use color display colorspace. * If display colorspace can not be referenced, use color in SRGB colorspace. * - * \param ibuf an image to be filled with color. It must be 4 channel image. - * \param col RGBA color. - * \param x1, y1, x2, y2 (x1, y1) defines starting point of the rectangular area to be filled, + * \param ibuf: an image to be filled with color. It must be 4 channel image. + * \param col: RGBA color. + * \param x1, y1, x2, y2: (x1, y1) defines starting point of the rectangular area to be filled, * (x2, y2) is the end point. Note that values are allowed to be loosely ordered, which means that * x2 is allowed to be lower than x1, as well as y2 is allowed to be lower than y1. No matter the * order the area between x1 and x2, and y1 and y2 is filled. - * \param display colorspace reference for display space. + * \param display: colorspace reference for display space. */ void IMB_rectfill_area(ImBuf *ibuf, const float col[4], -- cgit v1.2.3