fetch_and_build only uses a virtual target
[AROS-Contrib.git] / vpdf / system / timer.h
blob34ed6e400c498e64de81d1de965c687829ed20d7
2 #ifndef __TIMER_H
3 #define __TIMER_H
5 #include <devices/timer.h>
7 //GLOBAL struct Library *TimerBase;
9 void TimerInit(void);
10 void TimerEnd(void);
12 void __timerGStart(void);
13 float __timerGGet(float fps);
15 void __timerGlobalStart(void);
16 float __timerGlobalGet(float fps);
18 double __timerGetTime(void);
19 void __timerGetSysTime(struct timeval *tv);
21 // PPC only (used in anim recording)
22 void __timerAdvanceFrame(void);
23 void __timerIndependentTiming(float fps);
25 #endif