1 
2 #include "ssgLocal.h"
3 
4 
5 ssgStatistics _ssgCurrStatistics ;
6 
reset()7 void ssgStatistics::reset ()
8 {
9   vertex_count = leaf_count = 0 ;
10 }
11 
12 
ssgGetLatestStatistics()13 ssgStatistics *ssgGetLatestStatistics ()
14 {
15   return & _ssgCurrStatistics ;
16 }
17 
18 
19