Jeremy Penner
3d52b70bbc
subrepo: subdir: "vendor/lite" merged: "2783adc" upstream: origin: "https://github.com/jeremypenner/lite.git" branch: "master" commit: "2783adc" git-subrepo: version: "0.4.2" origin: "https://github.com/ingydotnet/git-subrepo" commit: "65fde50"
17 lines
452 B
C
17 lines
452 B
C
#ifndef RENCACHE_H
|
|
#define RENCACHE_H
|
|
|
|
#include <stdbool.h>
|
|
#include "renderer.h"
|
|
|
|
void rencache_show_debug(bool enable);
|
|
void rencache_free_font(RenFont *font);
|
|
void rencache_set_clip_rect(RenRect rect);
|
|
void rencache_draw_rect(RenRect rect, RenColor color);
|
|
int rencache_draw_text(RenFont *font, const char *text, int x, int y, RenColor color);
|
|
void rencache_invalidate(void);
|
|
void rencache_begin_frame(void);
|
|
void rencache_end_frame(void);
|
|
|
|
#endif
|