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>2021-06-30 07:35:01 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-06-30 07:39:32 +0300
commitc36d2a9a7a2a01fdaeea98270ef1eb2314dfada3 (patch)
tree1d48ecf6a1723e39b76ce46fcc0601d0d032a4d2 /source/blender/editors/transform
parent77ac1f39c4c9ff2cdce2527ef0035beb749db610 (diff)
Cleanup: rename 'count' to 'len'
Reserve the term count for values that require calculation (typically linked lists). Without this convention it's difficult to know if using a length accessor function in a loop will be O(N^2) without inspecting the underlying implementation.
Diffstat (limited to 'source/blender/editors/transform')
-rw-r--r--source/blender/editors/transform/transform_snap_sequencer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/transform/transform_snap_sequencer.c b/source/blender/editors/transform/transform_snap_sequencer.c
index 952b580a0a3..a180db349ff 100644
--- a/source/blender/editors/transform/transform_snap_sequencer.c
+++ b/source/blender/editors/transform/transform_snap_sequencer.c
@@ -52,14 +52,14 @@ typedef struct TransSeqSnapData {
/** \name Snap sources
* \{ */
-static int seq_get_snap_source_points_count(SeqCollection *snap_sources)
+static int seq_get_snap_source_points_len(SeqCollection *snap_sources)
{
- return SEQ_collection_count(snap_sources) * 2;
+ return SEQ_collection_len(snap_sources) * 2;
}
static void seq_snap_source_points_alloc(TransSeqSnapData *snap_data, SeqCollection *snap_sources)
{
- const size_t point_count = seq_get_snap_source_points_count(snap_sources);
+ const size_t point_count = seq_get_snap_source_points_len(snap_sources);
snap_data->source_snap_points = MEM_callocN(sizeof(int) * point_count, __func__);
memset(snap_data->source_snap_points, 0, sizeof(int));
snap_data->source_snap_point_count = point_count;
@@ -136,7 +136,7 @@ static int seq_get_snap_target_points_count(const TransInfo *t,
count += 2;
}
- count *= SEQ_collection_count(snap_targets);
+ count *= SEQ_collection_len(snap_targets);
if (snap_mode & SEQ_SNAP_TO_PLAYHEAD) {
count++;