summaryrefslogtreecommitdiffstats
path: root/minui/resources.cpp
diff options
context:
space:
mode:
authorAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2019-12-14 00:56:23 +0100
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2019-12-14 00:56:23 +0100
commit802e7bfd76f6702e3f779fc82ecda41c3019b3f3 (patch)
tree758ff487cae26b24a5cf6fc75d01a85f813d3bde /minui/resources.cpp
parentMerge "Generate linker config from recovery init" am: 17090d7f53 am: c3b430d816 (diff)
parentMerge "minui: add ARGB_8888 format" (diff)
downloadandroid_bootable_recovery-802e7bfd76f6702e3f779fc82ecda41c3019b3f3.tar
android_bootable_recovery-802e7bfd76f6702e3f779fc82ecda41c3019b3f3.tar.gz
android_bootable_recovery-802e7bfd76f6702e3f779fc82ecda41c3019b3f3.tar.bz2
android_bootable_recovery-802e7bfd76f6702e3f779fc82ecda41c3019b3f3.tar.lz
android_bootable_recovery-802e7bfd76f6702e3f779fc82ecda41c3019b3f3.tar.xz
android_bootable_recovery-802e7bfd76f6702e3f779fc82ecda41c3019b3f3.tar.zst
android_bootable_recovery-802e7bfd76f6702e3f779fc82ecda41c3019b3f3.zip
Diffstat (limited to 'minui/resources.cpp')
-rw-r--r--minui/resources.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/minui/resources.cpp b/minui/resources.cpp
index 00d36d5fb..f635acd1a 100644
--- a/minui/resources.cpp
+++ b/minui/resources.cpp
@@ -199,7 +199,7 @@ int res_create_display_surface(const char* name, GRSurface** pSurface) {
}
PixelFormat pixel_format = gr_pixel_format();
- if (pixel_format == PixelFormat::ABGR || pixel_format == PixelFormat::BGRA) {
+ if (pixel_format == PixelFormat::ARGB || pixel_format == PixelFormat::BGRA) {
png_set_bgr(png_ptr);
}
@@ -271,7 +271,7 @@ int res_create_multi_display_surface(const char* name, int* frames, int* fps,
surface[i] = created_surface.release();
}
- if (gr_pixel_format() == PixelFormat::ABGR || gr_pixel_format() == PixelFormat::BGRA) {
+ if (gr_pixel_format() == PixelFormat::ARGB || gr_pixel_format() == PixelFormat::BGRA) {
png_set_bgr(png_ptr);
}
@@ -317,7 +317,7 @@ int res_create_alpha_surface(const char* name, GRSurface** pSurface) {
}
PixelFormat pixel_format = gr_pixel_format();
- if (pixel_format == PixelFormat::ABGR || pixel_format == PixelFormat::BGRA) {
+ if (pixel_format == PixelFormat::ARGB || pixel_format == PixelFormat::BGRA) {
png_set_bgr(png_ptr);
}