This is used to track the utilization of the TransformState and RenderState caches, for low-level performance tuning information. More...
#include "cacheStats.h"
Public Member Functions | |
void | add_num_states (int count) |
Adds the indicated count (positive or negative) to the total count of individual RenderState or TransformState objects. More... | |
void | add_total_size (int count) |
Adds the indicated count (positive or negative) to the total number of entries for the cache (net occupied size of all the hashtables). More... | |
void | inc_adds (bool is_new) |
Increments by 1 the count of elements added to the cache. More... | |
void | inc_dels () |
Increments by 1 the count of elements removed from the cache. More... | |
void | inc_hits () |
Increments by 1 the count of cache hits. More... | |
void | inc_misses () |
Increments by 1 the count of cache misses. More... | |
void | init () |
Initializes the CacheStats for the first time. More... | |
void | maybe_report (const char *name) |
Outputs a report if enough time has elapsed. More... | |
void | reset (double now) |
Reinitializes just those parts of the CacheStats that should be reset between each reporting interval. More... | |
void | write (std::ostream &out, const char *name) const |
This is used to track the utilization of the TransformState and RenderState caches, for low-level performance tuning information.
Definition at line 25 of file cacheStats.h.
|
inline |
Adds the indicated count (positive or negative) to the total count of individual RenderState or TransformState objects.
Definition at line 91 of file cacheStats.I.
|
inline |
Adds the indicated count (positive or negative) to the total number of entries for the cache (net occupied size of all the hashtables).
Definition at line 80 of file cacheStats.I.
|
inline |
Increments by 1 the count of elements added to the cache.
If is_new is true, the element was added to a previously empty hashtable.
Definition at line 56 of file cacheStats.I.
|
inline |
Increments by 1 the count of elements removed from the cache.
Definition at line 69 of file cacheStats.I.
|
inline |
Increments by 1 the count of cache hits.
Definition at line 35 of file cacheStats.I.
|
inline |
Increments by 1 the count of cache misses.
Definition at line 45 of file cacheStats.I.
void CacheStats::init | ( | ) |
Initializes the CacheStats for the first time.
We don't use the constructor for this, since we can't guarantee ordering of static constructors.
Definition at line 22 of file cacheStats.cxx.
Referenced by RenderState::init_states().
|
inline |
Outputs a report if enough time has elapsed.
Definition at line 18 of file cacheStats.I.
void CacheStats::reset | ( | double | now | ) |
Reinitializes just those parts of the CacheStats that should be reset between each reporting interval.
Definition at line 37 of file cacheStats.cxx.