diff options
author | Elliott Hughes <enh@google.com> | 2015-04-15 18:26:37 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-04-15 18:26:37 +0000 |
commit | 7176a61718e7b45a8fde3a25eada0c9425d1dece (patch) | |
tree | 625c21a7688ed613dd22fc9fc9e6c68cec7c44bc /minui/graphics.h | |
parent | 6e435abfeb7256b5ea82ca37166acf36e3f98085 (diff) | |
parent | 0a5cb0c7cd995ae0330a7d54a8d0db5d892a48a9 (diff) | |
download | bootable_recovery-7176a61718e7b45a8fde3a25eada0c9425d1dece.zip bootable_recovery-7176a61718e7b45a8fde3a25eada0c9425d1dece.tar.gz bootable_recovery-7176a61718e7b45a8fde3a25eada0c9425d1dece.tar.bz2 |
Merge "Don't use typedefs that hide *s."
Diffstat (limited to 'minui/graphics.h')
-rw-r--r-- | minui/graphics.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/minui/graphics.h b/minui/graphics.h index ed229a0..81a9233 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); |