summaryrefslogtreecommitdiffstats
path: root/minui/graphics.h
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-04-15 21:22:52 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2015-04-15 21:22:52 +0200
commita441133871b4ad361c3c873b2b2faca500b2afb8 (patch)
tree625c21a7688ed613dd22fc9fc9e6c68cec7c44bc /minui/graphics.h
parentam 98bfb6f7: am 6e435abf: Merge "Move the menu header out of the menu." (diff)
parentam 7176a617: Merge "Don\'t use typedefs that hide *s." (diff)
downloadandroid_bootable_recovery-a441133871b4ad361c3c873b2b2faca500b2afb8.tar
android_bootable_recovery-a441133871b4ad361c3c873b2b2faca500b2afb8.tar.gz
android_bootable_recovery-a441133871b4ad361c3c873b2b2faca500b2afb8.tar.bz2
android_bootable_recovery-a441133871b4ad361c3c873b2b2faca500b2afb8.tar.lz
android_bootable_recovery-a441133871b4ad361c3c873b2b2faca500b2afb8.tar.xz
android_bootable_recovery-a441133871b4ad361c3c873b2b2faca500b2afb8.tar.zst
android_bootable_recovery-a441133871b4ad361c3c873b2b2faca500b2afb8.zip
Diffstat (limited to 'minui/graphics.h')
-rw-r--r--minui/graphics.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/minui/graphics.h b/minui/graphics.h
index ed229a0c8..81a923383 100644
--- a/minui/graphics.h
+++ b/minui/graphics.h
@@ -21,13 +21,13 @@
// TODO: lose the function pointers.
struct minui_backend {
- // Initializes the backend and returns a gr_surface to draw into.
- gr_surface (*init)(minui_backend*);
+ // Initializes the backend and returns a GRSurface* to draw into.
+ GRSurface* (*init)(minui_backend*);
// Causes the current drawing surface (returned by the most recent
// call to flip() or init()) to be displayed, and returns a new
// drawing surface.
- gr_surface (*flip)(minui_backend*);
+ GRSurface* (*flip)(minui_backend*);
// Blank (or unblank) the screen.
void (*blank)(minui_backend*, bool);