2019-12-28 12:16:32 +01:00
|
|
|
#ifndef RENCACHE_H
|
|
|
|
#define RENCACHE_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2021-05-21 23:22:46 +02:00
|
|
|
#include <lua.h>
|
2019-12-28 12:16:32 +01:00
|
|
|
#include "renderer.h"
|
|
|
|
|
2021-09-25 06:35:55 +02:00
|
|
|
void rencache_show_debug(bool enable);
|
|
|
|
void rencache_set_clip_rect(RenRect rect);
|
|
|
|
void rencache_draw_rect(RenRect rect, RenColor color);
|
2022-04-15 17:34:46 +02:00
|
|
|
float rencache_draw_text(RenFont **font, const char *text, float x, int y, RenColor color);
|
2021-09-25 06:35:55 +02:00
|
|
|
void rencache_invalidate(void);
|
2022-04-15 17:34:46 +02:00
|
|
|
void rencache_begin_frame();
|
|
|
|
void rencache_end_frame();
|
2019-12-28 12:16:32 +01:00
|
|
|
|
|
|
|
#endif
|