1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef RENDERER_H #define RENDERER_H #include "microui.h" void r_init(mu_Context *ctx); void r_handle_input(mu_Context *ctx); void r_render(mu_Context *ctx); void r_present(void); void r_get_window_size(int *w, int *h); #endif