diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-13 01:41:17 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-13 01:41:17 +0000 |
commit | 94124a943ac247a8e095a1dc2dfca6d80c08ef56 (patch) | |
tree | f654a2bfe040c4d1cfcb3f5a5bd9f3e2e7188518 /skia/skia_library.gypi | |
parent | feae55133fa55f9a25ef6c7aeae92ad5b16f726c (diff) | |
download | chromium_src-94124a943ac247a8e095a1dc2dfca6d80c08ef56.zip chromium_src-94124a943ac247a8e095a1dc2dfca6d80c08ef56.tar.gz chromium_src-94124a943ac247a8e095a1dc2dfca6d80c08ef56.tar.bz2 |
Try a different arbitrary SkGlyphCache cap (64 -> 256)
We're hitting a lot of crashes in skia::CreateCanvas that may be due to GDI
handle exhaustion. This picks a different arbitrary limit for the number
of entries in this cache to try to see if the crashes are correlated. Changing
this cap from 2048->64 was perf neutral on the bots, so 64->256 is also
expected to be neutral.
TBR=reed
NOTRY=true
BUG=275046,314387
Review URL: https://codereview.chromium.org/71043002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234702 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/skia_library.gypi')
-rw-r--r-- | skia/skia_library.gypi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skia/skia_library.gypi b/skia/skia_library.gypi index 34a4f3d..d10d231 100644 --- a/skia/skia_library.gypi +++ b/skia/skia_library.gypi @@ -441,7 +441,7 @@ 'SK_DEFAULT_FONT_CACHE_LIMIT=<(default_font_cache_limit)', # http://crbug.com/314387 - 'SK_DEFAULT_FONT_CACHE_COUNT_LIMIT=64', + 'SK_DEFAULT_FONT_CACHE_COUNT_LIMIT=256', ], 'direct_dependent_settings': { |