From cd56f8cb29821430c72ae5f753bf88a3b500b2cd Mon Sep 17 00:00:00 2001 From: xNUTx Date: Wed, 23 Jul 2014 01:30:20 +0200 Subject: TW_SCREEN_BLANK_ON_BOOT will jolt the screen/touch driver. If on the default settings the screen will only kick in to action AFTER it has gone to sleep once and has been woken up again with a key press, this will be needed to set to 'true' in the BoardConfig.mk The code was already there, Dees_Troy and I thought it would be nice to make it a switch to control at compile time. Change-Id: I5116a27afe9cba57122761c192ea3ee153d98162 --- minuitwrp/Android.mk | 3 +++ minuitwrp/graphics.c | 7 +++++-- 2 files changed, 8 insertions(+), 2 deletions(-) (limited to 'minuitwrp') diff --git a/minuitwrp/Android.mk b/minuitwrp/Android.mk index d953ce719..59ee8ba56 100644 --- a/minuitwrp/Android.mk +++ b/minuitwrp/Android.mk @@ -69,6 +69,9 @@ endif ifeq ($(TARGET_RECOVERY_PIXEL_FORMAT),"RGB_565") LOCAL_CFLAGS += -DRECOVERY_RGB_565 endif +ifeq ($(TW_SCREEN_BLANK_ON_BOOT), true) + LOCAL_CFLAGS += -DTW_SCREEN_BLANK_ON_BOOT +endif ifeq ($(BOARD_HAS_FLIPPED_SCREEN), true) LOCAL_CFLAGS += -DBOARD_HAS_FLIPPED_SCREEN diff --git a/minuitwrp/graphics.c b/minuitwrp/graphics.c index 11446409c..79b1e9aa5 100644 --- a/minuitwrp/graphics.c +++ b/minuitwrp/graphics.c @@ -789,8 +789,11 @@ int gr_init(void) gl->enable(gl, GGL_BLEND); gl->blendFunc(gl, GGL_SRC_ALPHA, GGL_ONE_MINUS_SRC_ALPHA); -// gr_fb_blank(true); -// gr_fb_blank(false); +#ifdef TW_SCREEN_BLANK_ON_BOOT + printf("TW_SCREEN_BLANK_ON_BOOT := true\n"); + gr_fb_blank(true); + gr_fb_blank(false); +#endif if (!alloc_ion_mem(fi.line_length * vi.yres)) allocate_overlay(gr_fb_fd, gr_framebuffer); -- cgit v1.2.3