You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
761B

  1. #ifndef WIDGETS_H
  2. #define WIDGETS_H
  3. #include "nanovg.h"
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. struct DemoData {
  8. int fontNormal, fontBold, fontIcons;
  9. int images[12];
  10. };
  11. int loadDemoData(struct NVGcontext* vg, struct DemoData* data);
  12. void freeDemoData(struct NVGcontext* vg, struct DemoData* data);
  13. void renderDemo(struct NVGcontext* vg, float mx, float my, float width, float height, float t, int blowup, struct DemoData* data);
  14. #define FPS_HISTORY_COUNT 100
  15. struct FPScounter
  16. {
  17. float values[FPS_HISTORY_COUNT];
  18. int head;
  19. };
  20. void initFPS(struct FPScounter* fps);
  21. void updateFPS(struct FPScounter* fps, float frameTime);
  22. void renderFPS(struct NVGcontext* vg, float x, float y, struct FPScounter* fps);
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif // WIDGETS_H