Scale even smaller in bench_pictures to get things green

Over-the-shoulder review from reed@
Review URL: https://codereview.appspot.com/6512043

git-svn-id: http://skia.googlecode.com/svn/trunk@5545 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
borenet@google.com 2012-09-14 15:27:41 +00:00
Родитель 8cae8358f7
Коммит 3a8b0d8288
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -95,7 +95,7 @@ namespace sk_tools {
bool area_too_big(int w, int h, SkISize* newSize) {
// just a guess, based on what seems to fail on smaller android devices
static const int64_t kMaxAreaForMemory = 16 * 1024 * 1024;
static const int64_t kMaxAreaForMemory = 4 * 1024 * 1024;
if ((int64_t)w * h > kMaxAreaForMemory) {
do {