aboutsummaryrefslogtreecommitdiffstats
path: root/minui/minui.h
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2012-12-18 16:31:27 -0800
committerDoug Zongker <dougz@android.com>2012-12-18 16:31:27 -0800
commitc560a67b12350102ba237fa70cedc7c972ad4e4b (patch)
tree536b56e71c13fdb51e562a15b96e93a7cb9cd052 /minui/minui.h
parentbb01d0c12b29e6ff4a9169c21c95408e7eb882c5 (diff)
downloadbootable_recovery-c560a67b12350102ba237fa70cedc7c972ad4e4b.zip
bootable_recovery-c560a67b12350102ba237fa70cedc7c972ad4e4b.tar.gz
bootable_recovery-c560a67b12350102ba237fa70cedc7c972ad4e4b.tar.bz2
add optional overscan compensation to recovery graphics
If your screen is a TV, it may not actually be displaying the edges of the framebuffer. Allow specifying an overscan percentage, and move each edge of the framebuffer in by that percent of the width/height. (The gr_* layer just lies to the caller about the size of the framebuffer, telling the caller it's smaller than it really is, and offsets all drawing commands to match.) Change-Id: I11bb2feb39ae522bd3e957a14ebdecf3609e0fdc
Diffstat (limited to 'minui/minui.h')
-rw-r--r--minui/minui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/minui/minui.h b/minui/minui.h
index 767ffcb..bc43bb5 100644
--- a/minui/minui.h
+++ b/minui/minui.h
@@ -36,7 +36,7 @@ void gr_flip(void);
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);
+void gr_fill(int x1, int y1, int x2, int y2);
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);