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:
authorSybren A. Stüvel <sybren@blender.org>2022-07-05 12:34:40 +0300
committerSybren A. Stüvel <sybren@blender.org>2022-07-05 12:34:40 +0300
commitfdb854b9320d66297c8d1f03746b340b0798ed86 (patch)
treeb5780f5b98b7a9a64c070a93c1686dea6163e8a7 /source/blender/blenkernel/BKE_nla.h
parentbd00324c264c07d7872071e9ef888b6b92e5645f (diff)
Cleanup: NLA, reformatting code
No functional changes.
Diffstat (limited to 'source/blender/blenkernel/BKE_nla.h')
-rw-r--r--source/blender/blenkernel/BKE_nla.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_nla.h b/source/blender/blenkernel/BKE_nla.h
index a9444156498..11642763074 100644
--- a/source/blender/blenkernel/BKE_nla.h
+++ b/source/blender/blenkernel/BKE_nla.h
@@ -8,7 +8,7 @@
*/
/* temp constant defined for these funcs only... */
-# define NLASTRIP_MIN_LEN_THRESH 0.1f
+#define NLASTRIP_MIN_LEN_THRESH 0.1f
#ifdef __cplusplus
extern "C" {
@@ -229,7 +229,8 @@ bool BKE_nlatrack_is_nonlocal_in_liboverride(const struct ID *id, const struct N
* - the macro MINFRAMEF, if no strips are to the left of this strip in its track
*
* \param strip The strip to compute the left-hand-side 'frame limit' of.
- * \return The beginning frame of the previous strip, or MINFRAMEF if no strips are next in that track.
+ * \return The beginning frame of the previous strip, or MINFRAMEF if no strips are next in that
+ * track.
*/
float BKE_nlastrip_compute_frame_from_previous_strip(struct NlaStrip *strip);
/**