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>2018-12-12 04:17:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-12 04:18:52 +0300
commit16fc62e15f0a749d6d64e784ea048e07d6ea3397 (patch)
tree941d34565872ebf09b91ec76e997320f3b670de6 /source/blender/windowmanager/gizmo
parent805bf5d602ac43fd23e6db2865e31b3f3d9cd04c (diff)
Docs: correct doxy comments
Diffstat (limited to 'source/blender/windowmanager/gizmo')
-rw-r--r--source/blender/windowmanager/gizmo/intern/wm_gizmo.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/source/blender/windowmanager/gizmo/intern/wm_gizmo.c b/source/blender/windowmanager/gizmo/intern/wm_gizmo.c
index 123857f3251..3a4b8af492a 100644
--- a/source/blender/windowmanager/gizmo/intern/wm_gizmo.c
+++ b/source/blender/windowmanager/gizmo/intern/wm_gizmo.c
@@ -121,7 +121,7 @@ wmGizmo *WM_gizmo_new_ptr(
}
/**
- * \param gt: Must be valid,
+ * \param name: Must be a valid gizmo type name,
* if you need to check it exists use #WM_gizmo_new_ptr
* because callers of this function don't NULL check the return value.
*/
@@ -151,8 +151,6 @@ static void gizmo_init(wmGizmo *gz)
/**
* Register \a gizmo.
*
- * \param name: name used to create a unique idname for \a gizmo in \a gzgroup
- *
* \note Not to be confused with type registration from RNA.
*/
static void wm_gizmo_register(wmGizmoGroup *gzgroup, wmGizmo *gz)
@@ -357,12 +355,6 @@ void WM_gizmo_set_line_width(wmGizmo *gz, const float line_width)
gz->line_width = line_width;
}
-/**
- * Set gizmo rgba colors.
- *
- * \param col Normal state color.
- * \param col_hi Highlighted state color.
- */
void WM_gizmo_get_color(const wmGizmo *gz, float color[4])
{
copy_v4_v4(color, gz->color);