Storage Only Commit

This commit is contained in:
William
2024-03-23 02:43:42 +08:00
commit 4f7df68a3c
4 changed files with 84 additions and 0 deletions

16
Render/include/render.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef RENDER_H
# define RENDER_H
# include <Compound/common.h>
# include <Compound/pen.h>
/** Rendering */
void compound_pen_render_refresh();
void compound_pen_render_full();
void compound_pen_render_full_with(int *buff);
void compound_pen_render_partial(Selection selc);
void compound_pen_render_partial_with(Selection selc, int *buff);
void compound_pen_render_highlight(Selection selc, int method);
void compound_pen_set_cursor_highlight_method(Pen *pen, int method);
#endif /* RENDER_H */