From 7aac2979605f4811cf096f7c62d363381c68f6b2 Mon Sep 17 00:00:00 2001 From: Jeff Brown Date: Mon, 19 Sep 2011 16:17:58 -0700 Subject: [PATCH] TextLayoutCacheKey needs to store start and count. Bad merge. Change-Id: Id6507b3a7e35808a6d34501a45d79fcb7470657d --- core/jni/android/graphics/TextLayoutCache.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/jni/android/graphics/TextLayoutCache.cpp b/core/jni/android/graphics/TextLayoutCache.cpp index 640efad3127d1..e4eeec8e08b40 100644 --- a/core/jni/android/graphics/TextLayoutCache.cpp +++ b/core/jni/android/graphics/TextLayoutCache.cpp @@ -239,6 +239,8 @@ TextLayoutCacheKey::TextLayoutCacheKey(const SkPaint* paint, TextLayoutCacheKey::TextLayoutCacheKey(const TextLayoutCacheKey& other) : text(NULL), textCopy(other.textCopy), + start(other.start), + count(other.count), contextCount(other.contextCount), dirFlags(other.dirFlags), typeface(other.typeface),