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.

25 lines
543B

  1. #ifndef DEMO_H
  2. #define DEMO_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. void saveScreenShot(int w, int h, int premult, const char* name);
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif // DEMO_H