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:
authorAlexander Gavrilov <angavrilov@gmail.com>2018-09-26 08:57:04 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2018-09-26 09:05:13 +0300
commitbb8023ff7f1a2b27dca92c8f8d147768b2206da0 (patch)
tree3d280aef182b58e398e59d17f1870d808a027bfe /source/blender/draw/intern/draw_cache_impl.h
parentf5c4cc877eb7fd6383f160a8d371dab93b36632d (diff)
Fix misleading field naming.
This is not any kind of length, it is the number of true values.
Diffstat (limited to 'source/blender/draw/intern/draw_cache_impl.h')
-rw-r--r--source/blender/draw/intern/draw_cache_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/draw/intern/draw_cache_impl.h b/source/blender/draw/intern/draw_cache_impl.h
index ca14d6ae3cc..4bd0046a48a 100644
--- a/source/blender/draw/intern/draw_cache_impl.h
+++ b/source/blender/draw/intern/draw_cache_impl.h
@@ -105,8 +105,8 @@ struct DRW_MeshWeightState {
char alert_mode;
/* Set of all selected bones for Multipaint. */
- bool *defgroup_sel;
- int defgroup_sel_len;
+ bool *defgroup_sel; /* [defgroup_len] */
+ int defgroup_sel_count;
};
/* DRW_MeshWeightState.flags */