Packed font rendering
This commit is contained in:
@@ -4,9 +4,7 @@
|
||||
struct timer {
|
||||
int timerid;
|
||||
int on;
|
||||
double fire_time; // Time the timer will fire
|
||||
double interval; // Time of timer
|
||||
double start_time; // Time the timer started this loop
|
||||
int repeat;
|
||||
double remain_time; // How much time until the timer executes
|
||||
void (*cb)(void *data);
|
||||
@@ -18,13 +16,7 @@ void timer_remove(struct timer *t);
|
||||
void timer_start(struct timer *t);
|
||||
void timer_pause(struct timer *t);
|
||||
void timer_stop(struct timer *t);
|
||||
void timer_update(double s);
|
||||
void timer_update(double dt);
|
||||
void timerr_settime(struct timer *t, double interval);
|
||||
|
||||
|
||||
|
||||
|
||||
void *arrfind(void *arr, int (*valid)(void *arr, void *cmp), void *cmp);
|
||||
void arrwalk(void *arr, void (*fn)(void *data));
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user