speculative change to speedup blurrect bench for large radius, to see if the bots are timing out

git-svn-id: http://skia.googlecode.com/svn/trunk@7098 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
mike@reedtribe.org 2013-01-09 00:59:11 +00:00
Родитель 57585fa2c4
Коммит 732fbee1cb
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -51,8 +51,8 @@ protected:
int loop_count;
if (fRadius > SkIntToScalar(50)) {
loop_count = 10;
if (fRadius > SkIntToScalar(25)) {
loop_count = 100;
} else if (fRadius > SkIntToScalar(5)) {
loop_count = 1000;
} else {