aboutsummaryrefslogtreecommitdiffstats
path: root/renderer.h
blob: 2568e240d5f123b0984bd2f3b1ed7e05b0293198 (plain) (blame)
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