diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-04-28 23:35:47 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-04-28 23:35:47 -0400 |
| commit | de6ed6f8e8c4a2d139b4e81b68db7408dbe435d1 (patch) | |
| tree | 765dde723df71633a1ae3681983057ef170f7ba6 /renderer.h | |
| parent | e8f602a81b90a4147666f607045b359753537d72 (diff) | |
| download | volute-de6ed6f8e8c4a2d139b4e81b68db7408dbe435d1.zip | |
render: maintain list of images/icons
Diffstat (limited to 'renderer.h')
| -rw-r--r-- | renderer.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,4 +2,5 @@ int r_init(mu_Context *ctx, const char *title); void r_input(mu_Context *ctx); void r_render(mu_Context *ctx); void r_get_window_size(int *w, int *h); -int r_image(SDL_Surface *img, mu_Rect r); +int r_push_icon(const char *path); +void r_pop_icon(void); |