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>2022-03-18 01:08:36 +0300
committerHans Goudey <h.goudey@me.com>2022-03-18 01:08:36 +0300
commit0835996cc92896b21e3b5b7c9b6f22c2ca4f1db5 (patch)
treeae8064097be5b6e29584a0be182dec12529f4625 /source/blender/draw/intern
parentee2d39b3a74a80eeec9f002d733f3e7e71018191 (diff)
Cleanup: Rename "spline" variables to "curve"
Ref T95355
Diffstat (limited to 'source/blender/draw/intern')
-rw-r--r--source/blender/draw/intern/draw_cache_impl_curves.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/draw/intern/draw_cache_impl_curves.cc b/source/blender/draw/intern/draw_cache_impl_curves.cc
index aea71d965d1..f772f132b13 100644
--- a/source/blender/draw/intern/draw_cache_impl_curves.cc
+++ b/source/blender/draw/intern/draw_cache_impl_curves.cc
@@ -140,18 +140,18 @@ static void curves_batch_cache_fill_segments_proc_pos(Curves *curves,
for (const int i : IndexRange(curve_size)) {
const IndexRange curve_range = geometry.range_for_curve(i);
- Span<float3> spline_positions = positions.slice(curve_range);
+ Span<float3> curve_positions = positions.slice(curve_range);
float total_len = 0.0f;
float *seg_data_first;
- for (const int i_spline : spline_positions.index_range()) {
+ for (const int i_curve : curve_positions.index_range()) {
float *seg_data = (float *)GPU_vertbuf_raw_step(attr_step);
- copy_v3_v3(seg_data, spline_positions[i_spline]);
- if (i_spline == 0) {
+ copy_v3_v3(seg_data, curve_positions[i_curve]);
+ if (i_curve == 0) {
seg_data_first = seg_data;
}
else {
- total_len += blender::math::distance(spline_positions[i_spline - 1],
- spline_positions[i_spline]);
+ total_len += blender::math::distance(curve_positions[i_curve - 1],
+ curve_positions[i_curve]);
}
seg_data[3] = total_len;
}
@@ -159,7 +159,7 @@ static void curves_batch_cache_fill_segments_proc_pos(Curves *curves,
*(float *)GPU_vertbuf_raw_step(length_step) = total_len;
if (total_len > 0.0f) {
/* Divide by total length to have a [0-1] number. */
- for ([[maybe_unused]] const int i_spline : spline_positions.index_range()) {
+ for ([[maybe_unused]] const int i_curve : curve_positions.index_range()) {
seg_data_first[3] /= total_len;
seg_data_first += 4;
}