diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2019-06-12 12:19:17 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> | 2019-06-13 01:06:39 +0200 |
commit | ff956f7dfc327b2797b5712a13ab49a851fa7c89 (patch) | |
tree | 575ad59d815fb67a8938346073564c5bc2e2a27f | |
parent | 076ca210eabe85729cea915b85fe485a06a5a8af (diff) | |
download | device_samsung_i9300-ff956f7dfc327b2797b5712a13ab49a851fa7c89.tar.gz device_samsung_i9300-ff956f7dfc327b2797b5712a13ab49a851fa7c89.tar.bz2 device_samsung_i9300-ff956f7dfc327b2797b5712a13ab49a851fa7c89.zip |
BoardConfig.mk: Add TARGET_SCREEN_* configuration
Without that we have the following during the build:
[1027/1036] including vendor/lineage/bootanimation/Android.mk ...
vendor/lineage/bootanimation/Android.mk:19: warning: TARGET_SCREEN_WIDTH is not set, using default value: 1080
vendor/lineage/bootanimation/Android.mk:23: warning: TARGET_SCREEN_HEIGHT is not set, using default value: 1920
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r-- | BoardConfig.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/BoardConfig.mk b/BoardConfig.mk index 48f0ed6..d1b2613 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -53,6 +53,9 @@ BOARD_VNDK_RUNTIME_DISABLE := true PRODUCT_USE_VNDK_OVERRIDE := false #BOARD_VNDK_VERSION := current +# Graphics +TARGET_SCREEN_WIDTH := 720 +TARGET_SCREEN_HEIGHT := 1280 TARGET_USES_HWC2 := true BOARD_USES_DRM_HWCOMPOSER := true BOARD_GPU_DRIVERS := swrast |