prosperon/source/engine/debug/debug.h

21 lines
357 B
C
Raw Normal View History

2021-11-30 21:29:18 -06:00
#ifndef DEBUG_GUI_H
#define DEBUG_GUI_H
#include <stdint.h>
struct d_prof {
char *name;
float *ms;
uint64_t lap;
int laps;
};
2021-11-30 21:29:18 -06:00
extern unsigned long long triCount;
void resetTriangles();
void prof_start(struct d_prof *prof);
void prof_reset(struct d_prof *prof);
void prof_lap(struct d_prof *prof);
float prof_lap_avg(struct d_prof *prof);
2021-11-30 21:29:18 -06:00
#endif