blob: b023afd2e63d7079fd170530c90f6a7e562f3136 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <os/os.h>
#include <client/font.h>
#include <basic/math.h>
#include <basic/string32.h>
void draw_rectf32(OSOffscreenBuffer *screen, RectF32 rect, V3F32 color);
void draw_mono_bitmap(OSOffscreenBuffer *screen, V2F32 pos, Bitmap *bitmap, V3F32 color);
void draw_string32(OSOffscreenBuffer *screen, V2F32 pos, String32 *text, Font *font);
void draw_cursor(OSOffscreenBuffer *screen, V2F32 pos, Font *font, String32 *str, u32 cursor);
void draw_border(OSOffscreenBuffer *screen, RectF32 rect, f32 size, V3F32 color);
|