Add 768p and 1536p to uncommon resolutions pack (#228)

* Add 768p and 1536p to uncommon resolutions pack

1366x768, commonly known as 768p or "laptop" resolution is found on some (cheaper) laptops, monitors, and TVs.
2x resolution of 768p is 1536p. Available for downsampling perfectly to 768p for better image quality if there is enough GPU speed/for games that do not depend much on GPU power.

720p performs marginally better than 768p but delivers worse quality (due to imperfect upscaling) on 768p screens.
For 900p, it performs worse than 768p and also delivers worse quality (due to imperfect downscaling).

* Update build.sh
This commit is contained in:
Morph1984 2018-06-29 02:55:34 +07:00 committed by Michael
parent 70bd6c3e00
commit dd078640ce

View File

@ -57,6 +57,7 @@ res_540p=( "Performance" 960 540 )
res_720p219=( "Performance" 1706 720 )
res_720p489=( "Performance" 3840 720 )
res_720p=( "Performance" 1280 720 )
res_768p=( "Quality" 1366 768 )
res_900p219=( "Quality" 2100 900 )
res_900p489=( "Quality" 4800 900 )
res_900p=( "Quality" 1600 900 )
@ -66,6 +67,7 @@ res_1080p=( "Quality" 1920 1080 )
res_1440p219=( "Quality" 3440 1440 )
res_1440p489=( "Quality" 7680 1440 )
res_1440p=( "Quality" 2560 1440 )
res_1536p=( "Quality" 2732 1536 )
res_1800p219=( "Quality" 4200 1800 )
res_1800p489=( "Quality" 9600 1800 )
res_1800p=( "Quality" 3200 1800 )
@ -138,7 +140,7 @@ if [ "$buildType" = "Common" ]; then
just720p=( "720p" )
just1080p=( "1080p" )
else
res16by9=( "144p" "240p" "360p" "420p" "480p" "540p" "720p" "900p" "1080p" "1440p" "1800p" "2160p" "2880p" "4320p" "5760p" )
res16by9=( "144p" "240p" "360p" "420p" "480p" "540p" "720p" "768p" "900p" "1080p" "1440p" "1536p" "1800p" "2160p" "2880p" "4320p" "5760p" )
res21by9=( "540p219" "720p219" "900p219" "1080p219" "1440p219" "1800p219" "2160p219" "2880p219" "4320p219" "5760p219" )
res48by9=( "360p489" "480p489" "540p489" "720p489" "900p489" "1080p489" "1440p489" "1800p489" "2160p489" "2880p489" "4320p489" "5760p489" )
just720p=( "720p" )