prosperon/source/engine/debug/debug.h

22 lines
350 B
C
Raw Normal View History

2021-11-30 21:29:18 -06:00
#ifndef DEBUG_GUI_H
#define DEBUG_GUI_H
#ifndef static_assert
2023-01-25 21:32:58 -06:00
#define static_assert(pred) switch(0){case 0:case pred:;}
#endif
#include <stdint.h>
struct d_prof {
char *name;
float *ms;
uint64_t lap;
};
2021-11-30 21:29:18 -06:00
extern unsigned long long triCount;
void resetTriangles();
void prof_start(struct d_prof *prof);
void prof(struct d_prof *prof);
2021-11-30 21:29:18 -06:00
#endif