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:
authorCampbell Barton <ideasman42@gmail.com>2020-11-03 16:01:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-11-03 16:01:00 +0300
commit7ceb622fd3d8629226ef1c0ca028aa89194f5131 (patch)
treec32f9cba9da199c477a9c2110ccfbfccd100d010 /source/blender/imbuf/intern
parentf278d814fd7b23c58348524dee9f3b1d6e5e2167 (diff)
Cleanup: doxy param syntax
Diffstat (limited to 'source/blender/imbuf/intern')
-rw-r--r--source/blender/imbuf/intern/rectop.c20
1 files changed, 10 insertions, 10 deletions
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],