Lines Matching refs:seconds

81 	float seconds;
121 seconds = (float)(now - then) / 1000.0f;
122 if ( seconds > 0.0f ) {
123 printf("%d fills and flips in %2.2f seconds, %2.2f FPS\n", frames, seconds, (float)frames / seconds);
125 printf("%d fills and flips in zero seconds!n", frames);
150 seconds = (float)(now - then) / 1000.0f;
151 if ( seconds > 0.0f ) {
152 printf("%d blits / %d updates in %2.2f seconds, %2.2f FPS\n", NUM_BLITS*frames, frames, seconds, (float)frames / seconds);
154 printf("%d blits / %d updates in zero seconds!\n", NUM_BLITS*frames, frames);
181 seconds = (float)(now - then) / 1000.0f;
182 if ( seconds > 0.0f ) {
183 printf("%d cc blits / %d updates in %2.2f seconds, %2.2f FPS\n", NUM_BLITS*frames, frames, seconds, (float)frames / seconds);
185 printf("%d cc blits / %d updates in zero seconds!\n", NUM_BLITS*frames, frames);
212 seconds = (float)(now - then) / 1000.0f;
213 if ( seconds > 0.0f ) {
214 printf("%d blits / %d updates in %2.2f seconds, %2.2f FPS\n", NUM_BLITS*frames, frames, seconds, (float)frames / seconds);
216 printf("%d blits / %d updates in zero seconds!\n", NUM_BLITS*frames, frames);
243 seconds = (float)(now - then) / 1000.0f;
244 if ( seconds > 0.0f ) {
245 printf("%d cc blits / %d updates in %2.2f seconds, %2.2f FPS\n", NUM_BLITS*frames, frames, seconds, (float)frames / seconds);
247 printf("%d cc blits / %d updates in zero seconds!\n", NUM_BLITS*frames, frames);
279 seconds = (float)(now - then) / 1000.0f;
280 if ( seconds > 0.0f ) {
281 printf("%d alpha blits / %d updates in %2.2f seconds, %2.2f FPS\n", NUM_BLITS*frames, frames, seconds, (float)frames / seconds);
283 printf("%d alpha blits / %d updates in zero seconds!\n", NUM_BLITS*frames, frames);
317 seconds = (float)(now - then) / 1000.0f;
318 if ( seconds > 0.0f ) {
319 printf("%d cc+alpha blits / %d updates in %2.2f seconds, %2.2f FPS\n", NUM_BLITS*frames, frames, seconds, (float)frames / seconds);
321 printf("%d cc+alpha blits / %d updates in zero seconds!\n", NUM_BLITS*frames, frames);