blob: 49e9f65582ae69a21589ebec5f04956d7f8c505f [file] [log] [blame]
Romain Guy9f5dab32012-09-04 12:55:44 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Derek Sollenbergerca79cf62012-08-14 16:44:52 -040017#include <SkGlyph.h>
Romain Guy9f5dab32012-09-04 12:55:44 -070018
Romain Guy9f5dab32012-09-04 12:55:44 -070019#include "CacheTexture.h"
Tom Hudson2dc236b2014-10-15 15:46:42 -040020#include "FontUtil.h"
Romain Guy8aa195d2013-06-04 18:00:09 -070021#include "../Caches.h"
Romain Guy09087642013-04-04 12:27:54 -070022#include "../Debug.h"
Romain Guycf51a412013-04-08 19:40:31 -070023#include "../Extensions.h"
24#include "../PixelBuffer.h"
Romain Guy9f5dab32012-09-04 12:55:44 -070025
26namespace android {
27namespace uirenderer {
28
29///////////////////////////////////////////////////////////////////////////////
30// CacheBlock
31///////////////////////////////////////////////////////////////////////////////
32
33/**
34 * Insert new block into existing linked list of blocks. Blocks are sorted in increasing-width
35 * order, except for the final block (the remainder space at the right, since we fill from the
36 * left).
37 */
Romain Guye43f7852012-09-04 18:58:46 -070038CacheBlock* CacheBlock::insertBlock(CacheBlock* head, CacheBlock* newBlock) {
Romain Guy9f5dab32012-09-04 12:55:44 -070039#if DEBUG_FONT_RENDERER
40 ALOGD("insertBlock: this, x, y, w, h = %p, %d, %d, %d, %d",
41 newBlock, newBlock->mX, newBlock->mY,
42 newBlock->mWidth, newBlock->mHeight);
43#endif
Romain Guy9b1204b2012-09-04 15:22:57 -070044
Romain Guye43f7852012-09-04 18:58:46 -070045 CacheBlock* currBlock = head;
Chris Craikd41c4d82015-01-05 15:51:13 -080046 CacheBlock* prevBlock = nullptr;
Romain Guy9b1204b2012-09-04 15:22:57 -070047
Romain Guy9f5dab32012-09-04 12:55:44 -070048 while (currBlock && currBlock->mY != TEXTURE_BORDER_SIZE) {
49 if (newBlock->mWidth < currBlock->mWidth) {
50 newBlock->mNext = currBlock;
51 newBlock->mPrev = prevBlock;
52 currBlock->mPrev = newBlock;
Romain Guy9b1204b2012-09-04 15:22:57 -070053
Romain Guy9f5dab32012-09-04 12:55:44 -070054 if (prevBlock) {
55 prevBlock->mNext = newBlock;
56 return head;
57 } else {
58 return newBlock;
59 }
60 }
Romain Guy9b1204b2012-09-04 15:22:57 -070061
Romain Guy9f5dab32012-09-04 12:55:44 -070062 prevBlock = currBlock;
63 currBlock = currBlock->mNext;
64 }
Romain Guy9b1204b2012-09-04 15:22:57 -070065
Romain Guy9f5dab32012-09-04 12:55:44 -070066 // new block larger than all others - insert at end (but before the remainder space, if there)
67 newBlock->mNext = currBlock;
68 newBlock->mPrev = prevBlock;
Romain Guy9b1204b2012-09-04 15:22:57 -070069
Romain Guy9f5dab32012-09-04 12:55:44 -070070 if (currBlock) {
71 currBlock->mPrev = newBlock;
72 }
Romain Guy9b1204b2012-09-04 15:22:57 -070073
Romain Guy9f5dab32012-09-04 12:55:44 -070074 if (prevBlock) {
75 prevBlock->mNext = newBlock;
76 return head;
77 } else {
78 return newBlock;
79 }
80}
81
Romain Guye43f7852012-09-04 18:58:46 -070082CacheBlock* CacheBlock::removeBlock(CacheBlock* head, CacheBlock* blockToRemove) {
Romain Guy9f5dab32012-09-04 12:55:44 -070083#if DEBUG_FONT_RENDERER
84 ALOGD("removeBlock: this, x, y, w, h = %p, %d, %d, %d, %d",
85 blockToRemove, blockToRemove->mX, blockToRemove->mY,
86 blockToRemove->mWidth, blockToRemove->mHeight);
87#endif
Romain Guy9b1204b2012-09-04 15:22:57 -070088
Romain Guy9f5dab32012-09-04 12:55:44 -070089 CacheBlock* newHead = head;
90 CacheBlock* nextBlock = blockToRemove->mNext;
91 CacheBlock* prevBlock = blockToRemove->mPrev;
Romain Guy9b1204b2012-09-04 15:22:57 -070092
Romain Guy9f5dab32012-09-04 12:55:44 -070093 if (prevBlock) {
94 prevBlock->mNext = nextBlock;
95 } else {
96 newHead = nextBlock;
97 }
Romain Guy9b1204b2012-09-04 15:22:57 -070098
Romain Guy9f5dab32012-09-04 12:55:44 -070099 if (nextBlock) {
100 nextBlock->mPrev = prevBlock;
101 }
Romain Guy9b1204b2012-09-04 15:22:57 -0700102
Romain Guy9f5dab32012-09-04 12:55:44 -0700103 delete blockToRemove;
Romain Guy9b1204b2012-09-04 15:22:57 -0700104
Romain Guy9f5dab32012-09-04 12:55:44 -0700105 return newHead;
106}
107
108///////////////////////////////////////////////////////////////////////////////
109// CacheTexture
110///////////////////////////////////////////////////////////////////////////////
111
Chris Craike2bb3802015-03-13 15:07:52 -0700112CacheTexture::CacheTexture(uint16_t width, uint16_t height, GLenum format, uint32_t maxQuadCount)
113 : mTexture(Caches::getInstance())
John Reck38e0c322015-11-10 12:19:17 -0800114 , mWidth(width)
115 , mHeight(height)
Chris Craike2bb3802015-03-13 15:07:52 -0700116 , mFormat(format)
117 , mMaxQuadCount(maxQuadCount)
118 , mCaches(Caches::getInstance()) {
Chris Craike2bb3802015-03-13 15:07:52 -0700119 mTexture.blend = true;
120
Romain Guy661a87e2013-03-19 15:24:36 -0700121 mCacheBlocks = new CacheBlock(TEXTURE_BORDER_SIZE, TEXTURE_BORDER_SIZE,
Chris Craike2bb3802015-03-13 15:07:52 -0700122 getWidth() - TEXTURE_BORDER_SIZE, getHeight() - TEXTURE_BORDER_SIZE);
Romain Guycf51a412013-04-08 19:40:31 -0700123
124 // OpenGL ES 3.0+ lets us specify the row length for unpack operations such
125 // as glTexSubImage2D(). This allows us to upload a sub-rectangle of a texture.
126 // With OpenGL ES 2.0 we have to upload entire stripes instead.
Chris Craik117bdbc2015-02-05 10:12:38 -0800127 mHasUnpackRowLength = mCaches.extensions().hasUnpackRowLength();
Romain Guy661a87e2013-03-19 15:24:36 -0700128}
129
130CacheTexture::~CacheTexture() {
131 releaseMesh();
Chris Craike2bb3802015-03-13 15:07:52 -0700132 releasePixelBuffer();
Romain Guy661a87e2013-03-19 15:24:36 -0700133 reset();
134}
135
136void CacheTexture::reset() {
137 // Delete existing cache blocks
Chris Craikd41c4d82015-01-05 15:51:13 -0800138 while (mCacheBlocks != nullptr) {
Romain Guy661a87e2013-03-19 15:24:36 -0700139 CacheBlock* tmpBlock = mCacheBlocks;
140 mCacheBlocks = mCacheBlocks->mNext;
141 delete tmpBlock;
142 }
143 mNumGlyphs = 0;
144 mCurrentQuad = 0;
145}
146
147void CacheTexture::init() {
148 // reset, then create a new remainder space to start again
149 reset();
150 mCacheBlocks = new CacheBlock(TEXTURE_BORDER_SIZE, TEXTURE_BORDER_SIZE,
Chris Craike2bb3802015-03-13 15:07:52 -0700151 getWidth() - TEXTURE_BORDER_SIZE, getHeight() - TEXTURE_BORDER_SIZE);
Romain Guy661a87e2013-03-19 15:24:36 -0700152}
153
154void CacheTexture::releaseMesh() {
155 delete[] mMesh;
156}
157
Chris Craike2bb3802015-03-13 15:07:52 -0700158void CacheTexture::releasePixelBuffer() {
159 if (mPixelBuffer) {
160 delete mPixelBuffer;
161 mPixelBuffer = nullptr;
Romain Guy661a87e2013-03-19 15:24:36 -0700162 }
John Reck38e0c322015-11-10 12:19:17 -0800163 mTexture.deleteTexture();
Romain Guy661a87e2013-03-19 15:24:36 -0700164 mDirty = false;
165 mCurrentQuad = 0;
166}
167
Chris Craike2bb3802015-03-13 15:07:52 -0700168void CacheTexture::setLinearFiltering(bool linearFiltering) {
169 mTexture.setFilter(linearFiltering ? GL_LINEAR : GL_NEAREST);
Romain Guycf51a412013-04-08 19:40:31 -0700170}
171
Romain Guy661a87e2013-03-19 15:24:36 -0700172void CacheTexture::allocateMesh() {
173 if (!mMesh) {
174 mMesh = new TextureVertex[mMaxQuadCount * 4];
175 }
176}
177
Chris Craike2bb3802015-03-13 15:07:52 -0700178void CacheTexture::allocatePixelBuffer() {
179 if (!mPixelBuffer) {
180 mPixelBuffer = PixelBuffer::create(mFormat, getWidth(), getHeight());
Romain Guy661a87e2013-03-19 15:24:36 -0700181 }
182
John Reck38e0c322015-11-10 12:19:17 -0800183 mTexture.resize(mWidth, mHeight, mFormat);
184 mTexture.setFilter(getLinearFiltering() ? GL_LINEAR : GL_NEAREST);
185 mTexture.setWrap(GL_CLAMP_TO_EDGE);
Romain Guy661a87e2013-03-19 15:24:36 -0700186}
187
Romain Guycf51a412013-04-08 19:40:31 -0700188bool CacheTexture::upload() {
189 const Rect& dirtyRect = mDirtyRect;
190
ywen229cad02016-02-15 16:09:40 +0800191 // align the x direction to 32 and y direction to 4 for better performance
192 uint32_t x = (((uint32_t)dirtyRect.left) & (~0x1F));
193 uint32_t y = (((uint32_t)dirtyRect.top) & (~0x3));
194 uint32_t r = ((((uint32_t)dirtyRect.right) + 0x1F) & (~0x1F)) - x;
195 uint32_t b = ((((uint32_t)dirtyRect.bottom) + 0x3) & (~0x3)) - y;
196 uint32_t width = (r > getWidth() ? getWidth() : r);
197 uint32_t height = (b > getHeight() ? getHeight() : b);
Romain Guycf51a412013-04-08 19:40:31 -0700198
199 // The unpack row length only needs to be specified when a new
200 // texture is bound
Romain Guy318ae7b2013-09-24 18:44:54 -0700201 if (mHasUnpackRowLength) {
Chris Craike2bb3802015-03-13 15:07:52 -0700202 glPixelStorei(GL_UNPACK_ROW_LENGTH, getWidth());
ywen229cad02016-02-15 16:09:40 +0800203 } else {
204 x = 0;
205 width = getWidth();
Romain Guycf51a412013-04-08 19:40:31 -0700206 }
207
Chris Craike2bb3802015-03-13 15:07:52 -0700208 mPixelBuffer->upload(x, y, width, height);
Romain Guycf51a412013-04-08 19:40:31 -0700209 setDirty(false);
210
Romain Guy318ae7b2013-09-24 18:44:54 -0700211 return mHasUnpackRowLength;
Romain Guycf51a412013-04-08 19:40:31 -0700212}
213
214void CacheTexture::setDirty(bool dirty) {
215 mDirty = dirty;
216 if (!dirty) {
217 mDirtyRect.setEmpty();
218 }
219}
220
Romain Guye43f7852012-09-04 18:58:46 -0700221bool CacheTexture::fitBitmap(const SkGlyph& glyph, uint32_t* retOriginX, uint32_t* retOriginY) {
Victoria Lease1e546812013-06-25 14:25:17 -0700222 switch (glyph.fMaskFormat) {
223 case SkMask::kA8_Format:
Victoria Lease723b2fe2013-08-12 14:38:44 -0700224 case SkMask::kBW_Format:
Victoria Lease1e546812013-06-25 14:25:17 -0700225 if (mFormat != GL_ALPHA) {
226#if DEBUG_FONT_RENDERER
Victoria Lease723b2fe2013-08-12 14:38:44 -0700227 ALOGD("fitBitmap: texture format %x is inappropriate for monochromatic glyphs",
228 mFormat);
Victoria Lease1e546812013-06-25 14:25:17 -0700229#endif
230 return false;
231 }
232 break;
233 case SkMask::kARGB32_Format:
234 if (mFormat != GL_RGBA) {
235#if DEBUG_FONT_RENDERER
Victoria Lease723b2fe2013-08-12 14:38:44 -0700236 ALOGD("fitBitmap: texture format %x is inappropriate for colour glyphs", mFormat);
Victoria Lease1e546812013-06-25 14:25:17 -0700237#endif
238 return false;
239 }
240 break;
241 default:
242#if DEBUG_FONT_RENDERER
243 ALOGD("fitBitmap: unknown glyph format %x encountered", glyph.fMaskFormat);
244#endif
245 return false;
246 }
247
Chris Craike2bb3802015-03-13 15:07:52 -0700248 if (glyph.fHeight + TEXTURE_BORDER_SIZE * 2 > getHeight()) {
Romain Guy9f5dab32012-09-04 12:55:44 -0700249 return false;
250 }
251
252 uint16_t glyphW = glyph.fWidth + TEXTURE_BORDER_SIZE;
253 uint16_t glyphH = glyph.fHeight + TEXTURE_BORDER_SIZE;
Romain Guy9b1204b2012-09-04 15:22:57 -0700254
Romain Guy9f5dab32012-09-04 12:55:44 -0700255 // roundedUpW equals glyphW to the next multiple of CACHE_BLOCK_ROUNDING_SIZE.
256 // This columns for glyphs that are close but not necessarily exactly the same size. It trades
257 // off the loss of a few pixels for some glyphs against the ability to store more glyphs
258 // of varying sizes in one block.
Romain Guye43f7852012-09-04 18:58:46 -0700259 uint16_t roundedUpW = (glyphW + CACHE_BLOCK_ROUNDING_SIZE - 1) & -CACHE_BLOCK_ROUNDING_SIZE;
Romain Guy9b1204b2012-09-04 15:22:57 -0700260
Romain Guye43f7852012-09-04 18:58:46 -0700261 CacheBlock* cacheBlock = mCacheBlocks;
Romain Guy9f5dab32012-09-04 12:55:44 -0700262 while (cacheBlock) {
263 // Store glyph in this block iff: it fits the block's remaining space and:
264 // it's the remainder space (mY == 0) or there's only enough height for this one glyph
265 // or it's within ROUNDING_SIZE of the block width
266 if (roundedUpW <= cacheBlock->mWidth && glyphH <= cacheBlock->mHeight &&
267 (cacheBlock->mY == TEXTURE_BORDER_SIZE ||
268 (cacheBlock->mWidth - roundedUpW < CACHE_BLOCK_ROUNDING_SIZE))) {
269 if (cacheBlock->mHeight - glyphH < glyphH) {
270 // Only enough space for this glyph - don't bother rounding up the width
271 roundedUpW = glyphW;
272 }
Romain Guy9b1204b2012-09-04 15:22:57 -0700273
Romain Guy9f5dab32012-09-04 12:55:44 -0700274 *retOriginX = cacheBlock->mX;
275 *retOriginY = cacheBlock->mY;
Romain Guy9b1204b2012-09-04 15:22:57 -0700276
Romain Guy9f5dab32012-09-04 12:55:44 -0700277 // If this is the remainder space, create a new cache block for this column. Otherwise,
278 // adjust the info about this column.
279 if (cacheBlock->mY == TEXTURE_BORDER_SIZE) {
280 uint16_t oldX = cacheBlock->mX;
281 // Adjust remainder space dimensions
282 cacheBlock->mWidth -= roundedUpW;
283 cacheBlock->mX += roundedUpW;
Romain Guy9b1204b2012-09-04 15:22:57 -0700284
Chris Craike2bb3802015-03-13 15:07:52 -0700285 if (getHeight() - glyphH >= glyphH) {
Romain Guy9f5dab32012-09-04 12:55:44 -0700286 // There's enough height left over to create a new CacheBlock
Romain Guye43f7852012-09-04 18:58:46 -0700287 CacheBlock* newBlock = new CacheBlock(oldX, glyphH + TEXTURE_BORDER_SIZE,
Chris Craike2bb3802015-03-13 15:07:52 -0700288 roundedUpW, getHeight() - glyphH - TEXTURE_BORDER_SIZE);
Romain Guy9f5dab32012-09-04 12:55:44 -0700289#if DEBUG_FONT_RENDERER
290 ALOGD("fitBitmap: Created new block: this, x, y, w, h = %p, %d, %d, %d, %d",
291 newBlock, newBlock->mX, newBlock->mY,
292 newBlock->mWidth, newBlock->mHeight);
293#endif
294 mCacheBlocks = CacheBlock::insertBlock(mCacheBlocks, newBlock);
295 }
296 } else {
297 // Insert into current column and adjust column dimensions
298 cacheBlock->mY += glyphH;
299 cacheBlock->mHeight -= glyphH;
300#if DEBUG_FONT_RENDERER
301 ALOGD("fitBitmap: Added to existing block: this, x, y, w, h = %p, %d, %d, %d, %d",
302 cacheBlock, cacheBlock->mX, cacheBlock->mY,
303 cacheBlock->mWidth, cacheBlock->mHeight);
304#endif
305 }
Romain Guy9b1204b2012-09-04 15:22:57 -0700306
Chris Craike6a15ee2015-07-07 18:42:17 -0700307 if (cacheBlock->mHeight < std::min(glyphH, glyphW)) {
Romain Guy9f5dab32012-09-04 12:55:44 -0700308 // If remaining space in this block is too small to be useful, remove it
309 mCacheBlocks = CacheBlock::removeBlock(mCacheBlocks, cacheBlock);
310 }
Romain Guy9b1204b2012-09-04 15:22:57 -0700311
Romain Guy9f5dab32012-09-04 12:55:44 -0700312 mDirty = true;
Chet Haaseb92d8f72012-09-21 08:40:46 -0700313 const Rect r(*retOriginX - TEXTURE_BORDER_SIZE, *retOriginY - TEXTURE_BORDER_SIZE,
314 *retOriginX + glyphW, *retOriginY + glyphH);
315 mDirtyRect.unionWith(r);
Romain Guy9b1204b2012-09-04 15:22:57 -0700316 mNumGlyphs++;
317
Romain Guy9f5dab32012-09-04 12:55:44 -0700318#if DEBUG_FONT_RENDERER
319 ALOGD("fitBitmap: current block list:");
320 mCacheBlocks->output();
321#endif
Romain Guy9b1204b2012-09-04 15:22:57 -0700322
Romain Guy9f5dab32012-09-04 12:55:44 -0700323 return true;
324 }
325 cacheBlock = cacheBlock->mNext;
326 }
327#if DEBUG_FONT_RENDERER
328 ALOGD("fitBitmap: returning false for glyph of size %d, %d", glyphW, glyphH);
329#endif
330 return false;
331}
332
sergeyvbaf29e72016-09-08 11:09:34 -0700333uint32_t CacheTexture::calculateFreeMemory() const {
334 CacheBlock* cacheBlock = mCacheBlocks;
335 uint32_t free = 0;
336 // currently only two formats are supported: GL_ALPHA or GL_RGBA;
337 uint32_t bpp = mFormat == GL_RGBA ? 4 : 1;
338 while (cacheBlock) {
339 free += bpp * cacheBlock->mWidth * cacheBlock->mHeight;
340 cacheBlock = cacheBlock->mNext;
341 }
342 return free;
343}
344
Romain Guy9f5dab32012-09-04 12:55:44 -0700345}; // namespace uirenderer
346}; // namespace android