diff options
author | Romain Guy <romainguy@google.com> | 2012-03-26 16:45:05 -0700 |
---|---|---|
committer | Romain Guy <romainguy@google.com> | 2012-03-26 16:45:05 -0700 |
commit | 6554943a1dd6854c0f4976900956e556767b49e1 (patch) | |
tree | 82d43bbb28af4feeb6c358077ac1083ca3598e7b /libs/hwui/FontRenderer.cpp | |
parent | a9dd820184ee4d083bd9b2af735dcf50b78fc6cd (diff) | |
download | frameworks_base-6554943a1dd6854c0f4976900956e556767b49e1.zip frameworks_base-6554943a1dd6854c0f4976900956e556767b49e1.tar.gz frameworks_base-6554943a1dd6854c0f4976900956e556767b49e1.tar.bz2 |
Use a status_t return type for GL functors
WebView needs more fine-grained control over the behavior of the
framework upon execution of the display lists. The new status_t
allows WebView to requests its functor to be re-executed directly
without causing a redraw of the entire hierarchy.
Change-Id: I97a8141dc5c6eeb6805b6024cc1e76fce07d24cc
Diffstat (limited to 'libs/hwui/FontRenderer.cpp')
-rw-r--r-- | libs/hwui/FontRenderer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/FontRenderer.cpp b/libs/hwui/FontRenderer.cpp index 493dc1b..9e7fbb5 100644 --- a/libs/hwui/FontRenderer.cpp +++ b/libs/hwui/FontRenderer.cpp @@ -779,7 +779,7 @@ void FontRenderer::checkInit() { // We store a string with letters in a rough frequency of occurrence mLatinPrecache = String16("eisarntolcdugpmhbyfvkwzxjq "); mLatinPrecache += String16("EISARNTOLCDUGPMHBYFVKWZXJQ"); - mLatinPrecache += String16(",.?!()-+@;:`'"); + mLatinPrecache += String16(",.?!()-+@;:'"); mLatinPrecache += String16("0123456789"); mInitialized = true; |