Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(687)

Side by Side Diff: src/core/SkGlyphCache_Globals.h

Issue 25118003: try uping the cache-count-limit to see if it speeds up bench-pictures (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2010 Google Inc. 2 * Copyright 2010 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkGlyphCache_Globals_DEFINED 8 #ifndef SkGlyphCache_Globals_DEFINED
9 #define SkGlyphCache_Globals_DEFINED 9 #define SkGlyphCache_Globals_DEFINED
10 10
11 #include "SkGlyphCache.h" 11 #include "SkGlyphCache.h"
12 #include "SkTLS.h" 12 #include "SkTLS.h"
13 13
14 #ifndef SK_DEFAULT_FONT_CACHE_COUNT_LIMIT 14 #ifndef SK_DEFAULT_FONT_CACHE_COUNT_LIMIT
15 #define SK_DEFAULT_FONT_CACHE_COUNT_LIMIT 256 15 #define SK_DEFAULT_FONT_CACHE_COUNT_LIMIT 2048
16 #endif 16 #endif
17 17
18 #ifndef SK_DEFAULT_FONT_CACHE_LIMIT 18 #ifndef SK_DEFAULT_FONT_CACHE_LIMIT
19 #define SK_DEFAULT_FONT_CACHE_LIMIT (2 * 1024 * 1024) 19 #define SK_DEFAULT_FONT_CACHE_LIMIT (2 * 1024 * 1024)
20 #endif 20 #endif
21 21
22 /////////////////////////////////////////////////////////////////////////////// 22 ///////////////////////////////////////////////////////////////////////////////
23 23
24 class SkMutex; 24 class SkMutex;
25 25
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 static void* CreateTLS() { 113 static void* CreateTLS() {
114 return SkNEW_ARGS(SkGlyphCache_Globals, (kNo_UseMutex)); 114 return SkNEW_ARGS(SkGlyphCache_Globals, (kNo_UseMutex));
115 } 115 }
116 116
117 static void DeleteTLS(void* ptr) { 117 static void DeleteTLS(void* ptr) {
118 SkDELETE((SkGlyphCache_Globals*)ptr); 118 SkDELETE((SkGlyphCache_Globals*)ptr);
119 } 119 }
120 }; 120 };
121 121
122 #endif 122 #endif
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698