blob: 1fb4f2cdda744875a5d292cdeb34f1bedffbf65e [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
Brian Salomon9afd3712016-12-01 10:59:09 -0500257inline GrDrawOp* GrAtlasTextBlob::createBatch(const Run::SubRunInfo& info,
joshualitt323c2eb2016-01-20 06:48:47 -0800258 int glyphCount, int run, int subRun,
joshualitt8e0ef292016-02-19 14:13:03 -0800259 const SkMatrix& viewMatrix, SkScalar x, SkScalar y,
260 GrColor color,
joshualitt323c2eb2016-01-20 06:48:47 -0800261 const SkPaint& skPaint, const SkSurfaceProps& props,
262 const GrDistanceFieldAdjustTable* distanceAdjustTable,
brianosmanb461d342016-04-13 13:10:14 -0700263 bool useGammaCorrectDistanceTable,
joshualitt323c2eb2016-01-20 06:48:47 -0800264 GrBatchFontCache* cache) {
joshualitt2e2202e2015-12-10 11:22:08 -0800265 GrMaskFormat format = info.maskFormat();
266 GrColor subRunColor;
267 if (kARGB_GrMaskFormat == format) {
268 uint8_t paintAlpha = skPaint.getAlpha();
269 subRunColor = SkColorSetARGB(paintAlpha, paintAlpha, paintAlpha, paintAlpha);
270 } else {
271 subRunColor = color;
272 }
273
274 GrAtlasTextBatch* batch;
275 if (info.drawAsDistanceFields()) {
276 SkColor filteredColor;
277 SkColorFilter* colorFilter = skPaint.getColorFilter();
278 if (colorFilter) {
279 filteredColor = colorFilter->filterColor(skPaint.getColor());
280 } else {
281 filteredColor = skPaint.getColor();
282 }
283 bool useBGR = SkPixelGeometryIsBGR(props.pixelGeometry());
284 batch = GrAtlasTextBatch::CreateDistanceField(glyphCount, cache,
brianosmanb461d342016-04-13 13:10:14 -0700285 distanceAdjustTable,
286 useGammaCorrectDistanceTable,
brianosman0586f5c2016-04-12 12:48:21 -0700287 filteredColor, info.hasUseLCDText(), useBGR);
joshualitt2e2202e2015-12-10 11:22:08 -0800288 } else {
289 batch = GrAtlasTextBatch::CreateBitmap(format, glyphCount, cache);
290 }
291 GrAtlasTextBatch::Geometry& geometry = batch->geometry();
joshualitt8e0ef292016-02-19 14:13:03 -0800292 geometry.fViewMatrix = viewMatrix;
joshualitt2e2202e2015-12-10 11:22:08 -0800293 geometry.fBlob = SkRef(this);
294 geometry.fRun = run;
295 geometry.fSubRun = subRun;
296 geometry.fColor = subRunColor;
joshualitt8e0ef292016-02-19 14:13:03 -0800297 geometry.fX = x;
298 geometry.fY = y;
joshualitt2e2202e2015-12-10 11:22:08 -0800299 batch->init();
300
301 return batch;
302}
303
304inline
Brian Osman11052242016-10-27 14:47:55 -0400305void GrAtlasTextBlob::flushRun(GrRenderTargetContext* rtc, const GrPaint& grPaint,
cdalton862cff32016-05-12 15:09:48 -0700306 const GrClip& clip, int run, const SkMatrix& viewMatrix, SkScalar x,
robertphillips640789d2016-07-18 14:56:06 -0700307 SkScalar y,
joshualitt2e2202e2015-12-10 11:22:08 -0800308 const SkPaint& skPaint, const SkSurfaceProps& props,
309 const GrDistanceFieldAdjustTable* distanceAdjustTable,
310 GrBatchFontCache* cache) {
311 for (int subRun = 0; subRun < fRuns[run].fSubRunInfo.count(); subRun++) {
312 const Run::SubRunInfo& info = fRuns[run].fSubRunInfo[subRun];
313 int glyphCount = info.glyphCount();
314 if (0 == glyphCount) {
315 continue;
316 }
317
robertphillips640789d2016-07-18 14:56:06 -0700318 GrColor color = grPaint.getColor();
319
Brian Salomon9afd3712016-12-01 10:59:09 -0500320 sk_sp<GrDrawOp> batch(this->createBatch(info, glyphCount, run,
321 subRun, viewMatrix, x, y, color,
322 skPaint, props,
323 distanceAdjustTable,
324 rtc->isGammaCorrect(),
325 cache));
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500326 GrPipelineBuilder pipelineBuilder(grPaint, GrAAType::kNone);
bsalomonbb243832016-07-22 07:10:19 -0700327
Brian Salomon42521e82016-12-07 16:44:58 -0500328 rtc->addDrawOp(pipelineBuilder, clip, batch.get());
joshualitt2e2202e2015-12-10 11:22:08 -0800329 }
330}
331
joshualitt8e0ef292016-02-19 14:13:03 -0800332static void calculate_translation(bool applyVM,
333 const SkMatrix& newViewMatrix, SkScalar newX, SkScalar newY,
334 const SkMatrix& currentViewMatrix, SkScalar currentX,
335 SkScalar currentY, SkScalar* transX, SkScalar* transY) {
336 if (applyVM) {
337 *transX = newViewMatrix.getTranslateX() +
338 newViewMatrix.getScaleX() * (newX - currentX) +
339 newViewMatrix.getSkewX() * (newY - currentY) -
340 currentViewMatrix.getTranslateX();
341
342 *transY = newViewMatrix.getTranslateY() +
343 newViewMatrix.getSkewY() * (newX - currentX) +
344 newViewMatrix.getScaleY() * (newY - currentY) -
345 currentViewMatrix.getTranslateY();
346 } else {
347 *transX = newX - currentX;
348 *transY = newY - currentY;
349 }
350}
351
352
Brian Osman11052242016-10-27 14:47:55 -0400353void GrAtlasTextBlob::flushBigGlyphs(GrContext* context, GrRenderTargetContext* rtc,
joshualitt2e2202e2015-12-10 11:22:08 -0800354 const GrClip& clip, const SkPaint& skPaint,
joshualitt8e0ef292016-02-19 14:13:03 -0800355 const SkMatrix& viewMatrix, SkScalar x, SkScalar y,
joshualitt2e2202e2015-12-10 11:22:08 -0800356 const SkIRect& clipBounds) {
joshualitt8e0ef292016-02-19 14:13:03 -0800357 SkScalar transX, transY;
joshualitt2e2202e2015-12-10 11:22:08 -0800358 for (int i = 0; i < fBigGlyphs.count(); i++) {
359 GrAtlasTextBlob::BigGlyph& bigGlyph = fBigGlyphs[i];
Jim Van Verth08576e62016-11-16 10:15:23 -0500360 calculate_translation(bigGlyph.fTreatAsBMP, viewMatrix, x, y,
joshualitt8e0ef292016-02-19 14:13:03 -0800361 fInitialViewMatrix, fInitialX, fInitialY, &transX, &transY);
joshualitt2e2202e2015-12-10 11:22:08 -0800362 SkMatrix ctm;
363 ctm.setScale(bigGlyph.fScale, bigGlyph.fScale);
joshualitt8e0ef292016-02-19 14:13:03 -0800364 ctm.postTranslate(bigGlyph.fX + transX, bigGlyph.fY + transY);
Jim Van Verth08576e62016-11-16 10:15:23 -0500365 if (!bigGlyph.fTreatAsBMP) {
joshualitt8e0ef292016-02-19 14:13:03 -0800366 ctm.postConcat(viewMatrix);
joshualitt2e2202e2015-12-10 11:22:08 -0800367 }
368
Brian Osman11052242016-10-27 14:47:55 -0400369 GrBlurUtils::drawPathWithMaskFilter(context, rtc, clip, bigGlyph.fPath,
joshualitt2e2202e2015-12-10 11:22:08 -0800370 skPaint, ctm, nullptr, clipBounds, false);
371 }
372}
373
Brian Osman11052242016-10-27 14:47:55 -0400374void GrAtlasTextBlob::flushRunAsPaths(GrContext* context, GrRenderTargetContext* rtc,
joshualitt2e2202e2015-12-10 11:22:08 -0800375 const SkSurfaceProps& props,
376 const SkTextBlobRunIterator& it,
377 const GrClip& clip, const SkPaint& skPaint,
378 SkDrawFilter* drawFilter, const SkMatrix& viewMatrix,
379 const SkIRect& clipBounds, SkScalar x, SkScalar y) {
380 SkPaint runPaint = skPaint;
381
382 size_t textLen = it.glyphCount() * sizeof(uint16_t);
383 const SkPoint& offset = it.offset();
384
385 it.applyFontToPaint(&runPaint);
386
387 if (drawFilter && !drawFilter->filter(&runPaint, SkDrawFilter::kText_Type)) {
388 return;
389 }
390
joshualitt8e84a1e2016-02-16 11:09:25 -0800391 runPaint.setFlags(GrTextUtils::FilterTextFlags(props, runPaint));
joshualitt2e2202e2015-12-10 11:22:08 -0800392
393 switch (it.positioning()) {
394 case SkTextBlob::kDefault_Positioning:
Brian Osman11052242016-10-27 14:47:55 -0400395 GrTextUtils::DrawTextAsPath(context, rtc, clip, runPaint, viewMatrix,
joshualitt2e2202e2015-12-10 11:22:08 -0800396 (const char *)it.glyphs(),
397 textLen, x + offset.x(), y + offset.y(), clipBounds);
398 break;
399 case SkTextBlob::kHorizontal_Positioning:
Brian Osman11052242016-10-27 14:47:55 -0400400 GrTextUtils::DrawPosTextAsPath(context, rtc, props, clip, runPaint, viewMatrix,
joshualitt2e2202e2015-12-10 11:22:08 -0800401 (const char*)it.glyphs(),
402 textLen, it.pos(), 1, SkPoint::Make(x, y + offset.y()),
403 clipBounds);
404 break;
405 case SkTextBlob::kFull_Positioning:
Brian Osman11052242016-10-27 14:47:55 -0400406 GrTextUtils::DrawPosTextAsPath(context, rtc, props, clip, runPaint, viewMatrix,
joshualitt2e2202e2015-12-10 11:22:08 -0800407 (const char*)it.glyphs(),
408 textLen, it.pos(), 2, SkPoint::Make(x, y), clipBounds);
409 break;
410 }
411}
412
joshualitt0a42e682015-12-10 13:20:58 -0800413void GrAtlasTextBlob::flushCached(GrContext* context,
Brian Osman11052242016-10-27 14:47:55 -0400414 GrRenderTargetContext* rtc,
joshualitt0a42e682015-12-10 13:20:58 -0800415 const SkTextBlob* blob,
joshualitt2e2202e2015-12-10 11:22:08 -0800416 const SkSurfaceProps& props,
417 const GrDistanceFieldAdjustTable* distanceAdjustTable,
418 const SkPaint& skPaint,
419 const GrPaint& grPaint,
420 SkDrawFilter* drawFilter,
421 const GrClip& clip,
422 const SkMatrix& viewMatrix,
423 const SkIRect& clipBounds,
joshualitt8e0ef292016-02-19 14:13:03 -0800424 SkScalar x, SkScalar y) {
joshualitt2e2202e2015-12-10 11:22:08 -0800425 // We loop through the runs of the blob, flushing each. If any run is too large, then we flush
426 // it as paths
joshualitt2e2202e2015-12-10 11:22:08 -0800427 SkTextBlobRunIterator it(blob);
428 for (int run = 0; !it.done(); it.next(), run++) {
429 if (fRuns[run].fDrawAsPaths) {
Brian Osman11052242016-10-27 14:47:55 -0400430 this->flushRunAsPaths(context, rtc, props, it, clip, skPaint,
joshualitt2e2202e2015-12-10 11:22:08 -0800431 drawFilter, viewMatrix, clipBounds, x, y);
432 continue;
433 }
Brian Osman11052242016-10-27 14:47:55 -0400434 this->flushRun(rtc, grPaint, clip, run, viewMatrix, x, y, skPaint, props,
joshualitt2e2202e2015-12-10 11:22:08 -0800435 distanceAdjustTable, context->getBatchFontCache());
436 }
437
438 // Now flush big glyphs
Brian Osman11052242016-10-27 14:47:55 -0400439 this->flushBigGlyphs(context, rtc, clip, skPaint, viewMatrix, x, y, clipBounds);
joshualitt2e2202e2015-12-10 11:22:08 -0800440}
441
442void GrAtlasTextBlob::flushThrowaway(GrContext* context,
Brian Osman11052242016-10-27 14:47:55 -0400443 GrRenderTargetContext* rtc,
joshualitt2e2202e2015-12-10 11:22:08 -0800444 const SkSurfaceProps& props,
445 const GrDistanceFieldAdjustTable* distanceAdjustTable,
446 const SkPaint& skPaint,
447 const GrPaint& grPaint,
448 const GrClip& clip,
joshualitt8e0ef292016-02-19 14:13:03 -0800449 const SkMatrix& viewMatrix,
450 const SkIRect& clipBounds,
451 SkScalar x, SkScalar y) {
joshualitt2e2202e2015-12-10 11:22:08 -0800452 for (int run = 0; run < fRunCount; run++) {
Brian Osman11052242016-10-27 14:47:55 -0400453 this->flushRun(rtc, grPaint, clip, run, viewMatrix, x, y, skPaint, props,
joshualitt2e2202e2015-12-10 11:22:08 -0800454 distanceAdjustTable, context->getBatchFontCache());
455 }
456
457 // Now flush big glyphs
Brian Osman11052242016-10-27 14:47:55 -0400458 this->flushBigGlyphs(context, rtc, clip, skPaint, viewMatrix, x, y, clipBounds);
joshualitt2e2202e2015-12-10 11:22:08 -0800459}
460
Brian Salomon9afd3712016-12-01 10:59:09 -0500461GrDrawOp* GrAtlasTextBlob::test_createBatch(int glyphCount, int run, int subRun,
462 const SkMatrix& viewMatrix, SkScalar x, SkScalar y,
463 GrColor color,
464 const SkPaint& skPaint, const SkSurfaceProps& props,
465 const GrDistanceFieldAdjustTable* distanceAdjustTable,
466 GrBatchFontCache* cache) {
joshualitt7481e752016-01-22 06:08:48 -0800467 const GrAtlasTextBlob::Run::SubRunInfo& info = fRuns[run].fSubRunInfo[subRun];
joshualitt8e0ef292016-02-19 14:13:03 -0800468 return this->createBatch(info, glyphCount, run, subRun, viewMatrix, x, y, color, skPaint,
brianosman0586f5c2016-04-12 12:48:21 -0700469 props, distanceAdjustTable, false, cache);
joshualitt323c2eb2016-01-20 06:48:47 -0800470}
joshualitt2e2202e2015-12-10 11:22:08 -0800471
joshualitt259fbf12015-07-21 11:39:34 -0700472void GrAtlasTextBlob::AssertEqual(const GrAtlasTextBlob& l, const GrAtlasTextBlob& r) {
joshualitt2f2ee832016-02-10 08:52:24 -0800473 SkASSERT_RELEASE(l.fSize == r.fSize);
474 SkASSERT_RELEASE(l.fPool == r.fPool);
joshualitt259fbf12015-07-21 11:39:34 -0700475
joshualitt2f2ee832016-02-10 08:52:24 -0800476 SkASSERT_RELEASE(l.fBlurRec.fSigma == r.fBlurRec.fSigma);
477 SkASSERT_RELEASE(l.fBlurRec.fStyle == r.fBlurRec.fStyle);
478 SkASSERT_RELEASE(l.fBlurRec.fQuality == r.fBlurRec.fQuality);
joshualitt259fbf12015-07-21 11:39:34 -0700479
joshualitt2f2ee832016-02-10 08:52:24 -0800480 SkASSERT_RELEASE(l.fStrokeInfo.fFrameWidth == r.fStrokeInfo.fFrameWidth);
481 SkASSERT_RELEASE(l.fStrokeInfo.fMiterLimit == r.fStrokeInfo.fMiterLimit);
482 SkASSERT_RELEASE(l.fStrokeInfo.fJoin == r.fStrokeInfo.fJoin);
joshualitt259fbf12015-07-21 11:39:34 -0700483
joshualitt2f2ee832016-02-10 08:52:24 -0800484 SkASSERT_RELEASE(l.fBigGlyphs.count() == r.fBigGlyphs.count());
joshualitt259fbf12015-07-21 11:39:34 -0700485 for (int i = 0; i < l.fBigGlyphs.count(); i++) {
486 const BigGlyph& lBigGlyph = l.fBigGlyphs[i];
487 const BigGlyph& rBigGlyph = r.fBigGlyphs[i];
488
joshualitt2f2ee832016-02-10 08:52:24 -0800489 SkASSERT_RELEASE(lBigGlyph.fPath == rBigGlyph.fPath);
joshualitt259fbf12015-07-21 11:39:34 -0700490 // We can't assert that these have the same translations
491 }
492
joshualitt2f2ee832016-02-10 08:52:24 -0800493 SkASSERT_RELEASE(l.fKey == r.fKey);
joshualitt2f2ee832016-02-10 08:52:24 -0800494 //SkASSERT_RELEASE(l.fPaintColor == r.fPaintColor); // Colors might not actually be identical
495 SkASSERT_RELEASE(l.fMaxMinScale == r.fMaxMinScale);
496 SkASSERT_RELEASE(l.fMinMaxScale == r.fMinMaxScale);
497 SkASSERT_RELEASE(l.fTextType == r.fTextType);
joshualitt259fbf12015-07-21 11:39:34 -0700498
joshualitt2f2ee832016-02-10 08:52:24 -0800499 SkASSERT_RELEASE(l.fRunCount == r.fRunCount);
joshualitt259fbf12015-07-21 11:39:34 -0700500 for (int i = 0; i < l.fRunCount; i++) {
501 const Run& lRun = l.fRuns[i];
502 const Run& rRun = r.fRuns[i];
503
joshualitt259fbf12015-07-21 11:39:34 -0700504 if (lRun.fTypeface.get()) {
joshualitt2f2ee832016-02-10 08:52:24 -0800505 SkASSERT_RELEASE(rRun.fTypeface.get());
Hal Canary144caf52016-11-07 17:57:18 -0500506 SkASSERT_RELEASE(SkTypeface::Equal(lRun.fTypeface.get(), rRun.fTypeface.get()));
joshualitt259fbf12015-07-21 11:39:34 -0700507 } else {
joshualitt2f2ee832016-02-10 08:52:24 -0800508 SkASSERT_RELEASE(!rRun.fTypeface.get());
joshualitt259fbf12015-07-21 11:39:34 -0700509 }
510
joshualitt259fbf12015-07-21 11:39:34 -0700511
joshualitt2f2ee832016-02-10 08:52:24 -0800512 SkASSERT_RELEASE(lRun.fDescriptor.getDesc());
513 SkASSERT_RELEASE(rRun.fDescriptor.getDesc());
bsalomonc5d07fa2016-05-17 10:17:45 -0700514 SkASSERT_RELEASE(*lRun.fDescriptor.getDesc() == *rRun.fDescriptor.getDesc());
joshualitt259fbf12015-07-21 11:39:34 -0700515
516 if (lRun.fOverrideDescriptor.get()) {
joshualitt2f2ee832016-02-10 08:52:24 -0800517 SkASSERT_RELEASE(lRun.fOverrideDescriptor->getDesc());
518 SkASSERT_RELEASE(rRun.fOverrideDescriptor.get() && rRun.fOverrideDescriptor->getDesc());
bsalomonc5d07fa2016-05-17 10:17:45 -0700519 SkASSERT_RELEASE(*lRun.fOverrideDescriptor->getDesc() ==
520 *rRun.fOverrideDescriptor->getDesc());
joshualitt259fbf12015-07-21 11:39:34 -0700521 } else {
joshualitt2f2ee832016-02-10 08:52:24 -0800522 SkASSERT_RELEASE(!rRun.fOverrideDescriptor.get());
joshualitt259fbf12015-07-21 11:39:34 -0700523 }
524
525 // color can be changed
526 //SkASSERT(lRun.fColor == rRun.fColor);
joshualitt2f2ee832016-02-10 08:52:24 -0800527 SkASSERT_RELEASE(lRun.fInitialized == rRun.fInitialized);
528 SkASSERT_RELEASE(lRun.fDrawAsPaths == rRun.fDrawAsPaths);
joshualitt259fbf12015-07-21 11:39:34 -0700529
joshualitt2f2ee832016-02-10 08:52:24 -0800530 SkASSERT_RELEASE(lRun.fSubRunInfo.count() == rRun.fSubRunInfo.count());
joshualitt259fbf12015-07-21 11:39:34 -0700531 for(int j = 0; j < lRun.fSubRunInfo.count(); j++) {
532 const Run::SubRunInfo& lSubRun = lRun.fSubRunInfo[j];
533 const Run::SubRunInfo& rSubRun = rRun.fSubRunInfo[j];
534
joshualitt2f2ee832016-02-10 08:52:24 -0800535 // TODO we can do this check, but we have to apply the VM to the old vertex bounds
536 //SkASSERT_RELEASE(lSubRun.vertexBounds() == rSubRun.vertexBounds());
joshualitt259fbf12015-07-21 11:39:34 -0700537
joshualitt2f2ee832016-02-10 08:52:24 -0800538 if (lSubRun.strike()) {
539 SkASSERT_RELEASE(rSubRun.strike());
540 SkASSERT_RELEASE(GrBatchTextStrike::GetKey(*lSubRun.strike()) ==
541 GrBatchTextStrike::GetKey(*rSubRun.strike()));
542
543 } else {
544 SkASSERT_RELEASE(!rSubRun.strike());
545 }
546
547 SkASSERT_RELEASE(lSubRun.vertexStartIndex() == rSubRun.vertexStartIndex());
548 SkASSERT_RELEASE(lSubRun.vertexEndIndex() == rSubRun.vertexEndIndex());
549 SkASSERT_RELEASE(lSubRun.glyphStartIndex() == rSubRun.glyphStartIndex());
550 SkASSERT_RELEASE(lSubRun.glyphEndIndex() == rSubRun.glyphEndIndex());
551 SkASSERT_RELEASE(lSubRun.maskFormat() == rSubRun.maskFormat());
552 SkASSERT_RELEASE(lSubRun.drawAsDistanceFields() == rSubRun.drawAsDistanceFields());
553 SkASSERT_RELEASE(lSubRun.hasUseLCDText() == rSubRun.hasUseLCDText());
joshualitt259fbf12015-07-21 11:39:34 -0700554 }
555 }
556}
joshualitt8e0ef292016-02-19 14:13:03 -0800557
558void GrAtlasTextBlob::Run::SubRunInfo::computeTranslation(const SkMatrix& viewMatrix,
559 SkScalar x, SkScalar y, SkScalar* transX,
560 SkScalar* transY) {
561 calculate_translation(!this->drawAsDistanceFields(), viewMatrix, x, y,
562 fCurrentViewMatrix, fX, fY, transX, transY);
563 fCurrentViewMatrix = viewMatrix;
564 fX = x;
565 fY = y;
566}