summaryrefslogtreecommitdiffstats
path: root/libs/hwui/font/CacheTexture.h
diff options
context:
space:
mode:
authorRomain Guy <romainguy@google.com>2012-09-04 15:22:57 -0700
committerRomain Guy <romainguy@google.com>2012-09-04 15:25:30 -0700
commit9b1204baf4740b4d443e72157dea98571cf84e1f (patch)
tree4b54be4565714748895ff253a8a86beda8e4d9f9 /libs/hwui/font/CacheTexture.h
parent9f5dab3fc228fa11c32b483e6101ec086895a32b (diff)
downloadframeworks_base-9b1204baf4740b4d443e72157dea98571cf84e1f.zip
frameworks_base-9b1204baf4740b4d443e72157dea98571cf84e1f.tar.gz
frameworks_base-9b1204baf4740b4d443e72157dea98571cf84e1f.tar.bz2
Small code cleanup in FontRenderer
Change-Id: I09c00debe9b0b4f45b232cae402ed19bdaeabfe4
Diffstat (limited to 'libs/hwui/font/CacheTexture.h')
-rw-r--r--libs/hwui/font/CacheTexture.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/libs/hwui/font/CacheTexture.h b/libs/hwui/font/CacheTexture.h
index 7840d74..8d84a6b 100644
--- a/libs/hwui/font/CacheTexture.h
+++ b/libs/hwui/font/CacheTexture.h
@@ -50,8 +50,7 @@ struct CacheBlock {
CacheBlock* mPrev;
CacheBlock(uint16_t x, uint16_t y, uint16_t width, uint16_t height, bool empty = false):
- mX(x), mY(y), mWidth(width), mHeight(height), mNext(NULL), mPrev(NULL)
- {
+ mX(x), mY(y), mWidth(width), mHeight(height), mNext(NULL), mPrev(NULL) {
}
static CacheBlock* insertBlock(CacheBlock* head, CacheBlock *newBlock);