blob: 5e3b4bf4ffb6295abcf64150387149cfedfdc019 [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"
bsalomonbb243832016-07-22 07:10:19 -070012#include "GrPipelineBuilder.h"
Brian Salomon344ec422016-12-15 10:58:41 -050013#include "GrRenderTargetContext.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"
Brian Salomon89527432016-12-16 09:52:16 -050019#include "ops/GrAtlasTextOp.h"
joshualitt2e2202e2015-12-10 11:22:08 -080020
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,
Brian Salomonf856fd12016-12-16 14:24:34 -050074 GrAtlasTextStrike* 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 Salomonf8334782017-01-03 09:42:58 -0500257inline std::unique_ptr<GrDrawOp> GrAtlasTextBlob::makeOp(
Brian Salomon344ec422016-12-15 10:58:41 -0500258 const Run::SubRunInfo& info, int glyphCount, int run, int subRun,
259 const SkMatrix& viewMatrix, SkScalar x, SkScalar y, GrColor color, const SkPaint& skPaint,
260 const SkSurfaceProps& props, const GrDistanceFieldAdjustTable* distanceAdjustTable,
Brian Salomonf856fd12016-12-16 14:24:34 -0500261 bool useGammaCorrectDistanceTable, GrAtlasGlyphCache* cache) {
joshualitt2e2202e2015-12-10 11:22:08 -0800262 GrMaskFormat format = info.maskFormat();
263 GrColor subRunColor;
264 if (kARGB_GrMaskFormat == format) {
265 uint8_t paintAlpha = skPaint.getAlpha();
266 subRunColor = SkColorSetARGB(paintAlpha, paintAlpha, paintAlpha, paintAlpha);
267 } else {
268 subRunColor = color;
269 }
270
Brian Salomonf8334782017-01-03 09:42:58 -0500271 std::unique_ptr<GrAtlasTextOp> op;
joshualitt2e2202e2015-12-10 11:22:08 -0800272 if (info.drawAsDistanceFields()) {
273 SkColor filteredColor;
274 SkColorFilter* colorFilter = skPaint.getColorFilter();
275 if (colorFilter) {
276 filteredColor = colorFilter->filterColor(skPaint.getColor());
277 } else {
278 filteredColor = skPaint.getColor();
279 }
280 bool useBGR = SkPixelGeometryIsBGR(props.pixelGeometry());
Brian Salomon09d994e2016-12-21 11:14:46 -0500281 op = GrAtlasTextOp::MakeDistanceField(glyphCount, cache, distanceAdjustTable,
282 useGammaCorrectDistanceTable, filteredColor,
283 info.hasUseLCDText(), useBGR);
joshualitt2e2202e2015-12-10 11:22:08 -0800284 } else {
Brian Salomon09d994e2016-12-21 11:14:46 -0500285 op = GrAtlasTextOp::MakeBitmap(format, glyphCount, cache);
joshualitt2e2202e2015-12-10 11:22:08 -0800286 }
Brian Salomon09d994e2016-12-21 11:14:46 -0500287 GrAtlasTextOp::Geometry& geometry = op->geometry();
joshualitt8e0ef292016-02-19 14:13:03 -0800288 geometry.fViewMatrix = viewMatrix;
joshualitt2e2202e2015-12-10 11:22:08 -0800289 geometry.fBlob = SkRef(this);
290 geometry.fRun = run;
291 geometry.fSubRun = subRun;
292 geometry.fColor = subRunColor;
joshualitt8e0ef292016-02-19 14:13:03 -0800293 geometry.fX = x;
294 geometry.fY = y;
Brian Salomon09d994e2016-12-21 11:14:46 -0500295 op->init();
joshualitt2e2202e2015-12-10 11:22:08 -0800296
Brian Salomon09d994e2016-12-21 11:14:46 -0500297 return std::move(op);
joshualitt2e2202e2015-12-10 11:22:08 -0800298}
299
Brian Salomon82f44312017-01-11 13:42:54 -0500300inline void GrAtlasTextBlob::flushRun(GrRenderTargetContext* rtc, GrPaint&& grPaint,
301 const GrClip& clip, int run, const SkMatrix& viewMatrix,
302 SkScalar x, SkScalar y, const SkPaint& skPaint,
303 const SkSurfaceProps& props,
304 const GrDistanceFieldAdjustTable* distanceAdjustTable,
305 GrAtlasGlyphCache* cache) {
306 int lastRun = fRuns[run].fSubRunInfo.count() - 1;
307 for (int subRun = 0; subRun <= lastRun; subRun++) {
joshualitt2e2202e2015-12-10 11:22:08 -0800308 const Run::SubRunInfo& info = fRuns[run].fSubRunInfo[subRun];
309 int glyphCount = info.glyphCount();
310 if (0 == glyphCount) {
311 continue;
312 }
313
robertphillips640789d2016-07-18 14:56:06 -0700314 GrColor color = grPaint.getColor();
315
Brian Salomonf8334782017-01-03 09:42:58 -0500316 std::unique_ptr<GrDrawOp> op(this->makeOp(info, glyphCount, run, subRun, viewMatrix, x, y,
317 color, skPaint, props, distanceAdjustTable,
318 rtc->isGammaCorrect(), cache));
Brian Salomon82f44312017-01-11 13:42:54 -0500319 GrPipelineBuilder pipelineBuilder(GrPaint::MoveOrClone(grPaint, subRun < lastRun),
320 GrAAType::kNone);
bsalomonbb243832016-07-22 07:10:19 -0700321
Brian Salomon24f19782016-12-13 15:10:11 -0500322 rtc->addDrawOp(pipelineBuilder, clip, std::move(op));
joshualitt2e2202e2015-12-10 11:22:08 -0800323 }
324}
325
joshualitt8e0ef292016-02-19 14:13:03 -0800326static void calculate_translation(bool applyVM,
327 const SkMatrix& newViewMatrix, SkScalar newX, SkScalar newY,
328 const SkMatrix& currentViewMatrix, SkScalar currentX,
329 SkScalar currentY, SkScalar* transX, SkScalar* transY) {
330 if (applyVM) {
331 *transX = newViewMatrix.getTranslateX() +
332 newViewMatrix.getScaleX() * (newX - currentX) +
333 newViewMatrix.getSkewX() * (newY - currentY) -
334 currentViewMatrix.getTranslateX();
335
336 *transY = newViewMatrix.getTranslateY() +
337 newViewMatrix.getSkewY() * (newX - currentX) +
338 newViewMatrix.getScaleY() * (newY - currentY) -
339 currentViewMatrix.getTranslateY();
340 } else {
341 *transX = newX - currentX;
342 *transY = newY - currentY;
343 }
344}
345
346
Brian Osman11052242016-10-27 14:47:55 -0400347void GrAtlasTextBlob::flushBigGlyphs(GrContext* context, GrRenderTargetContext* rtc,
joshualitt2e2202e2015-12-10 11:22:08 -0800348 const GrClip& clip, const SkPaint& skPaint,
joshualitt8e0ef292016-02-19 14:13:03 -0800349 const SkMatrix& viewMatrix, SkScalar x, SkScalar y,
joshualitt2e2202e2015-12-10 11:22:08 -0800350 const SkIRect& clipBounds) {
joshualitt8e0ef292016-02-19 14:13:03 -0800351 SkScalar transX, transY;
joshualitt2e2202e2015-12-10 11:22:08 -0800352 for (int i = 0; i < fBigGlyphs.count(); i++) {
353 GrAtlasTextBlob::BigGlyph& bigGlyph = fBigGlyphs[i];
Jim Van Verth08576e62016-11-16 10:15:23 -0500354 calculate_translation(bigGlyph.fTreatAsBMP, viewMatrix, x, y,
joshualitt8e0ef292016-02-19 14:13:03 -0800355 fInitialViewMatrix, fInitialX, fInitialY, &transX, &transY);
joshualitt2e2202e2015-12-10 11:22:08 -0800356 SkMatrix ctm;
357 ctm.setScale(bigGlyph.fScale, bigGlyph.fScale);
joshualitt8e0ef292016-02-19 14:13:03 -0800358 ctm.postTranslate(bigGlyph.fX + transX, bigGlyph.fY + transY);
Jim Van Verth08576e62016-11-16 10:15:23 -0500359 if (!bigGlyph.fTreatAsBMP) {
joshualitt8e0ef292016-02-19 14:13:03 -0800360 ctm.postConcat(viewMatrix);
joshualitt2e2202e2015-12-10 11:22:08 -0800361 }
362
Brian Osman11052242016-10-27 14:47:55 -0400363 GrBlurUtils::drawPathWithMaskFilter(context, rtc, clip, bigGlyph.fPath,
joshualitt2e2202e2015-12-10 11:22:08 -0800364 skPaint, ctm, nullptr, clipBounds, false);
365 }
366}
367
Brian Osman11052242016-10-27 14:47:55 -0400368void GrAtlasTextBlob::flushRunAsPaths(GrContext* context, GrRenderTargetContext* rtc,
joshualitt2e2202e2015-12-10 11:22:08 -0800369 const SkSurfaceProps& props,
370 const SkTextBlobRunIterator& it,
371 const GrClip& clip, const SkPaint& skPaint,
372 SkDrawFilter* drawFilter, const SkMatrix& viewMatrix,
373 const SkIRect& clipBounds, SkScalar x, SkScalar y) {
374 SkPaint runPaint = skPaint;
375
376 size_t textLen = it.glyphCount() * sizeof(uint16_t);
377 const SkPoint& offset = it.offset();
378
379 it.applyFontToPaint(&runPaint);
380
381 if (drawFilter && !drawFilter->filter(&runPaint, SkDrawFilter::kText_Type)) {
382 return;
383 }
384
joshualitt8e84a1e2016-02-16 11:09:25 -0800385 runPaint.setFlags(GrTextUtils::FilterTextFlags(props, runPaint));
joshualitt2e2202e2015-12-10 11:22:08 -0800386
387 switch (it.positioning()) {
388 case SkTextBlob::kDefault_Positioning:
Brian Osman11052242016-10-27 14:47:55 -0400389 GrTextUtils::DrawTextAsPath(context, rtc, clip, runPaint, viewMatrix,
joshualitt2e2202e2015-12-10 11:22:08 -0800390 (const char *)it.glyphs(),
391 textLen, x + offset.x(), y + offset.y(), clipBounds);
392 break;
393 case SkTextBlob::kHorizontal_Positioning:
Brian Osman11052242016-10-27 14:47:55 -0400394 GrTextUtils::DrawPosTextAsPath(context, rtc, props, clip, runPaint, viewMatrix,
joshualitt2e2202e2015-12-10 11:22:08 -0800395 (const char*)it.glyphs(),
396 textLen, it.pos(), 1, SkPoint::Make(x, y + offset.y()),
397 clipBounds);
398 break;
399 case SkTextBlob::kFull_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(), 2, SkPoint::Make(x, y), clipBounds);
403 break;
404 }
405}
406
Brian Salomon82f44312017-01-11 13:42:54 -0500407void GrAtlasTextBlob::flushCached(GrContext* context, GrRenderTargetContext* rtc,
408 const SkTextBlob* blob, const SkSurfaceProps& props,
joshualitt2e2202e2015-12-10 11:22:08 -0800409 const GrDistanceFieldAdjustTable* distanceAdjustTable,
Brian Salomon82f44312017-01-11 13:42:54 -0500410 const SkPaint& skPaint, GrPaint&& grPaint,
411 SkDrawFilter* drawFilter, const GrClip& clip,
412 const SkMatrix& viewMatrix, const SkIRect& clipBounds, SkScalar x,
413 SkScalar y) {
joshualitt2e2202e2015-12-10 11:22:08 -0800414 // We loop through the runs of the blob, flushing each. If any run is too large, then we flush
415 // it as paths
joshualitt2e2202e2015-12-10 11:22:08 -0800416 SkTextBlobRunIterator it(blob);
417 for (int run = 0; !it.done(); it.next(), run++) {
418 if (fRuns[run].fDrawAsPaths) {
Brian Osman11052242016-10-27 14:47:55 -0400419 this->flushRunAsPaths(context, rtc, props, it, clip, skPaint,
joshualitt2e2202e2015-12-10 11:22:08 -0800420 drawFilter, viewMatrix, clipBounds, x, y);
421 continue;
422 }
Brian Salomon82f44312017-01-11 13:42:54 -0500423 this->flushRun(rtc, GrPaint::MoveOrClone(grPaint, !it.done()), clip, run, viewMatrix, x, y,
424 skPaint, props, distanceAdjustTable, context->getAtlasGlyphCache());
joshualitt2e2202e2015-12-10 11:22:08 -0800425 }
426
427 // Now flush big glyphs
Brian Osman11052242016-10-27 14:47:55 -0400428 this->flushBigGlyphs(context, rtc, clip, skPaint, viewMatrix, x, y, clipBounds);
joshualitt2e2202e2015-12-10 11:22:08 -0800429}
430
Brian Salomon82f44312017-01-11 13:42:54 -0500431void GrAtlasTextBlob::flushThrowaway(GrContext* context, GrRenderTargetContext* rtc,
joshualitt2e2202e2015-12-10 11:22:08 -0800432 const SkSurfaceProps& props,
433 const GrDistanceFieldAdjustTable* distanceAdjustTable,
Brian Salomon82f44312017-01-11 13:42:54 -0500434 const SkPaint& skPaint, GrPaint&& grPaint, const GrClip& clip,
435 const SkMatrix& viewMatrix, const SkIRect& clipBounds,
joshualitt8e0ef292016-02-19 14:13:03 -0800436 SkScalar x, SkScalar y) {
joshualitt2e2202e2015-12-10 11:22:08 -0800437 for (int run = 0; run < fRunCount; run++) {
Brian Salomon82f44312017-01-11 13:42:54 -0500438 this->flushRun(rtc, GrPaint::MoveOrClone(grPaint, run + 1 != fRunCount), clip, run,
439 viewMatrix, x, y, skPaint, props, distanceAdjustTable,
440 context->getAtlasGlyphCache());
joshualitt2e2202e2015-12-10 11:22:08 -0800441 }
442
443 // Now flush big glyphs
Brian Osman11052242016-10-27 14:47:55 -0400444 this->flushBigGlyphs(context, rtc, clip, skPaint, viewMatrix, x, y, clipBounds);
joshualitt2e2202e2015-12-10 11:22:08 -0800445}
446
Brian Salomonf8334782017-01-03 09:42:58 -0500447std::unique_ptr<GrDrawOp> GrAtlasTextBlob::test_makeOp(
448 int glyphCount, int run, int subRun, const SkMatrix& viewMatrix, SkScalar x, SkScalar y,
449 GrColor color, const SkPaint& skPaint, const SkSurfaceProps& props,
450 const GrDistanceFieldAdjustTable* distanceAdjustTable, GrAtlasGlyphCache* cache) {
joshualitt7481e752016-01-22 06:08:48 -0800451 const GrAtlasTextBlob::Run::SubRunInfo& info = fRuns[run].fSubRunInfo[subRun];
Brian Salomon344ec422016-12-15 10:58:41 -0500452 return this->makeOp(info, glyphCount, run, subRun, viewMatrix, x, y, color, skPaint, props,
453 distanceAdjustTable, false, cache);
joshualitt323c2eb2016-01-20 06:48:47 -0800454}
joshualitt2e2202e2015-12-10 11:22:08 -0800455
joshualitt259fbf12015-07-21 11:39:34 -0700456void GrAtlasTextBlob::AssertEqual(const GrAtlasTextBlob& l, const GrAtlasTextBlob& r) {
joshualitt2f2ee832016-02-10 08:52:24 -0800457 SkASSERT_RELEASE(l.fSize == r.fSize);
458 SkASSERT_RELEASE(l.fPool == r.fPool);
joshualitt259fbf12015-07-21 11:39:34 -0700459
joshualitt2f2ee832016-02-10 08:52:24 -0800460 SkASSERT_RELEASE(l.fBlurRec.fSigma == r.fBlurRec.fSigma);
461 SkASSERT_RELEASE(l.fBlurRec.fStyle == r.fBlurRec.fStyle);
462 SkASSERT_RELEASE(l.fBlurRec.fQuality == r.fBlurRec.fQuality);
joshualitt259fbf12015-07-21 11:39:34 -0700463
joshualitt2f2ee832016-02-10 08:52:24 -0800464 SkASSERT_RELEASE(l.fStrokeInfo.fFrameWidth == r.fStrokeInfo.fFrameWidth);
465 SkASSERT_RELEASE(l.fStrokeInfo.fMiterLimit == r.fStrokeInfo.fMiterLimit);
466 SkASSERT_RELEASE(l.fStrokeInfo.fJoin == r.fStrokeInfo.fJoin);
joshualitt259fbf12015-07-21 11:39:34 -0700467
joshualitt2f2ee832016-02-10 08:52:24 -0800468 SkASSERT_RELEASE(l.fBigGlyphs.count() == r.fBigGlyphs.count());
joshualitt259fbf12015-07-21 11:39:34 -0700469 for (int i = 0; i < l.fBigGlyphs.count(); i++) {
470 const BigGlyph& lBigGlyph = l.fBigGlyphs[i];
471 const BigGlyph& rBigGlyph = r.fBigGlyphs[i];
472
joshualitt2f2ee832016-02-10 08:52:24 -0800473 SkASSERT_RELEASE(lBigGlyph.fPath == rBigGlyph.fPath);
joshualitt259fbf12015-07-21 11:39:34 -0700474 // We can't assert that these have the same translations
475 }
476
joshualitt2f2ee832016-02-10 08:52:24 -0800477 SkASSERT_RELEASE(l.fKey == r.fKey);
joshualitt2f2ee832016-02-10 08:52:24 -0800478 //SkASSERT_RELEASE(l.fPaintColor == r.fPaintColor); // Colors might not actually be identical
479 SkASSERT_RELEASE(l.fMaxMinScale == r.fMaxMinScale);
480 SkASSERT_RELEASE(l.fMinMaxScale == r.fMinMaxScale);
481 SkASSERT_RELEASE(l.fTextType == r.fTextType);
joshualitt259fbf12015-07-21 11:39:34 -0700482
joshualitt2f2ee832016-02-10 08:52:24 -0800483 SkASSERT_RELEASE(l.fRunCount == r.fRunCount);
joshualitt259fbf12015-07-21 11:39:34 -0700484 for (int i = 0; i < l.fRunCount; i++) {
485 const Run& lRun = l.fRuns[i];
486 const Run& rRun = r.fRuns[i];
487
joshualitt259fbf12015-07-21 11:39:34 -0700488 if (lRun.fTypeface.get()) {
joshualitt2f2ee832016-02-10 08:52:24 -0800489 SkASSERT_RELEASE(rRun.fTypeface.get());
Hal Canary144caf52016-11-07 17:57:18 -0500490 SkASSERT_RELEASE(SkTypeface::Equal(lRun.fTypeface.get(), rRun.fTypeface.get()));
joshualitt259fbf12015-07-21 11:39:34 -0700491 } else {
joshualitt2f2ee832016-02-10 08:52:24 -0800492 SkASSERT_RELEASE(!rRun.fTypeface.get());
joshualitt259fbf12015-07-21 11:39:34 -0700493 }
494
joshualitt259fbf12015-07-21 11:39:34 -0700495
joshualitt2f2ee832016-02-10 08:52:24 -0800496 SkASSERT_RELEASE(lRun.fDescriptor.getDesc());
497 SkASSERT_RELEASE(rRun.fDescriptor.getDesc());
bsalomonc5d07fa2016-05-17 10:17:45 -0700498 SkASSERT_RELEASE(*lRun.fDescriptor.getDesc() == *rRun.fDescriptor.getDesc());
joshualitt259fbf12015-07-21 11:39:34 -0700499
500 if (lRun.fOverrideDescriptor.get()) {
joshualitt2f2ee832016-02-10 08:52:24 -0800501 SkASSERT_RELEASE(lRun.fOverrideDescriptor->getDesc());
502 SkASSERT_RELEASE(rRun.fOverrideDescriptor.get() && rRun.fOverrideDescriptor->getDesc());
bsalomonc5d07fa2016-05-17 10:17:45 -0700503 SkASSERT_RELEASE(*lRun.fOverrideDescriptor->getDesc() ==
504 *rRun.fOverrideDescriptor->getDesc());
joshualitt259fbf12015-07-21 11:39:34 -0700505 } else {
joshualitt2f2ee832016-02-10 08:52:24 -0800506 SkASSERT_RELEASE(!rRun.fOverrideDescriptor.get());
joshualitt259fbf12015-07-21 11:39:34 -0700507 }
508
509 // color can be changed
510 //SkASSERT(lRun.fColor == rRun.fColor);
joshualitt2f2ee832016-02-10 08:52:24 -0800511 SkASSERT_RELEASE(lRun.fInitialized == rRun.fInitialized);
512 SkASSERT_RELEASE(lRun.fDrawAsPaths == rRun.fDrawAsPaths);
joshualitt259fbf12015-07-21 11:39:34 -0700513
joshualitt2f2ee832016-02-10 08:52:24 -0800514 SkASSERT_RELEASE(lRun.fSubRunInfo.count() == rRun.fSubRunInfo.count());
joshualitt259fbf12015-07-21 11:39:34 -0700515 for(int j = 0; j < lRun.fSubRunInfo.count(); j++) {
516 const Run::SubRunInfo& lSubRun = lRun.fSubRunInfo[j];
517 const Run::SubRunInfo& rSubRun = rRun.fSubRunInfo[j];
518
joshualitt2f2ee832016-02-10 08:52:24 -0800519 // TODO we can do this check, but we have to apply the VM to the old vertex bounds
520 //SkASSERT_RELEASE(lSubRun.vertexBounds() == rSubRun.vertexBounds());
joshualitt259fbf12015-07-21 11:39:34 -0700521
joshualitt2f2ee832016-02-10 08:52:24 -0800522 if (lSubRun.strike()) {
523 SkASSERT_RELEASE(rSubRun.strike());
Brian Salomonf856fd12016-12-16 14:24:34 -0500524 SkASSERT_RELEASE(GrAtlasTextStrike::GetKey(*lSubRun.strike()) ==
525 GrAtlasTextStrike::GetKey(*rSubRun.strike()));
joshualitt2f2ee832016-02-10 08:52:24 -0800526
527 } else {
528 SkASSERT_RELEASE(!rSubRun.strike());
529 }
530
531 SkASSERT_RELEASE(lSubRun.vertexStartIndex() == rSubRun.vertexStartIndex());
532 SkASSERT_RELEASE(lSubRun.vertexEndIndex() == rSubRun.vertexEndIndex());
533 SkASSERT_RELEASE(lSubRun.glyphStartIndex() == rSubRun.glyphStartIndex());
534 SkASSERT_RELEASE(lSubRun.glyphEndIndex() == rSubRun.glyphEndIndex());
535 SkASSERT_RELEASE(lSubRun.maskFormat() == rSubRun.maskFormat());
536 SkASSERT_RELEASE(lSubRun.drawAsDistanceFields() == rSubRun.drawAsDistanceFields());
537 SkASSERT_RELEASE(lSubRun.hasUseLCDText() == rSubRun.hasUseLCDText());
joshualitt259fbf12015-07-21 11:39:34 -0700538 }
539 }
540}
joshualitt8e0ef292016-02-19 14:13:03 -0800541
542void GrAtlasTextBlob::Run::SubRunInfo::computeTranslation(const SkMatrix& viewMatrix,
543 SkScalar x, SkScalar y, SkScalar* transX,
544 SkScalar* transY) {
545 calculate_translation(!this->drawAsDistanceFields(), viewMatrix, x, y,
546 fCurrentViewMatrix, fX, fY, transX, transY);
547 fCurrentViewMatrix = viewMatrix;
548 fX = x;
549 fY = y;
550}