diff options
author | Damien Bargiacchi <drb@google.com> | 2016-08-24 22:36:35 +0200 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2016-08-24 22:36:36 +0200 |
commit | 929ffefdccf3f7b6e2810cc47efaf93626f9a2cc (patch) | |
tree | 7fba041af0f98ba2a037d3f22b5e7744d4d7e2f5 /minui/minui.h | |
parent | "view recovery logs" will show /tmp/recovery.log (diff) | |
parent | Support use of custom fonts in miniui (diff) | |
download | android_bootable_recovery-929ffefdccf3f7b6e2810cc47efaf93626f9a2cc.tar android_bootable_recovery-929ffefdccf3f7b6e2810cc47efaf93626f9a2cc.tar.gz android_bootable_recovery-929ffefdccf3f7b6e2810cc47efaf93626f9a2cc.tar.bz2 android_bootable_recovery-929ffefdccf3f7b6e2810cc47efaf93626f9a2cc.tar.lz android_bootable_recovery-929ffefdccf3f7b6e2810cc47efaf93626f9a2cc.tar.xz android_bootable_recovery-929ffefdccf3f7b6e2810cc47efaf93626f9a2cc.tar.zst android_bootable_recovery-929ffefdccf3f7b6e2810cc47efaf93626f9a2cc.zip |
Diffstat (limited to 'minui/minui.h')
-rw-r--r-- | minui/minui.h | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/minui/minui.h b/minui/minui.h index fb0bbe10c..23156b6f1 100644 --- a/minui/minui.h +++ b/minui/minui.h @@ -33,6 +33,12 @@ struct GRSurface { unsigned char* data; }; +struct GRFont { + GRSurface* texture; + int char_width; + int char_height; +}; + int gr_init(); void gr_exit(); @@ -45,10 +51,14 @@ void gr_fb_blank(bool blank); void gr_clear(); // clear entire surface to current color void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a); void gr_fill(int x1, int y1, int x2, int y2); -void gr_text(int x, int y, const char *s, bool bold); + void gr_texticon(int x, int y, GRSurface* icon); -int gr_measure(const char *s); -void gr_font_size(int *x, int *y); + +const GRFont* gr_sys_font(); +int gr_init_font(const char* name, GRFont* dest); +void gr_text(const GRFont* font, int x, int y, const char *s, bool bold); +int gr_measure(const GRFont* font, const char *s); +void gr_font_size(const GRFont* font, int *x, int *y); void gr_blit(GRSurface* source, int sx, int sy, int w, int h, int dx, int dy); unsigned int gr_get_width(GRSurface* surface); |