Вниз
Скачать: CL | DM;

Fps   Найти похожие ветки 

 
D@rk   (2006-02-06 22:38) [0]

Использую OpenGL...
Подскажите пожалуйста как посчитать Fps...


 
grouzd[E]v ©   (2006-02-06 23:05) [1]

var
count_new, count_last, count_sec, fps : integer;

procedure Render;
count_new := GetTickCount;

fps := fps + 1;
if (count_new - count_sec) >= 1000 then
 begin
   count_sec := count_sec + 1000;
   fps_string := "fps: "+inttostr(fps);
   fps := 0;
 end;
global_count := count_new - count_last;

//рисуем сцену
//получаем fps - в строке fps_string

count_last := count_new;
end;

---
... we are walking on a thin line and you better avoid the risk ...



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.44 MB
Время: 0.03 c
15-1163017615
alex-drob
2006-11-08 23:26
2006.11.26
Простая сеть + WiFi не могу настроить


2-1162800811
Shopot
2006-11-06 11:13
2006.11.26
DLL.


2-1162971553
312kbps
2006-11-08 10:39
2006.11.26
Уменьшить размер картинки !


2-1162905886
Term
2006-11-07 16:24
2006.11.26
Событие


15-1162763416
albanier
2006-11-06 00:50
2006.11.26
QIP




   Наверх