summaryrefslogtreecommitdiffstats
path: root/minui/resources.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-01-25 01:49:47 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-01-25 01:49:48 +0100
commita47631271467248fd90fe1a628bb9249151c7e32 (patch)
tree12ac49a577a66cf61ef1d38f70d63e9cedd559b6 /minui/resources.cpp
parentMerge "update_verifier: Move property_get() to android::base::GetProperty()." (diff)
parentminui: Move callback functions to std::function. (diff)
downloadandroid_bootable_recovery-a47631271467248fd90fe1a628bb9249151c7e32.tar
android_bootable_recovery-a47631271467248fd90fe1a628bb9249151c7e32.tar.gz
android_bootable_recovery-a47631271467248fd90fe1a628bb9249151c7e32.tar.bz2
android_bootable_recovery-a47631271467248fd90fe1a628bb9249151c7e32.tar.lz
android_bootable_recovery-a47631271467248fd90fe1a628bb9249151c7e32.tar.xz
android_bootable_recovery-a47631271467248fd90fe1a628bb9249151c7e32.tar.zst
android_bootable_recovery-a47631271467248fd90fe1a628bb9249151c7e32.zip
Diffstat (limited to 'minui/resources.cpp')
-rw-r--r--minui/resources.cpp14
1 files changed, 6 insertions, 8 deletions
diff --git a/minui/resources.cpp b/minui/resources.cpp
index 726c627ed..c0f9c5c85 100644
--- a/minui/resources.cpp
+++ b/minui/resources.cpp
@@ -14,21 +14,19 @@
* limitations under the License.
*/
-#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
-
#include <fcntl.h>
+#include <linux/fb.h>
+#include <linux/kd.h>
#include <stdio.h>
-
+#include <stdlib.h>
+#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/types.h>
-
-#include <linux/fb.h>
-#include <linux/kd.h>
+#include <unistd.h>
#include <vector>
+
#include <png.h>
#include "minui/minui.h"