prosperon/source/engine/debug/debug.h

22 lines
356 B
C
Raw Normal View History

2021-11-30 21:29:18 -06:00
#ifndef DEBUG_GUI_H
#define DEBUG_GUI_H
2023-11-20 07:49:14 -06:00
//#ifndef static_assert
//#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