apq8084: Update LCD density setting for APQ8084 MTP and Liquid

Update LCD density on Liquid to 320 and MTP to 480
based on UX profiling and Jank analysis

CRs-fixed: 612032
Change-Id: I1d2ee7671b7fd388967087df4f4bf8711f010478
This commit is contained in:
Vijay Ganti 2014-02-12 13:06:42 -08:00
parent 54b0cdab19
commit e47e385274
2 changed files with 4 additions and 4 deletions

View File

@ -49,13 +49,13 @@ void init_msm_properties(unsigned long msm_id, unsigned long msm_ver, char *boar
return;
if (ISMATCH(board_type, "Liquid")) {
property_set(PROP_LCDDENSITY, "293");
property_set(PROP_LCDDENSITY, "320");
/* Liquid do not have hardware navigation keys, so enable
Android sw navigation bar
*/
property_set(PROP_QEMU_NAVKEY, "0");
}
else {
property_set(PROP_LCDDENSITY, "440");
property_set(PROP_LCDDENSITY, "480");
}
}

View File

@ -150,13 +150,13 @@ case "$1" in
"apq8084")
case "$soc_hwplatform" in
"Liquid")
setprop ro.sf.lcd_density 293
setprop ro.sf.lcd_density 320
# Liquid do not have hardware navigation keys, so enable
# Android sw navigation bar
setprop ro.hw.nav_keys 0
;;
*)
setprop ro.sf.lcd_density 440
setprop ro.sf.lcd_density 480
;;
esac
;;