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:
Diffstat (limited to 'source/gameengine/Ketsji/KX_TimeCategoryLogger.h')
-rw-r--r--source/gameengine/Ketsji/KX_TimeCategoryLogger.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/gameengine/Ketsji/KX_TimeCategoryLogger.h b/source/gameengine/Ketsji/KX_TimeCategoryLogger.h
index f01e405d3df..62b74871603 100644
--- a/source/gameengine/Ketsji/KX_TimeCategoryLogger.h
+++ b/source/gameengine/Ketsji/KX_TimeCategoryLogger.h
@@ -52,7 +52,7 @@ public:
/**
* Constructor.
- * @param maxNumMesasurements Maximum number of measurements stored (> 1).
+ * \param maxNumMesasurements Maximum number of measurements stored (> 1).
*/
KX_TimeCategoryLogger(unsigned int maxNumMeasurements = 10);
@@ -73,40 +73,40 @@ public:
/**
* Adds a category.
- * @param category The new category.
+ * \param category The new category.
*/
virtual void AddCategory(TimeCategory tc);
/**
* Starts logging in current measurement for the given category.
- * @param tc The category to log to.
- * @param now The current time.
- * @param endOtherCategories Whether to stop logging to other categories.
+ * \param tc The category to log to.
+ * \param now The current time.
+ * \param endOtherCategories Whether to stop logging to other categories.
*/
virtual void StartLog(TimeCategory tc, double now, bool endOtherCategories = true);
/**
* End logging in current measurement for the given category.
- * @param tc The category to log to.
- * @param now The current time.
+ * \param tc The category to log to.
+ * \param now The current time.
*/
virtual void EndLog(TimeCategory tc, double now);
/**
* End logging in current measurement for all categories.
- * @param now The current time.
+ * \param now The current time.
*/
virtual void EndLog(double now);
/**
* Logs time in next measurement.
- * @param now The current time.
+ * \param now The current time.
*/
virtual void NextMeasurement(double now);
/**
* Returns average of all but the current measurement time.
- * @return The average of all but the current measurement.
+ * \return The average of all but the current measurement.
*/
virtual double GetAverage(TimeCategory tc);