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-08-26 05:27:17 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-08-26 05:36:58 +0300
commit84f048fda566c2098ec1baa2ff1ad6c00b7395d5 (patch)
tree187bede237f476ef08d646f1e0ecc927c58b659f /source/blender/depsgraph/intern/debug
parent42032db1c220e2a10d2d80879ec0037b4e12257e (diff)
Cleanup: use C style comments for descriptive text
Diffstat (limited to 'source/blender/depsgraph/intern/debug')
-rw-r--r--source/blender/depsgraph/intern/debug/deg_time_average.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/source/blender/depsgraph/intern/debug/deg_time_average.h b/source/blender/depsgraph/intern/debug/deg_time_average.h
index 838ceff8d96..4ed78fe70cb 100644
--- a/source/blender/depsgraph/intern/debug/deg_time_average.h
+++ b/source/blender/depsgraph/intern/debug/deg_time_average.h
@@ -26,8 +26,7 @@
namespace blender {
namespace deg {
-// Utility class which takes care of calculating average of time series, such as
-// FPS counters.
+/* Utility class which takes care of calculating average of time series, such as FPS counters. */
template<int MaxSamples> class AveragedTimeSampler {
public:
AveragedTimeSampler() : num_samples_(0), next_sample_index_(0)
@@ -38,13 +37,13 @@ template<int MaxSamples> class AveragedTimeSampler {
{
samples_[next_sample_index_] = value;
- // Move to the next index, keeping wrapping at the end of array into account.
+ /* Move to the next index, keeping wrapping at the end of array into account. */
++next_sample_index_;
if (next_sample_index_ == MaxSamples) {
next_sample_index_ = 0;
}
- // Update number of stored samples.
+ /* Update number of stored samples. */
if (num_samples_ != MaxSamples) {
++num_samples_;
}
@@ -62,10 +61,10 @@ template<int MaxSamples> class AveragedTimeSampler {
protected:
double samples_[MaxSamples];
- // Number of samples which are actually stored in the array.
+ /* Number of samples which are actually stored in the array. */
int num_samples_;
- // Index in the samples_ array under which next sample will be stored.
+ /* Index in the samples_ array under which next sample will be stored. */
int next_sample_index_;
};