blob: a160cb593eeb47f8388fd57e199c2a4a100e7eb5 [file] [log] [blame]
joshualitt259fbf12015-07-21 11:39:34 -07001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "GrAtlasTextBlob.h"
9
joshualitt2e2202e2015-12-10 11:22:08 -080010#include "GrBlurUtils.h"
11#include "GrContext.h"
Brian Osman11052242016-10-27 14:47:55 -040012#include "GrRenderTargetContext.h"
bsalomonbb243832016-07-22 07:10:19 -070013#include "GrPipelineBuilder.h"
joshualitt0a42e682015-12-10 13:20:58 -080014#include "GrTextUtils.h"
joshualitt2e2202e2015-12-10 11:22:08 -080015#include "SkColorFilter.h"
16#include "SkDrawFilter.h"
joshualitte76b4bb2015-12-28 07:23:58 -080017#include "SkGlyphCache.h"
joshualitt2e2202e2015-12-10 11:22:08 -080018#include "SkTextBlobRunIterator.h"
19#include "batches/GrAtlasTextBatch.h"
20
joshualitt92303772016-02-10 11:55:52 -080021GrAtlasTextBlob* GrAtlasTextBlob::Create(GrMemoryPool* pool, int glyphCount, int runCount) {
22 // We allocate size for the GrAtlasTextBlob itself, plus size for the vertices array,
23 // and size for the glyphIds array.
24 size_t verticesCount = glyphCount * kVerticesPerGlyph * kMaxVASize;
25 size_t size = sizeof(GrAtlasTextBlob) +
26 verticesCount +
27 glyphCount * sizeof(GrGlyph**) +
28 sizeof(GrAtlasTextBlob::Run) * runCount;
29
30 void* allocation = pool->allocate(size);
31 if (CACHE_SANITY_CHECK) {
32 sk_bzero(allocation, size);
33 }
34
35 GrAtlasTextBlob* cacheBlob = new (allocation) GrAtlasTextBlob;
36 cacheBlob->fSize = size;
37
38 // setup offsets for vertices / glyphs
39 cacheBlob->fVertices = sizeof(GrAtlasTextBlob) + reinterpret_cast<unsigned char*>(cacheBlob);
40 cacheBlob->fGlyphs = reinterpret_cast<GrGlyph**>(cacheBlob->fVertices + verticesCount);
41 cacheBlob->fRuns = reinterpret_cast<GrAtlasTextBlob::Run*>(cacheBlob->fGlyphs + glyphCount);
42
43 // Initialize runs
44 for (int i = 0; i < runCount; i++) {
45 new (&cacheBlob->fRuns[i]) GrAtlasTextBlob::Run;
46 }
47 cacheBlob->fRunCount = runCount;
48 cacheBlob->fPool = pool;
49 return cacheBlob;
50}
51
joshualitte76b4bb2015-12-28 07:23:58 -080052SkGlyphCache* GrAtlasTextBlob::setupCache(int runIndex,
53 const SkSurfaceProps& props,
brianosmana1e8f8d2016-04-08 06:47:54 -070054 uint32_t scalerContextFlags,
joshualitte76b4bb2015-12-28 07:23:58 -080055 const SkPaint& skPaint,
bungemanf6d1e602016-02-22 13:20:28 -080056 const SkMatrix* viewMatrix) {
joshualitte76b4bb2015-12-28 07:23:58 -080057 GrAtlasTextBlob::Run* run = &fRuns[runIndex];
58
59 // if we have an override descriptor for the run, then we should use that
60 SkAutoDescriptor* desc = run->fOverrideDescriptor.get() ? run->fOverrideDescriptor.get() :
61 &run->fDescriptor;
bsalomon8b6fa5e2016-05-19 16:23:47 -070062 SkScalerContextEffects effects;
63 skPaint.getScalerContextDescriptor(&effects, desc, props, scalerContextFlags, viewMatrix);
joshualitte76b4bb2015-12-28 07:23:58 -080064 run->fTypeface.reset(SkSafeRef(skPaint.getTypeface()));
bsalomon8b6fa5e2016-05-19 16:23:47 -070065 run->fPathEffect = sk_ref_sp(effects.fPathEffect);
66 run->fRasterizer = sk_ref_sp(effects.fRasterizer);
67 run->fMaskFilter = sk_ref_sp(effects.fMaskFilter);
Hal Canary144caf52016-11-07 17:57:18 -050068 return SkGlyphCache::DetachCache(run->fTypeface.get(), effects, desc->getDesc());
joshualitte76b4bb2015-12-28 07:23:58 -080069}
70
joshualittf528e0d2015-12-09 06:42:52 -080071void GrAtlasTextBlob::appendGlyph(int runIndex,
72 const SkRect& positions,
73 GrColor color,
74 GrBatchTextStrike* strike,
joshualitta06e6ab2015-12-10 08:54:41 -080075 GrGlyph* glyph,
bsalomonc2878e22016-05-17 13:18:03 -070076 SkGlyphCache* cache, const SkGlyph& skGlyph,
Jim Van Verth08576e62016-11-16 10:15:23 -050077 SkScalar x, SkScalar y, SkScalar scale, bool treatAsBMP) {
joshualitta06e6ab2015-12-10 08:54:41 -080078
79 // If the glyph is too large we fall back to paths
80 if (glyph->fTooLargeForAtlas) {
Jim Van Verth08576e62016-11-16 10:15:23 -050081 this->appendLargeGlyph(glyph, cache, skGlyph, x, y, scale, treatAsBMP);
joshualitta06e6ab2015-12-10 08:54:41 -080082 return;
83 }
84
joshualittf528e0d2015-12-09 06:42:52 -080085 Run& run = fRuns[runIndex];
86 GrMaskFormat format = glyph->fMaskFormat;
87
88 Run::SubRunInfo* subRun = &run.fSubRunInfo.back();
89 if (run.fInitialized && subRun->maskFormat() != format) {
90 subRun = &run.push_back();
91 subRun->setStrike(strike);
92 } else if (!run.fInitialized) {
93 subRun->setStrike(strike);
94 }
95
96 run.fInitialized = true;
97
98 size_t vertexStride = GetVertexStride(format);
99
100 subRun->setMaskFormat(format);
101
joshualitt7481e752016-01-22 06:08:48 -0800102 subRun->joinGlyphBounds(positions);
joshualittf9e658b2015-12-09 09:26:44 -0800103 subRun->setColor(color);
joshualitt18b072d2015-12-07 12:26:12 -0800104
105 intptr_t vertex = reinterpret_cast<intptr_t>(this->fVertices + subRun->vertexEndIndex());
106
joshualittf528e0d2015-12-09 06:42:52 -0800107 if (kARGB_GrMaskFormat != glyph->fMaskFormat) {
joshualitt18b072d2015-12-07 12:26:12 -0800108 // V0
109 SkPoint* position = reinterpret_cast<SkPoint*>(vertex);
110 position->set(positions.fLeft, positions.fTop);
111 SkColor* colorPtr = reinterpret_cast<SkColor*>(vertex + sizeof(SkPoint));
112 *colorPtr = color;
113 vertex += vertexStride;
114
115 // V1
116 position = reinterpret_cast<SkPoint*>(vertex);
117 position->set(positions.fLeft, positions.fBottom);
118 colorPtr = reinterpret_cast<SkColor*>(vertex + sizeof(SkPoint));
119 *colorPtr = color;
120 vertex += vertexStride;
121
122 // V2
123 position = reinterpret_cast<SkPoint*>(vertex);
124 position->set(positions.fRight, positions.fBottom);
125 colorPtr = reinterpret_cast<SkColor*>(vertex + sizeof(SkPoint));
126 *colorPtr = color;
127 vertex += vertexStride;
128
129 // V3
130 position = reinterpret_cast<SkPoint*>(vertex);
131 position->set(positions.fRight, positions.fTop);
132 colorPtr = reinterpret_cast<SkColor*>(vertex + sizeof(SkPoint));
133 *colorPtr = color;
134 } else {
135 // V0
136 SkPoint* position = reinterpret_cast<SkPoint*>(vertex);
137 position->set(positions.fLeft, positions.fTop);
138 vertex += vertexStride;
139
140 // V1
141 position = reinterpret_cast<SkPoint*>(vertex);
142 position->set(positions.fLeft, positions.fBottom);
143 vertex += vertexStride;
144
145 // V2
146 position = reinterpret_cast<SkPoint*>(vertex);
147 position->set(positions.fRight, positions.fBottom);
148 vertex += vertexStride;
149
150 // V3
151 position = reinterpret_cast<SkPoint*>(vertex);
152 position->set(positions.fRight, positions.fTop);
153 }
154 subRun->appendVertices(vertexStride);
155 fGlyphs[subRun->glyphEndIndex()] = glyph;
156 subRun->glyphAppended();
157}
158
bsalomonc2878e22016-05-17 13:18:03 -0700159void GrAtlasTextBlob::appendLargeGlyph(GrGlyph* glyph, SkGlyphCache* cache, const SkGlyph& skGlyph,
Jim Van Verth08576e62016-11-16 10:15:23 -0500160 SkScalar x, SkScalar y, SkScalar scale, bool treatAsBMP) {
joshualitta06e6ab2015-12-10 08:54:41 -0800161 if (nullptr == glyph->fPath) {
bsalomonc2878e22016-05-17 13:18:03 -0700162 const SkPath* glyphPath = cache->findPath(skGlyph);
joshualitta06e6ab2015-12-10 08:54:41 -0800163 if (!glyphPath) {
164 return;
165 }
166
167 glyph->fPath = new SkPath(*glyphPath);
168 }
Jim Van Verth08576e62016-11-16 10:15:23 -0500169 fBigGlyphs.push_back(GrAtlasTextBlob::BigGlyph(*glyph->fPath, x, y, scale, treatAsBMP));
joshualitta06e6ab2015-12-10 08:54:41 -0800170}
171
joshualitt8e0ef292016-02-19 14:13:03 -0800172bool GrAtlasTextBlob::mustRegenerate(const SkPaint& paint,
joshualittfd5f6c12015-12-10 07:44:50 -0800173 GrColor color, const SkMaskFilter::BlurRec& blurRec,
174 const SkMatrix& viewMatrix, SkScalar x, SkScalar y) {
175 // If we have LCD text then our canonical color will be set to transparent, in this case we have
176 // to regenerate the blob on any color change
177 // We use the grPaint to get any color filter effects
178 if (fKey.fCanonicalColor == SK_ColorTRANSPARENT &&
179 fPaintColor != color) {
180 return true;
181 }
182
joshualitt8e0ef292016-02-19 14:13:03 -0800183 if (fInitialViewMatrix.hasPerspective() != viewMatrix.hasPerspective()) {
joshualittfd5f6c12015-12-10 07:44:50 -0800184 return true;
185 }
186
joshualitt8e0ef292016-02-19 14:13:03 -0800187 if (fInitialViewMatrix.hasPerspective() && !fInitialViewMatrix.cheapEqualTo(viewMatrix)) {
joshualittfd5f6c12015-12-10 07:44:50 -0800188 return true;
189 }
190
191 // We only cache one masked version
192 if (fKey.fHasBlur &&
193 (fBlurRec.fSigma != blurRec.fSigma ||
194 fBlurRec.fStyle != blurRec.fStyle ||
195 fBlurRec.fQuality != blurRec.fQuality)) {
196 return true;
197 }
198
199 // Similarly, we only cache one version for each style
200 if (fKey.fStyle != SkPaint::kFill_Style &&
201 (fStrokeInfo.fFrameWidth != paint.getStrokeWidth() ||
202 fStrokeInfo.fMiterLimit != paint.getStrokeMiter() ||
203 fStrokeInfo.fJoin != paint.getStrokeJoin())) {
204 return true;
205 }
206
207 // Mixed blobs must be regenerated. We could probably figure out a way to do integer scrolls
208 // for mixed blobs if this becomes an issue.
209 if (this->hasBitmap() && this->hasDistanceField()) {
210 // Identical viewmatrices and we can reuse in all cases
joshualitt8e0ef292016-02-19 14:13:03 -0800211 if (fInitialViewMatrix.cheapEqualTo(viewMatrix) && x == fInitialX && y == fInitialY) {
joshualittfd5f6c12015-12-10 07:44:50 -0800212 return false;
213 }
214 return true;
215 }
216
217 if (this->hasBitmap()) {
joshualitt8e0ef292016-02-19 14:13:03 -0800218 if (fInitialViewMatrix.getScaleX() != viewMatrix.getScaleX() ||
219 fInitialViewMatrix.getScaleY() != viewMatrix.getScaleY() ||
220 fInitialViewMatrix.getSkewX() != viewMatrix.getSkewX() ||
221 fInitialViewMatrix.getSkewY() != viewMatrix.getSkewY()) {
joshualittfd5f6c12015-12-10 07:44:50 -0800222 return true;
223 }
224
225 // We can update the positions in the cachedtextblobs without regenerating the whole blob,
226 // but only for integer translations.
227 // This cool bit of math will determine the necessary translation to apply to the already
228 // generated vertex coordinates to move them to the correct position
229 SkScalar transX = viewMatrix.getTranslateX() +
joshualitt8e0ef292016-02-19 14:13:03 -0800230 viewMatrix.getScaleX() * (x - fInitialX) +
231 viewMatrix.getSkewX() * (y - fInitialY) -
232 fInitialViewMatrix.getTranslateX();
joshualittfd5f6c12015-12-10 07:44:50 -0800233 SkScalar transY = viewMatrix.getTranslateY() +
joshualitt8e0ef292016-02-19 14:13:03 -0800234 viewMatrix.getSkewY() * (x - fInitialX) +
235 viewMatrix.getScaleY() * (y - fInitialY) -
236 fInitialViewMatrix.getTranslateY();
237 if (!SkScalarIsInt(transX) || !SkScalarIsInt(transY)) {
joshualittfd5f6c12015-12-10 07:44:50 -0800238 return true;
239 }
joshualittfd5f6c12015-12-10 07:44:50 -0800240 } else if (this->hasDistanceField()) {
241 // A scale outside of [blob.fMaxMinScale, blob.fMinMaxScale] would result in a different
242 // distance field being generated, so we have to regenerate in those cases
243 SkScalar newMaxScale = viewMatrix.getMaxScale();
joshualitt8e0ef292016-02-19 14:13:03 -0800244 SkScalar oldMaxScale = fInitialViewMatrix.getMaxScale();
joshualittfd5f6c12015-12-10 07:44:50 -0800245 SkScalar scaleAdjust = newMaxScale / oldMaxScale;
246 if (scaleAdjust < fMaxMinScale || scaleAdjust > fMinMaxScale) {
247 return true;
248 }
joshualittfd5f6c12015-12-10 07:44:50 -0800249 }
250
joshualittfd5f6c12015-12-10 07:44:50 -0800251 // It is possible that a blob has neither distanceField nor bitmaptext. This is in the case
252 // when all of the runs inside the blob are drawn as paths. In this case, we always regenerate
253 // the blob anyways at flush time, so no need to regenerate explicitly
254 return false;
255}
256
joshualitt323c2eb2016-01-20 06:48:47 -0800257inline GrDrawBatch* GrAtlasTextBlob::createBatch(
258 const Run::SubRunInfo& info,
259 int glyphCount, int run, int subRun,
joshualitt8e0ef292016-02-19 14:13:03 -0800260 const SkMatrix& viewMatrix, SkScalar x, SkScalar y,
261 GrColor color,
joshualitt323c2eb2016-01-20 06:48:47 -0800262 const SkPaint& skPaint, const SkSurfaceProps& props,
263 const GrDistanceFieldAdjustTable* distanceAdjustTable,
brianosmanb461d342016-04-13 13:10:14 -0700264 bool useGammaCorrectDistanceTable,
joshualitt323c2eb2016-01-20 06:48:47 -0800265 GrBatchFontCache* cache) {
joshualitt2e2202e2015-12-10 11:22:08 -0800266 GrMaskFormat format = info.maskFormat();
267 GrColor subRunColor;
268 if (kARGB_GrMaskFormat == format) {
269 uint8_t paintAlpha = skPaint.getAlpha();
270 subRunColor = SkColorSetARGB(paintAlpha, paintAlpha, paintAlpha, paintAlpha);
271 } else {
272 subRunColor = color;
273 }
274
275 GrAtlasTextBatch* batch;
276 if (info.drawAsDistanceFields()) {
277 SkColor filteredColor;
278 SkColorFilter* colorFilter = skPaint.getColorFilter();
279 if (colorFilter) {
280 filteredColor = colorFilter->filterColor(skPaint.getColor());
281 } else {
282 filteredColor = skPaint.getColor();
283 }
284 bool useBGR = SkPixelGeometryIsBGR(props.pixelGeometry());
285 batch = GrAtlasTextBatch::CreateDistanceField(glyphCount, cache,
brianosmanb461d342016-04-13 13:10:14 -0700286 distanceAdjustTable,
287 useGammaCorrectDistanceTable,
brianosman0586f5c2016-04-12 12:48:21 -0700288 filteredColor, info.hasUseLCDText(), useBGR);
joshualitt2e2202e2015-12-10 11:22:08 -0800289 } else {
290 batch = GrAtlasTextBatch::CreateBitmap(format, glyphCount, cache);
291 }
292 GrAtlasTextBatch::Geometry& geometry = batch->geometry();
joshualitt8e0ef292016-02-19 14:13:03 -0800293 geometry.fViewMatrix = viewMatrix;
joshualitt2e2202e2015-12-10 11:22:08 -0800294 geometry.fBlob = SkRef(this);
295 geometry.fRun = run;
296 geometry.fSubRun = subRun;
297 geometry.fColor = subRunColor;
joshualitt8e0ef292016-02-19 14:13:03 -0800298 geometry.fX = x;
299 geometry.fY = y;
joshualitt2e2202e2015-12-10 11:22:08 -0800300 batch->init();
301
302 return batch;
303}
304
305inline
Brian Osman11052242016-10-27 14:47:55 -0400306void GrAtlasTextBlob::flushRun(GrRenderTargetContext* rtc, const GrPaint& grPaint,
cdalton862cff32016-05-12 15:09:48 -0700307 const GrClip& clip, int run, const SkMatrix& viewMatrix, SkScalar x,
robertphillips640789d2016-07-18 14:56:06 -0700308 SkScalar y,
joshualitt2e2202e2015-12-10 11:22:08 -0800309 const SkPaint& skPaint, const SkSurfaceProps& props,
310 const GrDistanceFieldAdjustTable* distanceAdjustTable,
311 GrBatchFontCache* cache) {
312 for (int subRun = 0; subRun < fRuns[run].fSubRunInfo.count(); subRun++) {
313 const Run::SubRunInfo& info = fRuns[run].fSubRunInfo[subRun];
314 int glyphCount = info.glyphCount();
315 if (0 == glyphCount) {
316 continue;
317 }
318
robertphillips640789d2016-07-18 14:56:06 -0700319 GrColor color = grPaint.getColor();
320
Hal Canary144caf52016-11-07 17:57:18 -0500321 sk_sp<GrDrawBatch> batch(this->createBatch(info, glyphCount, run,
322 subRun, viewMatrix, x, y, color,
323 skPaint, props,
324 distanceAdjustTable,
325 rtc->isGammaCorrect(),
326 cache));
robertphillips640789d2016-07-18 14:56:06 -0700327
Brian Osman11052242016-10-27 14:47:55 -0400328 GrPipelineBuilder pipelineBuilder(grPaint, rtc->mustUseHWAA(grPaint));
bsalomonbb243832016-07-22 07:10:19 -0700329
Hal Canary144caf52016-11-07 17:57:18 -0500330 rtc->drawBatch(pipelineBuilder, clip, batch.get());
joshualitt2e2202e2015-12-10 11:22:08 -0800331 }
332}
333
joshualitt8e0ef292016-02-19 14:13:03 -0800334static void calculate_translation(bool applyVM,
335 const SkMatrix& newViewMatrix, SkScalar newX, SkScalar newY,
336 const SkMatrix& currentViewMatrix, SkScalar currentX,
337 SkScalar currentY, SkScalar* transX, SkScalar* transY) {
338 if (applyVM) {
339 *transX = newViewMatrix.getTranslateX() +
340 newViewMatrix.getScaleX() * (newX - currentX) +
341 newViewMatrix.getSkewX() * (newY - currentY) -
342 currentViewMatrix.getTranslateX();
343
344 *transY = newViewMatrix.getTranslateY() +
345 newViewMatrix.getSkewY() * (newX - currentX) +
346 newViewMatrix.getScaleY() * (newY - currentY) -
347 currentViewMatrix.getTranslateY();
348 } else {
349 *transX = newX - currentX;
350 *transY = newY - currentY;
351 }
352}
353
354
Brian Osman11052242016-10-27 14:47:55 -0400355void GrAtlasTextBlob::flushBigGlyphs(GrContext* context, GrRenderTargetContext* rtc,
joshualitt2e2202e2015-12-10 11:22:08 -0800356 const GrClip& clip, const SkPaint& skPaint,
joshualitt8e0ef292016-02-19 14:13:03 -0800357 const SkMatrix& viewMatrix, SkScalar x, SkScalar y,
joshualitt2e2202e2015-12-10 11:22:08 -0800358 const SkIRect& clipBounds) {
joshualitt8e0ef292016-02-19 14:13:03 -0800359 SkScalar transX, transY;
joshualitt2e2202e2015-12-10 11:22:08 -0800360 for (int i = 0; i < fBigGlyphs.count(); i++) {
361 GrAtlasTextBlob::BigGlyph& bigGlyph = fBigGlyphs[i];
Jim Van Verth08576e62016-11-16 10:15:23 -0500362 calculate_translation(bigGlyph.fTreatAsBMP, viewMatrix, x, y,
joshualitt8e0ef292016-02-19 14:13:03 -0800363 fInitialViewMatrix, fInitialX, fInitialY, &transX, &transY);
joshualitt2e2202e2015-12-10 11:22:08 -0800364 SkMatrix ctm;
365 ctm.setScale(bigGlyph.fScale, bigGlyph.fScale);
joshualitt8e0ef292016-02-19 14:13:03 -0800366 ctm.postTranslate(bigGlyph.fX + transX, bigGlyph.fY + transY);
Jim Van Verth08576e62016-11-16 10:15:23 -0500367 if (!bigGlyph.fTreatAsBMP) {
joshualitt8e0ef292016-02-19 14:13:03 -0800368 ctm.postConcat(viewMatrix);
joshualitt2e2202e2015-12-10 11:22:08 -0800369 }
370
Brian Osman11052242016-10-27 14:47:55 -0400371 GrBlurUtils::drawPathWithMaskFilter(context, rtc, clip, bigGlyph.fPath,
joshualitt2e2202e2015-12-10 11:22:08 -0800372 skPaint, ctm, nullptr, clipBounds, false);
373 }
374}
375
Brian Osman11052242016-10-27 14:47:55 -0400376void GrAtlasTextBlob::flushRunAsPaths(GrContext* context, GrRenderTargetContext* rtc,
joshualitt2e2202e2015-12-10 11:22:08 -0800377 const SkSurfaceProps& props,
378 const SkTextBlobRunIterator& it,
379 const GrClip& clip, const SkPaint& skPaint,
380 SkDrawFilter* drawFilter, const SkMatrix& viewMatrix,
381 const SkIRect& clipBounds, SkScalar x, SkScalar y) {
382 SkPaint runPaint = skPaint;
383
384 size_t textLen = it.glyphCount() * sizeof(uint16_t);
385 const SkPoint& offset = it.offset();
386
387 it.applyFontToPaint(&runPaint);
388
389 if (drawFilter && !drawFilter->filter(&runPaint, SkDrawFilter::kText_Type)) {
390 return;
391 }
392
joshualitt8e84a1e2016-02-16 11:09:25 -0800393 runPaint.setFlags(GrTextUtils::FilterTextFlags(props, runPaint));
joshualitt2e2202e2015-12-10 11:22:08 -0800394
395 switch (it.positioning()) {
396 case SkTextBlob::kDefault_Positioning:
Brian Osman11052242016-10-27 14:47:55 -0400397 GrTextUtils::DrawTextAsPath(context, rtc, clip, runPaint, viewMatrix,
joshualitt2e2202e2015-12-10 11:22:08 -0800398 (const char *)it.glyphs(),
399 textLen, x + offset.x(), y + offset.y(), clipBounds);
400 break;
401 case SkTextBlob::kHorizontal_Positioning:
Brian Osman11052242016-10-27 14:47:55 -0400402 GrTextUtils::DrawPosTextAsPath(context, rtc, props, clip, runPaint, viewMatrix,
joshualitt2e2202e2015-12-10 11:22:08 -0800403 (const char*)it.glyphs(),
404 textLen, it.pos(), 1, SkPoint::Make(x, y + offset.y()),
405 clipBounds);
406 break;
407 case SkTextBlob::kFull_Positioning:
Brian Osman11052242016-10-27 14:47:55 -0400408 GrTextUtils::DrawPosTextAsPath(context, rtc, props, clip, runPaint, viewMatrix,
joshualitt2e2202e2015-12-10 11:22:08 -0800409 (const char*)it.glyphs(),
410 textLen, it.pos(), 2, SkPoint::Make(x, y), clipBounds);
411 break;
412 }
413}
414
joshualitt0a42e682015-12-10 13:20:58 -0800415void GrAtlasTextBlob::flushCached(GrContext* context,
Brian Osman11052242016-10-27 14:47:55 -0400416 GrRenderTargetContext* rtc,
joshualitt0a42e682015-12-10 13:20:58 -0800417 const SkTextBlob* blob,
joshualitt2e2202e2015-12-10 11:22:08 -0800418 const SkSurfaceProps& props,
419 const GrDistanceFieldAdjustTable* distanceAdjustTable,
420 const SkPaint& skPaint,
421 const GrPaint& grPaint,
422 SkDrawFilter* drawFilter,
423 const GrClip& clip,
424 const SkMatrix& viewMatrix,
425 const SkIRect& clipBounds,
joshualitt8e0ef292016-02-19 14:13:03 -0800426 SkScalar x, SkScalar y) {
joshualitt2e2202e2015-12-10 11:22:08 -0800427 // We loop through the runs of the blob, flushing each. If any run is too large, then we flush
428 // it as paths
joshualitt2e2202e2015-12-10 11:22:08 -0800429 SkTextBlobRunIterator it(blob);
430 for (int run = 0; !it.done(); it.next(), run++) {
431 if (fRuns[run].fDrawAsPaths) {
Brian Osman11052242016-10-27 14:47:55 -0400432 this->flushRunAsPaths(context, rtc, props, it, clip, skPaint,
joshualitt2e2202e2015-12-10 11:22:08 -0800433 drawFilter, viewMatrix, clipBounds, x, y);
434 continue;
435 }
Brian Osman11052242016-10-27 14:47:55 -0400436 this->flushRun(rtc, grPaint, clip, run, viewMatrix, x, y, skPaint, props,
joshualitt2e2202e2015-12-10 11:22:08 -0800437 distanceAdjustTable, context->getBatchFontCache());
438 }
439
440 // Now flush big glyphs
Brian Osman11052242016-10-27 14:47:55 -0400441 this->flushBigGlyphs(context, rtc, clip, skPaint, viewMatrix, x, y, clipBounds);
joshualitt2e2202e2015-12-10 11:22:08 -0800442}
443
444void GrAtlasTextBlob::flushThrowaway(GrContext* context,
Brian Osman11052242016-10-27 14:47:55 -0400445 GrRenderTargetContext* rtc,
joshualitt2e2202e2015-12-10 11:22:08 -0800446 const SkSurfaceProps& props,
447 const GrDistanceFieldAdjustTable* distanceAdjustTable,
448 const SkPaint& skPaint,
449 const GrPaint& grPaint,
450 const GrClip& clip,
joshualitt8e0ef292016-02-19 14:13:03 -0800451 const SkMatrix& viewMatrix,
452 const SkIRect& clipBounds,
453 SkScalar x, SkScalar y) {
joshualitt2e2202e2015-12-10 11:22:08 -0800454 for (int run = 0; run < fRunCount; run++) {
Brian Osman11052242016-10-27 14:47:55 -0400455 this->flushRun(rtc, grPaint, clip, run, viewMatrix, x, y, skPaint, props,
joshualitt2e2202e2015-12-10 11:22:08 -0800456 distanceAdjustTable, context->getBatchFontCache());
457 }
458
459 // Now flush big glyphs
Brian Osman11052242016-10-27 14:47:55 -0400460 this->flushBigGlyphs(context, rtc, clip, skPaint, viewMatrix, x, y, clipBounds);
joshualitt2e2202e2015-12-10 11:22:08 -0800461}
462
joshualitt323c2eb2016-01-20 06:48:47 -0800463GrDrawBatch* GrAtlasTextBlob::test_createBatch(
464 int glyphCount, int run, int subRun,
joshualitt8e0ef292016-02-19 14:13:03 -0800465 const SkMatrix& viewMatrix, SkScalar x, SkScalar y,
466 GrColor color,
joshualitt323c2eb2016-01-20 06:48:47 -0800467 const SkPaint& skPaint, const SkSurfaceProps& props,
468 const GrDistanceFieldAdjustTable* distanceAdjustTable,
469 GrBatchFontCache* cache) {
joshualitt7481e752016-01-22 06:08:48 -0800470 const GrAtlasTextBlob::Run::SubRunInfo& info = fRuns[run].fSubRunInfo[subRun];
joshualitt8e0ef292016-02-19 14:13:03 -0800471 return this->createBatch(info, glyphCount, run, subRun, viewMatrix, x, y, color, skPaint,
brianosman0586f5c2016-04-12 12:48:21 -0700472 props, distanceAdjustTable, false, cache);
joshualitt323c2eb2016-01-20 06:48:47 -0800473}
joshualitt2e2202e2015-12-10 11:22:08 -0800474
joshualitt259fbf12015-07-21 11:39:34 -0700475void GrAtlasTextBlob::AssertEqual(const GrAtlasTextBlob& l, const GrAtlasTextBlob& r) {
joshualitt2f2ee832016-02-10 08:52:24 -0800476 SkASSERT_RELEASE(l.fSize == r.fSize);
477 SkASSERT_RELEASE(l.fPool == r.fPool);
joshualitt259fbf12015-07-21 11:39:34 -0700478
joshualitt2f2ee832016-02-10 08:52:24 -0800479 SkASSERT_RELEASE(l.fBlurRec.fSigma == r.fBlurRec.fSigma);
480 SkASSERT_RELEASE(l.fBlurRec.fStyle == r.fBlurRec.fStyle);
481 SkASSERT_RELEASE(l.fBlurRec.fQuality == r.fBlurRec.fQuality);
joshualitt259fbf12015-07-21 11:39:34 -0700482
joshualitt2f2ee832016-02-10 08:52:24 -0800483 SkASSERT_RELEASE(l.fStrokeInfo.fFrameWidth == r.fStrokeInfo.fFrameWidth);
484 SkASSERT_RELEASE(l.fStrokeInfo.fMiterLimit == r.fStrokeInfo.fMiterLimit);
485 SkASSERT_RELEASE(l.fStrokeInfo.fJoin == r.fStrokeInfo.fJoin);
joshualitt259fbf12015-07-21 11:39:34 -0700486
joshualitt2f2ee832016-02-10 08:52:24 -0800487 SkASSERT_RELEASE(l.fBigGlyphs.count() == r.fBigGlyphs.count());
joshualitt259fbf12015-07-21 11:39:34 -0700488 for (int i = 0; i < l.fBigGlyphs.count(); i++) {
489 const BigGlyph& lBigGlyph = l.fBigGlyphs[i];
490 const BigGlyph& rBigGlyph = r.fBigGlyphs[i];
491
joshualitt2f2ee832016-02-10 08:52:24 -0800492 SkASSERT_RELEASE(lBigGlyph.fPath == rBigGlyph.fPath);
joshualitt259fbf12015-07-21 11:39:34 -0700493 // We can't assert that these have the same translations
494 }
495
joshualitt2f2ee832016-02-10 08:52:24 -0800496 SkASSERT_RELEASE(l.fKey == r.fKey);
joshualitt2f2ee832016-02-10 08:52:24 -0800497 //SkASSERT_RELEASE(l.fPaintColor == r.fPaintColor); // Colors might not actually be identical
498 SkASSERT_RELEASE(l.fMaxMinScale == r.fMaxMinScale);
499 SkASSERT_RELEASE(l.fMinMaxScale == r.fMinMaxScale);
500 SkASSERT_RELEASE(l.fTextType == r.fTextType);
joshualitt259fbf12015-07-21 11:39:34 -0700501
joshualitt2f2ee832016-02-10 08:52:24 -0800502 SkASSERT_RELEASE(l.fRunCount == r.fRunCount);
joshualitt259fbf12015-07-21 11:39:34 -0700503 for (int i = 0; i < l.fRunCount; i++) {
504 const Run& lRun = l.fRuns[i];
505 const Run& rRun = r.fRuns[i];
506
joshualitt259fbf12015-07-21 11:39:34 -0700507 if (lRun.fTypeface.get()) {
joshualitt2f2ee832016-02-10 08:52:24 -0800508 SkASSERT_RELEASE(rRun.fTypeface.get());
Hal Canary144caf52016-11-07 17:57:18 -0500509 SkASSERT_RELEASE(SkTypeface::Equal(lRun.fTypeface.get(), rRun.fTypeface.get()));
joshualitt259fbf12015-07-21 11:39:34 -0700510 } else {
joshualitt2f2ee832016-02-10 08:52:24 -0800511 SkASSERT_RELEASE(!rRun.fTypeface.get());
joshualitt259fbf12015-07-21 11:39:34 -0700512 }
513
joshualitt259fbf12015-07-21 11:39:34 -0700514
joshualitt2f2ee832016-02-10 08:52:24 -0800515 SkASSERT_RELEASE(lRun.fDescriptor.getDesc());
516 SkASSERT_RELEASE(rRun.fDescriptor.getDesc());
bsalomonc5d07fa2016-05-17 10:17:45 -0700517 SkASSERT_RELEASE(*lRun.fDescriptor.getDesc() == *rRun.fDescriptor.getDesc());
joshualitt259fbf12015-07-21 11:39:34 -0700518
519 if (lRun.fOverrideDescriptor.get()) {
joshualitt2f2ee832016-02-10 08:52:24 -0800520 SkASSERT_RELEASE(lRun.fOverrideDescriptor->getDesc());
521 SkASSERT_RELEASE(rRun.fOverrideDescriptor.get() && rRun.fOverrideDescriptor->getDesc());
bsalomonc5d07fa2016-05-17 10:17:45 -0700522 SkASSERT_RELEASE(*lRun.fOverrideDescriptor->getDesc() ==
523 *rRun.fOverrideDescriptor->getDesc());
joshualitt259fbf12015-07-21 11:39:34 -0700524 } else {
joshualitt2f2ee832016-02-10 08:52:24 -0800525 SkASSERT_RELEASE(!rRun.fOverrideDescriptor.get());
joshualitt259fbf12015-07-21 11:39:34 -0700526 }
527
528 // color can be changed
529 //SkASSERT(lRun.fColor == rRun.fColor);
joshualitt2f2ee832016-02-10 08:52:24 -0800530 SkASSERT_RELEASE(lRun.fInitialized == rRun.fInitialized);
531 SkASSERT_RELEASE(lRun.fDrawAsPaths == rRun.fDrawAsPaths);
joshualitt259fbf12015-07-21 11:39:34 -0700532
joshualitt2f2ee832016-02-10 08:52:24 -0800533 SkASSERT_RELEASE(lRun.fSubRunInfo.count() == rRun.fSubRunInfo.count());
joshualitt259fbf12015-07-21 11:39:34 -0700534 for(int j = 0; j < lRun.fSubRunInfo.count(); j++) {
535 const Run::SubRunInfo& lSubRun = lRun.fSubRunInfo[j];
536 const Run::SubRunInfo& rSubRun = rRun.fSubRunInfo[j];
537
joshualitt2f2ee832016-02-10 08:52:24 -0800538 // TODO we can do this check, but we have to apply the VM to the old vertex bounds
539 //SkASSERT_RELEASE(lSubRun.vertexBounds() == rSubRun.vertexBounds());
joshualitt259fbf12015-07-21 11:39:34 -0700540
joshualitt2f2ee832016-02-10 08:52:24 -0800541 if (lSubRun.strike()) {
542 SkASSERT_RELEASE(rSubRun.strike());
543 SkASSERT_RELEASE(GrBatchTextStrike::GetKey(*lSubRun.strike()) ==
544 GrBatchTextStrike::GetKey(*rSubRun.strike()));
545
546 } else {
547 SkASSERT_RELEASE(!rSubRun.strike());
548 }
549
550 SkASSERT_RELEASE(lSubRun.vertexStartIndex() == rSubRun.vertexStartIndex());
551 SkASSERT_RELEASE(lSubRun.vertexEndIndex() == rSubRun.vertexEndIndex());
552 SkASSERT_RELEASE(lSubRun.glyphStartIndex() == rSubRun.glyphStartIndex());
553 SkASSERT_RELEASE(lSubRun.glyphEndIndex() == rSubRun.glyphEndIndex());
554 SkASSERT_RELEASE(lSubRun.maskFormat() == rSubRun.maskFormat());
555 SkASSERT_RELEASE(lSubRun.drawAsDistanceFields() == rSubRun.drawAsDistanceFields());
556 SkASSERT_RELEASE(lSubRun.hasUseLCDText() == rSubRun.hasUseLCDText());
joshualitt259fbf12015-07-21 11:39:34 -0700557 }
558 }
559}
joshualitt8e0ef292016-02-19 14:13:03 -0800560
561void GrAtlasTextBlob::Run::SubRunInfo::computeTranslation(const SkMatrix& viewMatrix,
562 SkScalar x, SkScalar y, SkScalar* transX,
563 SkScalar* transY) {
564 calculate_translation(!this->drawAsDistanceFields(), viewMatrix, x, y,
565 fCurrentViewMatrix, fX, fY, transX, transY);
566 fCurrentViewMatrix = viewMatrix;
567 fX = x;
568 fY = y;
569}