summaryrefslogtreecommitdiffstats
path: root/minui/minui.h
diff options
context:
space:
mode:
authorDoug Zongker <dougz@google.com>2012-08-23 22:14:14 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2012-08-23 22:14:14 +0200
commitec5eceb849b7038b271dc5882cbbc8f72265e026 (patch)
tree2aa6f95cb875d258f62a5342ec2bb1ad0093e3bd /minui/minui.h
parentam a3ccba6d: add bonus data feature to imgdiff/imgpatch/applypatch (diff)
parentadd simple text to recovery UI (diff)
downloadandroid_bootable_recovery-ec5eceb849b7038b271dc5882cbbc8f72265e026.tar
android_bootable_recovery-ec5eceb849b7038b271dc5882cbbc8f72265e026.tar.gz
android_bootable_recovery-ec5eceb849b7038b271dc5882cbbc8f72265e026.tar.bz2
android_bootable_recovery-ec5eceb849b7038b271dc5882cbbc8f72265e026.tar.lz
android_bootable_recovery-ec5eceb849b7038b271dc5882cbbc8f72265e026.tar.xz
android_bootable_recovery-ec5eceb849b7038b271dc5882cbbc8f72265e026.tar.zst
android_bootable_recovery-ec5eceb849b7038b271dc5882cbbc8f72265e026.zip
Diffstat (limited to 'minui/minui.h')
-rw-r--r--minui/minui.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/minui/minui.h b/minui/minui.h
index 74da4e9c0..767ffcb50 100644
--- a/minui/minui.h
+++ b/minui/minui.h
@@ -38,6 +38,7 @@ void gr_fb_blank(bool blank);
void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a);
void gr_fill(int x, int y, int w, int h);
int gr_text(int x, int y, const char *s);
+ void gr_texticon(int x, int y, gr_surface icon);
int gr_measure(const char *s);
void gr_font_size(int *x, int *y);
@@ -71,6 +72,7 @@ void ev_dispatch(void);
// Returns 0 if no error, else negative.
int res_create_surface(const char* name, gr_surface* pSurface);
+int res_create_localized_surface(const char* name, gr_surface* pSurface);
void res_free_surface(gr_surface surface);
#ifdef __cplusplus