Cosmetic changes to output of rendering statistics.
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@5395 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
parent
41a250e2b6
commit
c7880fe80c
@ -169,7 +169,7 @@ void ProfileWorld::enterRaceOverState()
|
||||
float runtime = (irr_driver->getRealTime()-m_start_time)*0.001f;
|
||||
printf("Number of frames: %d time %f, Average FPS: %f\n",
|
||||
m_frame_count, runtime, (float)m_frame_count/runtime);
|
||||
printf("Average #nodes drawn %f k\n",
|
||||
printf("Average # drawn nodes %f k\n",
|
||||
(float)m_num_triangles/m_frame_count);
|
||||
printf("Average # culled nodes: %f k\n",
|
||||
(float)m_num_culls/m_frame_count);
|
||||
@ -180,7 +180,6 @@ void ProfileWorld::enterRaceOverState()
|
||||
printf("Average # transp. effect nodes: %f\n",
|
||||
(float)m_num_trans_effect/m_frame_count);
|
||||
|
||||
|
||||
float min_t=999999.9f, max_t=0.0, av_t=0.0;
|
||||
for ( KartList::size_type i = 0; i < m_karts.size(); ++i)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user