blob: aa4446b1c3667f735ed7ce178ba448ed4d2fd1df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef RENDERER_H
#define RENDERER_H
#include "microui.h"
void r_init(void);
void r_handle_input(mu_Context *ctx);
void r_render(mu_Context *ctx);
int r_get_text_width(const char *text, int len);
int r_get_text_height(void);
void r_get_window_size(int *w, int *h);
void r_present(void);
#endif
|