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:
authorHans Goudey <h.goudey@me.com>2020-09-17 21:14:47 +0300
committerHans Goudey <h.goudey@me.com>2020-09-17 21:14:47 +0300
commit1f9e3d44a0cf0d69cca58d1981e38592aa9ac477 (patch)
tree6a0fef45edbf703fa1dd1ab1fad4866c6b4c9eda /source/blender/editors/space_graph
parent66d7f9c8f0cf9418ffb7946a3fcb52574d51b56a (diff)
Cleanup: Doxygen sections
Diffstat (limited to 'source/blender/editors/space_graph')
-rw-r--r--source/blender/editors/space_graph/graph_draw.c32
1 files changed, 24 insertions, 8 deletions
diff --git a/source/blender/editors/space_graph/graph_draw.c b/source/blender/editors/space_graph/graph_draw.c
index 08de7a29797..af7a7d9a4de 100644
--- a/source/blender/editors/space_graph/graph_draw.c
+++ b/source/blender/editors/space_graph/graph_draw.c
@@ -53,8 +53,10 @@
static void graph_draw_driver_debug(bAnimContext *ac, ID *id, FCurve *fcu);
-/* *************************** */
-/* Utility Drawing Defines */
+/* -------------------------------------------------------------------- */
+/** \name Utility Drawing Defines
+ *
+ * \{ */
/* determine the alpha value that should be used when
* drawing components for some F-Curve (fcu)
@@ -65,8 +67,12 @@ static float fcurve_display_alpha(FCurve *fcu)
return (fcu->flag & FCURVE_SELECTED) ? 1.0f : U.fcu_inactive_alpha;
}
-/* *************************** */
-/* F-Curve Modifier Drawing */
+/** \} */
+
+/* -------------------------------------------------------------------- */
+/** \name FCurve Modifier Drawing
+ *
+ * \{ */
/* Envelope -------------- */
@@ -133,8 +139,12 @@ static void draw_fcurve_modifier_controls_envelope(FModifier *fcm, View2D *v2d)
}
}
-/* *************************** */
-/* F-Curve Drawing */
+/** \} */
+
+/* -------------------------------------------------------------------- */
+/** \name FCurve Modifier Drawing
+ *
+ * \{ */
/* Points ---------------- */
@@ -1222,8 +1232,12 @@ void graph_draw_curves(bAnimContext *ac, SpaceGraph *sipo, ARegion *region, shor
ANIM_animdata_freelist(&anim_data);
}
-/* ************************************************************************* */
-/* Channel List */
+/** \} */
+
+/* -------------------------------------------------------------------- */
+/** \name Channel List
+ *
+ * \{ */
/* left hand part */
void graph_draw_channel_names(bContext *C, bAnimContext *ac, ARegion *region)
@@ -1292,3 +1306,5 @@ void graph_draw_channel_names(bContext *C, bAnimContext *ac, ARegion *region)
/* free tempolary channels */
ANIM_animdata_freelist(&anim_data);
}
+
+/** \} */