blob: 601eb372ea62b4419e3a75e19b2e9e299a5c40bb [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"
joshualitt2e2202e2015-12-10 11:22:08 -08009#include "GrBlurUtils.h"
10#include "GrContext.h"
bsalomonbb243832016-07-22 07:10:19 -070011#include "GrPipelineBuilder.h"
Brian Salomon344ec422016-12-15 10:58:41 -050012#include "GrRenderTargetContext.h"
joshualitt0a42e682015-12-10 13:20:58 -080013#include "GrTextUtils.h"
joshualitt2e2202e2015-12-10 11:22:08 -080014#include "SkColorFilter.h"
15#include "SkDrawFilter.h"
joshualitte76b4bb2015-12-28 07:23:58 -080016#include "SkGlyphCache.h"
joshualitt2e2202e2015-12-10 11:22:08 -080017#include "SkTextBlobRunIterator.h"
Brian Salomon89527432016-12-16 09:52:16 -050018#include "ops/GrAtlasTextOp.h"
joshualitt2e2202e2015-12-10 11:22:08 -080019
joshualitt92303772016-02-10 11:55:52 -080020GrAtlasTextBlob* GrAtlasTextBlob::Create(GrMemoryPool* pool, int glyphCount, int runCount) {
21 // We allocate size for the GrAtlasTextBlob itself, plus size for the vertices array,
22 // and size for the glyphIds array.
23 size_t verticesCount = glyphCount * kVerticesPerGlyph * kMaxVASize;
24 size_t size = sizeof(GrAtlasTextBlob) +
25 verticesCount +
26 glyphCount * sizeof(GrGlyph**) +
27 sizeof(GrAtlasTextBlob::Run) * runCount;
28
29 void* allocation = pool->allocate(size);
30 if (CACHE_SANITY_CHECK) {
31 sk_bzero(allocation, size);
32 }
33
34 GrAtlasTextBlob* cacheBlob = new (allocation) GrAtlasTextBlob;
35 cacheBlob->fSize = size;
36
37 // setup offsets for vertices / glyphs
38 cacheBlob->fVertices = sizeof(GrAtlasTextBlob) + reinterpret_cast<unsigned char*>(cacheBlob);
39 cacheBlob->fGlyphs = reinterpret_cast<GrGlyph**>(cacheBlob->fVertices + verticesCount);
40 cacheBlob->fRuns = reinterpret_cast<GrAtlasTextBlob::Run*>(cacheBlob->fGlyphs + glyphCount);
41
42 // Initialize runs
43 for (int i = 0; i < runCount; i++) {
44 new (&cacheBlob->fRuns[i]) GrAtlasTextBlob::Run;
45 }
46 cacheBlob->fRunCount = runCount;
47 cacheBlob->fPool = pool;
48 return cacheBlob;
49}
50
joshualitte76b4bb2015-12-28 07:23:58 -080051SkGlyphCache* GrAtlasTextBlob::setupCache(int runIndex,
52 const SkSurfaceProps& props,
brianosmana1e8f8d2016-04-08 06:47:54 -070053 uint32_t scalerContextFlags,
joshualitte76b4bb2015-12-28 07:23:58 -080054 const SkPaint& skPaint,
bungemanf6d1e602016-02-22 13:20:28 -080055 const SkMatrix* viewMatrix) {
joshualitte76b4bb2015-12-28 07:23:58 -080056 GrAtlasTextBlob::Run* run = &fRuns[runIndex];
57
58 // if we have an override descriptor for the run, then we should use that
59 SkAutoDescriptor* desc = run->fOverrideDescriptor.get() ? run->fOverrideDescriptor.get() :
60 &run->fDescriptor;
bsalomon8b6fa5e2016-05-19 16:23:47 -070061 SkScalerContextEffects effects;
62 skPaint.getScalerContextDescriptor(&effects, desc, props, scalerContextFlags, viewMatrix);
joshualitte76b4bb2015-12-28 07:23:58 -080063 run->fTypeface.reset(SkSafeRef(skPaint.getTypeface()));
bsalomon8b6fa5e2016-05-19 16:23:47 -070064 run->fPathEffect = sk_ref_sp(effects.fPathEffect);
65 run->fRasterizer = sk_ref_sp(effects.fRasterizer);
66 run->fMaskFilter = sk_ref_sp(effects.fMaskFilter);
Hal Canary144caf52016-11-07 17:57:18 -050067 return SkGlyphCache::DetachCache(run->fTypeface.get(), effects, desc->getDesc());
joshualitte76b4bb2015-12-28 07:23:58 -080068}
69
joshualittf528e0d2015-12-09 06:42:52 -080070void GrAtlasTextBlob::appendGlyph(int runIndex,
71 const SkRect& positions,
72 GrColor color,
Brian Salomonf856fd12016-12-16 14:24:34 -050073 GrAtlasTextStrike* strike,
joshualitta06e6ab2015-12-10 08:54:41 -080074 GrGlyph* glyph,
bsalomonc2878e22016-05-17 13:18:03 -070075 SkGlyphCache* cache, const SkGlyph& skGlyph,
Jim Van Verth08576e62016-11-16 10:15:23 -050076 SkScalar x, SkScalar y, SkScalar scale, bool treatAsBMP) {
Lee Salzman26d3f212017-01-27 14:31:10 -050077 if (positions.isEmpty()) {
78 return;
79 }
joshualitta06e6ab2015-12-10 08:54:41 -080080
81 // If the glyph is too large we fall back to paths
82 if (glyph->fTooLargeForAtlas) {
Jim Van Verth08576e62016-11-16 10:15:23 -050083 this->appendLargeGlyph(glyph, cache, skGlyph, x, y, scale, treatAsBMP);
joshualitta06e6ab2015-12-10 08:54:41 -080084 return;
85 }
86
joshualittf528e0d2015-12-09 06:42:52 -080087 Run& run = fRuns[runIndex];
88 GrMaskFormat format = glyph->fMaskFormat;
89
90 Run::SubRunInfo* subRun = &run.fSubRunInfo.back();
91 if (run.fInitialized && subRun->maskFormat() != format) {
92 subRun = &run.push_back();
93 subRun->setStrike(strike);
94 } else if (!run.fInitialized) {
95 subRun->setStrike(strike);
96 }
97
98 run.fInitialized = true;
99
100 size_t vertexStride = GetVertexStride(format);
101
102 subRun->setMaskFormat(format);
103
joshualitt7481e752016-01-22 06:08:48 -0800104 subRun->joinGlyphBounds(positions);
joshualittf9e658b2015-12-09 09:26:44 -0800105 subRun->setColor(color);
joshualitt18b072d2015-12-07 12:26:12 -0800106
107 intptr_t vertex = reinterpret_cast<intptr_t>(this->fVertices + subRun->vertexEndIndex());
108
joshualittf528e0d2015-12-09 06:42:52 -0800109 if (kARGB_GrMaskFormat != glyph->fMaskFormat) {
joshualitt18b072d2015-12-07 12:26:12 -0800110 // V0
111 SkPoint* position = reinterpret_cast<SkPoint*>(vertex);
112 position->set(positions.fLeft, positions.fTop);
113 SkColor* colorPtr = reinterpret_cast<SkColor*>(vertex + sizeof(SkPoint));
114 *colorPtr = color;
115 vertex += vertexStride;
116
117 // V1
118 position = reinterpret_cast<SkPoint*>(vertex);
119 position->set(positions.fLeft, positions.fBottom);
120 colorPtr = reinterpret_cast<SkColor*>(vertex + sizeof(SkPoint));
121 *colorPtr = color;
122 vertex += vertexStride;
123
124 // V2
125 position = reinterpret_cast<SkPoint*>(vertex);
126 position->set(positions.fRight, positions.fBottom);
127 colorPtr = reinterpret_cast<SkColor*>(vertex + sizeof(SkPoint));
128 *colorPtr = color;
129 vertex += vertexStride;
130
131 // V3
132 position = reinterpret_cast<SkPoint*>(vertex);
133 position->set(positions.fRight, positions.fTop);
134 colorPtr = reinterpret_cast<SkColor*>(vertex + sizeof(SkPoint));
135 *colorPtr = color;
136 } else {
137 // V0
138 SkPoint* position = reinterpret_cast<SkPoint*>(vertex);
139 position->set(positions.fLeft, positions.fTop);
140 vertex += vertexStride;
141
142 // V1
143 position = reinterpret_cast<SkPoint*>(vertex);
144 position->set(positions.fLeft, positions.fBottom);
145 vertex += vertexStride;
146
147 // V2
148 position = reinterpret_cast<SkPoint*>(vertex);
149 position->set(positions.fRight, positions.fBottom);
150 vertex += vertexStride;
151
152 // V3
153 position = reinterpret_cast<SkPoint*>(vertex);
154 position->set(positions.fRight, positions.fTop);
155 }
156 subRun->appendVertices(vertexStride);
157 fGlyphs[subRun->glyphEndIndex()] = glyph;
158 subRun->glyphAppended();
159}
160
bsalomonc2878e22016-05-17 13:18:03 -0700161void GrAtlasTextBlob::appendLargeGlyph(GrGlyph* glyph, SkGlyphCache* cache, const SkGlyph& skGlyph,
Jim Van Verth08576e62016-11-16 10:15:23 -0500162 SkScalar x, SkScalar y, SkScalar scale, bool treatAsBMP) {
joshualitta06e6ab2015-12-10 08:54:41 -0800163 if (nullptr == glyph->fPath) {
bsalomonc2878e22016-05-17 13:18:03 -0700164 const SkPath* glyphPath = cache->findPath(skGlyph);
joshualitta06e6ab2015-12-10 08:54:41 -0800165 if (!glyphPath) {
166 return;
167 }
168
169 glyph->fPath = new SkPath(*glyphPath);
170 }
Jim Van Verth08576e62016-11-16 10:15:23 -0500171 fBigGlyphs.push_back(GrAtlasTextBlob::BigGlyph(*glyph->fPath, x, y, scale, treatAsBMP));
joshualitta06e6ab2015-12-10 08:54:41 -0800172}
173
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500174bool GrAtlasTextBlob::mustRegenerate(const GrTextUtils::Paint& paint,
175 const SkMaskFilter::BlurRec& blurRec,
joshualittfd5f6c12015-12-10 07:44:50 -0800176 const SkMatrix& viewMatrix, SkScalar x, SkScalar y) {
177 // If we have LCD text then our canonical color will be set to transparent, in this case we have
178 // to regenerate the blob on any color change
179 // We use the grPaint to get any color filter effects
180 if (fKey.fCanonicalColor == SK_ColorTRANSPARENT &&
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500181 fFilteredPaintColor != paint.filteredSkColor()) {
joshualittfd5f6c12015-12-10 07:44:50 -0800182 return true;
183 }
184
joshualitt8e0ef292016-02-19 14:13:03 -0800185 if (fInitialViewMatrix.hasPerspective() != viewMatrix.hasPerspective()) {
joshualittfd5f6c12015-12-10 07:44:50 -0800186 return true;
187 }
188
joshualitt8e0ef292016-02-19 14:13:03 -0800189 if (fInitialViewMatrix.hasPerspective() && !fInitialViewMatrix.cheapEqualTo(viewMatrix)) {
joshualittfd5f6c12015-12-10 07:44:50 -0800190 return true;
191 }
192
193 // We only cache one masked version
194 if (fKey.fHasBlur &&
195 (fBlurRec.fSigma != blurRec.fSigma ||
196 fBlurRec.fStyle != blurRec.fStyle ||
197 fBlurRec.fQuality != blurRec.fQuality)) {
198 return true;
199 }
200
201 // Similarly, we only cache one version for each style
202 if (fKey.fStyle != SkPaint::kFill_Style &&
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500203 (fStrokeInfo.fFrameWidth != paint.skPaint().getStrokeWidth() ||
204 fStrokeInfo.fMiterLimit != paint.skPaint().getStrokeMiter() ||
205 fStrokeInfo.fJoin != paint.skPaint().getStrokeJoin())) {
joshualittfd5f6c12015-12-10 07:44:50 -0800206 return true;
207 }
208
209 // Mixed blobs must be regenerated. We could probably figure out a way to do integer scrolls
210 // for mixed blobs if this becomes an issue.
211 if (this->hasBitmap() && this->hasDistanceField()) {
212 // Identical viewmatrices and we can reuse in all cases
joshualitt8e0ef292016-02-19 14:13:03 -0800213 if (fInitialViewMatrix.cheapEqualTo(viewMatrix) && x == fInitialX && y == fInitialY) {
joshualittfd5f6c12015-12-10 07:44:50 -0800214 return false;
215 }
216 return true;
217 }
218
219 if (this->hasBitmap()) {
joshualitt8e0ef292016-02-19 14:13:03 -0800220 if (fInitialViewMatrix.getScaleX() != viewMatrix.getScaleX() ||
221 fInitialViewMatrix.getScaleY() != viewMatrix.getScaleY() ||
222 fInitialViewMatrix.getSkewX() != viewMatrix.getSkewX() ||
223 fInitialViewMatrix.getSkewY() != viewMatrix.getSkewY()) {
joshualittfd5f6c12015-12-10 07:44:50 -0800224 return true;
225 }
226
227 // We can update the positions in the cachedtextblobs without regenerating the whole blob,
228 // but only for integer translations.
229 // This cool bit of math will determine the necessary translation to apply to the already
230 // generated vertex coordinates to move them to the correct position
231 SkScalar transX = viewMatrix.getTranslateX() +
joshualitt8e0ef292016-02-19 14:13:03 -0800232 viewMatrix.getScaleX() * (x - fInitialX) +
233 viewMatrix.getSkewX() * (y - fInitialY) -
234 fInitialViewMatrix.getTranslateX();
joshualittfd5f6c12015-12-10 07:44:50 -0800235 SkScalar transY = viewMatrix.getTranslateY() +
joshualitt8e0ef292016-02-19 14:13:03 -0800236 viewMatrix.getSkewY() * (x - fInitialX) +
237 viewMatrix.getScaleY() * (y - fInitialY) -
238 fInitialViewMatrix.getTranslateY();
239 if (!SkScalarIsInt(transX) || !SkScalarIsInt(transY)) {
joshualittfd5f6c12015-12-10 07:44:50 -0800240 return true;
241 }
joshualittfd5f6c12015-12-10 07:44:50 -0800242 } else if (this->hasDistanceField()) {
243 // A scale outside of [blob.fMaxMinScale, blob.fMinMaxScale] would result in a different
244 // distance field being generated, so we have to regenerate in those cases
245 SkScalar newMaxScale = viewMatrix.getMaxScale();
joshualitt8e0ef292016-02-19 14:13:03 -0800246 SkScalar oldMaxScale = fInitialViewMatrix.getMaxScale();
joshualittfd5f6c12015-12-10 07:44:50 -0800247 SkScalar scaleAdjust = newMaxScale / oldMaxScale;
248 if (scaleAdjust < fMaxMinScale || scaleAdjust > fMinMaxScale) {
249 return true;
250 }
joshualittfd5f6c12015-12-10 07:44:50 -0800251 }
252
joshualittfd5f6c12015-12-10 07:44:50 -0800253 // It is possible that a blob has neither distanceField nor bitmaptext. This is in the case
254 // when all of the runs inside the blob are drawn as paths. In this case, we always regenerate
255 // the blob anyways at flush time, so no need to regenerate explicitly
256 return false;
257}
258
Brian Salomonf8334782017-01-03 09:42:58 -0500259inline std::unique_ptr<GrDrawOp> GrAtlasTextBlob::makeOp(
Brian Salomon344ec422016-12-15 10:58:41 -0500260 const Run::SubRunInfo& info, int glyphCount, int run, int subRun,
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500261 const SkMatrix& viewMatrix, SkScalar x, SkScalar y, const GrTextUtils::Paint& paint,
Brian Salomon344ec422016-12-15 10:58:41 -0500262 const SkSurfaceProps& props, const GrDistanceFieldAdjustTable* distanceAdjustTable,
Brian Salomonf856fd12016-12-16 14:24:34 -0500263 bool useGammaCorrectDistanceTable, GrAtlasGlyphCache* cache) {
joshualitt2e2202e2015-12-10 11:22:08 -0800264 GrMaskFormat format = info.maskFormat();
joshualitt2e2202e2015-12-10 11:22:08 -0800265
Brian Salomonf8334782017-01-03 09:42:58 -0500266 std::unique_ptr<GrAtlasTextOp> op;
joshualitt2e2202e2015-12-10 11:22:08 -0800267 if (info.drawAsDistanceFields()) {
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500268 SkColor filteredColor = paint.filteredSkColor();
joshualitt2e2202e2015-12-10 11:22:08 -0800269 bool useBGR = SkPixelGeometryIsBGR(props.pixelGeometry());
Brian Salomon09d994e2016-12-21 11:14:46 -0500270 op = GrAtlasTextOp::MakeDistanceField(glyphCount, cache, distanceAdjustTable,
271 useGammaCorrectDistanceTable, filteredColor,
272 info.hasUseLCDText(), useBGR);
joshualitt2e2202e2015-12-10 11:22:08 -0800273 } else {
Brian Salomon09d994e2016-12-21 11:14:46 -0500274 op = GrAtlasTextOp::MakeBitmap(format, glyphCount, cache);
joshualitt2e2202e2015-12-10 11:22:08 -0800275 }
Brian Salomon09d994e2016-12-21 11:14:46 -0500276 GrAtlasTextOp::Geometry& geometry = op->geometry();
joshualitt8e0ef292016-02-19 14:13:03 -0800277 geometry.fViewMatrix = viewMatrix;
joshualitt2e2202e2015-12-10 11:22:08 -0800278 geometry.fBlob = SkRef(this);
279 geometry.fRun = run;
280 geometry.fSubRun = subRun;
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500281 geometry.fColor =
282 info.maskFormat() == kARGB_GrMaskFormat ? GrColor_WHITE : paint.filteredPremulGrColor();
joshualitt8e0ef292016-02-19 14:13:03 -0800283 geometry.fX = x;
284 geometry.fY = y;
Brian Salomon09d994e2016-12-21 11:14:46 -0500285 op->init();
joshualitt2e2202e2015-12-10 11:22:08 -0800286
Brian Salomon09d994e2016-12-21 11:14:46 -0500287 return std::move(op);
joshualitt2e2202e2015-12-10 11:22:08 -0800288}
289
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500290inline void GrAtlasTextBlob::flushRun(GrRenderTargetContext* rtc, const GrClip& clip, int run,
291 const SkMatrix& viewMatrix, SkScalar x, SkScalar y,
292 const GrTextUtils::Paint& paint, const SkSurfaceProps& props,
Brian Salomon82f44312017-01-11 13:42:54 -0500293 const GrDistanceFieldAdjustTable* distanceAdjustTable,
294 GrAtlasGlyphCache* cache) {
295 int lastRun = fRuns[run].fSubRunInfo.count() - 1;
296 for (int subRun = 0; subRun <= lastRun; subRun++) {
joshualitt2e2202e2015-12-10 11:22:08 -0800297 const Run::SubRunInfo& info = fRuns[run].fSubRunInfo[subRun];
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500298 GrPaint grPaint;
299 if (!paint.toGrPaint(info.maskFormat(), rtc, viewMatrix, &grPaint)) {
300 continue;
301 }
joshualitt2e2202e2015-12-10 11:22:08 -0800302 int glyphCount = info.glyphCount();
303 if (0 == glyphCount) {
304 continue;
305 }
306
Brian Salomonf8334782017-01-03 09:42:58 -0500307 std::unique_ptr<GrDrawOp> op(this->makeOp(info, glyphCount, run, subRun, viewMatrix, x, y,
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500308 paint, props, distanceAdjustTable,
Brian Salomonf8334782017-01-03 09:42:58 -0500309 rtc->isGammaCorrect(), cache));
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500310 GrPipelineBuilder pipelineBuilder(std::move(grPaint), GrAAType::kNone);
bsalomonbb243832016-07-22 07:10:19 -0700311
Brian Salomon24f19782016-12-13 15:10:11 -0500312 rtc->addDrawOp(pipelineBuilder, clip, std::move(op));
joshualitt2e2202e2015-12-10 11:22:08 -0800313 }
314}
315
joshualitt8e0ef292016-02-19 14:13:03 -0800316static void calculate_translation(bool applyVM,
317 const SkMatrix& newViewMatrix, SkScalar newX, SkScalar newY,
318 const SkMatrix& currentViewMatrix, SkScalar currentX,
319 SkScalar currentY, SkScalar* transX, SkScalar* transY) {
320 if (applyVM) {
321 *transX = newViewMatrix.getTranslateX() +
322 newViewMatrix.getScaleX() * (newX - currentX) +
323 newViewMatrix.getSkewX() * (newY - currentY) -
324 currentViewMatrix.getTranslateX();
325
326 *transY = newViewMatrix.getTranslateY() +
327 newViewMatrix.getSkewY() * (newX - currentX) +
328 newViewMatrix.getScaleY() * (newY - currentY) -
329 currentViewMatrix.getTranslateY();
330 } else {
331 *transX = newX - currentX;
332 *transY = newY - currentY;
333 }
334}
335
Brian Osman11052242016-10-27 14:47:55 -0400336void GrAtlasTextBlob::flushBigGlyphs(GrContext* context, GrRenderTargetContext* rtc,
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500337 const GrClip& clip, const SkPaint& paint,
joshualitt8e0ef292016-02-19 14:13:03 -0800338 const SkMatrix& viewMatrix, SkScalar x, SkScalar y,
joshualitt2e2202e2015-12-10 11:22:08 -0800339 const SkIRect& clipBounds) {
joshualitt8e0ef292016-02-19 14:13:03 -0800340 SkScalar transX, transY;
joshualitt2e2202e2015-12-10 11:22:08 -0800341 for (int i = 0; i < fBigGlyphs.count(); i++) {
342 GrAtlasTextBlob::BigGlyph& bigGlyph = fBigGlyphs[i];
Jim Van Verth08576e62016-11-16 10:15:23 -0500343 calculate_translation(bigGlyph.fTreatAsBMP, viewMatrix, x, y,
joshualitt8e0ef292016-02-19 14:13:03 -0800344 fInitialViewMatrix, fInitialX, fInitialY, &transX, &transY);
joshualitt2e2202e2015-12-10 11:22:08 -0800345 SkMatrix ctm;
346 ctm.setScale(bigGlyph.fScale, bigGlyph.fScale);
joshualitt8e0ef292016-02-19 14:13:03 -0800347 ctm.postTranslate(bigGlyph.fX + transX, bigGlyph.fY + transY);
Jim Van Verth08576e62016-11-16 10:15:23 -0500348 if (!bigGlyph.fTreatAsBMP) {
joshualitt8e0ef292016-02-19 14:13:03 -0800349 ctm.postConcat(viewMatrix);
joshualitt2e2202e2015-12-10 11:22:08 -0800350 }
351
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500352 GrBlurUtils::drawPathWithMaskFilter(context, rtc, clip, bigGlyph.fPath, paint, ctm, nullptr,
353 clipBounds, false);
joshualitt2e2202e2015-12-10 11:22:08 -0800354 }
355}
356
Brian Osman11052242016-10-27 14:47:55 -0400357void GrAtlasTextBlob::flushRunAsPaths(GrContext* context, GrRenderTargetContext* rtc,
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500358 const SkSurfaceProps& props, const SkTextBlobRunIterator& it,
359 const GrClip& clip, const GrTextUtils::Paint& paint,
joshualitt2e2202e2015-12-10 11:22:08 -0800360 SkDrawFilter* drawFilter, const SkMatrix& viewMatrix,
361 const SkIRect& clipBounds, SkScalar x, SkScalar y) {
joshualitt2e2202e2015-12-10 11:22:08 -0800362 size_t textLen = it.glyphCount() * sizeof(uint16_t);
363 const SkPoint& offset = it.offset();
364
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500365 GrTextUtils::RunPaint runPaint(&paint, drawFilter, props);
366 if (!runPaint.modifyForRun(it)) {
joshualitt2e2202e2015-12-10 11:22:08 -0800367 return;
368 }
369
joshualitt2e2202e2015-12-10 11:22:08 -0800370 switch (it.positioning()) {
371 case SkTextBlob::kDefault_Positioning:
Brian Osman11052242016-10-27 14:47:55 -0400372 GrTextUtils::DrawTextAsPath(context, rtc, clip, runPaint, viewMatrix,
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500373 (const char*)it.glyphs(), textLen, x + offset.x(),
374 y + offset.y(), clipBounds);
joshualitt2e2202e2015-12-10 11:22:08 -0800375 break;
376 case SkTextBlob::kHorizontal_Positioning:
Brian Osman11052242016-10-27 14:47:55 -0400377 GrTextUtils::DrawPosTextAsPath(context, rtc, props, clip, runPaint, viewMatrix,
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500378 (const char*)it.glyphs(), textLen, it.pos(), 1,
379 SkPoint::Make(x, y + offset.y()), clipBounds);
joshualitt2e2202e2015-12-10 11:22:08 -0800380 break;
381 case SkTextBlob::kFull_Positioning:
Brian Osman11052242016-10-27 14:47:55 -0400382 GrTextUtils::DrawPosTextAsPath(context, rtc, props, clip, runPaint, viewMatrix,
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500383 (const char*)it.glyphs(), textLen, it.pos(), 2,
384 SkPoint::Make(x, y), clipBounds);
joshualitt2e2202e2015-12-10 11:22:08 -0800385 break;
386 }
387}
388
Brian Salomon82f44312017-01-11 13:42:54 -0500389void GrAtlasTextBlob::flushCached(GrContext* context, GrRenderTargetContext* rtc,
390 const SkTextBlob* blob, const SkSurfaceProps& props,
joshualitt2e2202e2015-12-10 11:22:08 -0800391 const GrDistanceFieldAdjustTable* distanceAdjustTable,
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500392 const GrTextUtils::Paint& paint, SkDrawFilter* drawFilter,
393 const GrClip& clip, const SkMatrix& viewMatrix,
394 const SkIRect& clipBounds, SkScalar x, SkScalar y) {
joshualitt2e2202e2015-12-10 11:22:08 -0800395 // We loop through the runs of the blob, flushing each. If any run is too large, then we flush
396 // it as paths
joshualitt2e2202e2015-12-10 11:22:08 -0800397 SkTextBlobRunIterator it(blob);
398 for (int run = 0; !it.done(); it.next(), run++) {
399 if (fRuns[run].fDrawAsPaths) {
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500400 this->flushRunAsPaths(context, rtc, props, it, clip, paint, drawFilter, viewMatrix,
401 clipBounds, x, y);
joshualitt2e2202e2015-12-10 11:22:08 -0800402 continue;
403 }
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500404 this->flushRun(rtc, clip, run, viewMatrix, x, y, paint, props, distanceAdjustTable,
405 context->getAtlasGlyphCache());
joshualitt2e2202e2015-12-10 11:22:08 -0800406 }
407
408 // Now flush big glyphs
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500409 this->flushBigGlyphs(context, rtc, clip, paint, viewMatrix, x, y, clipBounds);
joshualitt2e2202e2015-12-10 11:22:08 -0800410}
411
Brian Salomon82f44312017-01-11 13:42:54 -0500412void GrAtlasTextBlob::flushThrowaway(GrContext* context, GrRenderTargetContext* rtc,
joshualitt2e2202e2015-12-10 11:22:08 -0800413 const SkSurfaceProps& props,
414 const GrDistanceFieldAdjustTable* distanceAdjustTable,
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500415 const GrTextUtils::Paint& paint, const GrClip& clip,
Brian Salomon82f44312017-01-11 13:42:54 -0500416 const SkMatrix& viewMatrix, const SkIRect& clipBounds,
joshualitt8e0ef292016-02-19 14:13:03 -0800417 SkScalar x, SkScalar y) {
joshualitt2e2202e2015-12-10 11:22:08 -0800418 for (int run = 0; run < fRunCount; run++) {
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500419 this->flushRun(rtc, clip, run, viewMatrix, x, y, paint, props, distanceAdjustTable,
Brian Salomon82f44312017-01-11 13:42:54 -0500420 context->getAtlasGlyphCache());
joshualitt2e2202e2015-12-10 11:22:08 -0800421 }
422
423 // Now flush big glyphs
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500424 this->flushBigGlyphs(context, rtc, clip, paint, viewMatrix, x, y, clipBounds);
joshualitt2e2202e2015-12-10 11:22:08 -0800425}
426
Brian Salomonf8334782017-01-03 09:42:58 -0500427std::unique_ptr<GrDrawOp> GrAtlasTextBlob::test_makeOp(
428 int glyphCount, int run, int subRun, const SkMatrix& viewMatrix, SkScalar x, SkScalar y,
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500429 const GrTextUtils::Paint& paint, const SkSurfaceProps& props,
Brian Salomonf8334782017-01-03 09:42:58 -0500430 const GrDistanceFieldAdjustTable* distanceAdjustTable, GrAtlasGlyphCache* cache) {
joshualitt7481e752016-01-22 06:08:48 -0800431 const GrAtlasTextBlob::Run::SubRunInfo& info = fRuns[run].fSubRunInfo[subRun];
Brian Salomon6f1d36c2017-01-13 12:02:17 -0500432 return this->makeOp(info, glyphCount, run, subRun, viewMatrix, x, y, paint, props,
Brian Salomon344ec422016-12-15 10:58:41 -0500433 distanceAdjustTable, false, cache);
joshualitt323c2eb2016-01-20 06:48:47 -0800434}
joshualitt2e2202e2015-12-10 11:22:08 -0800435
joshualitt259fbf12015-07-21 11:39:34 -0700436void GrAtlasTextBlob::AssertEqual(const GrAtlasTextBlob& l, const GrAtlasTextBlob& r) {
joshualitt2f2ee832016-02-10 08:52:24 -0800437 SkASSERT_RELEASE(l.fSize == r.fSize);
438 SkASSERT_RELEASE(l.fPool == r.fPool);
joshualitt259fbf12015-07-21 11:39:34 -0700439
joshualitt2f2ee832016-02-10 08:52:24 -0800440 SkASSERT_RELEASE(l.fBlurRec.fSigma == r.fBlurRec.fSigma);
441 SkASSERT_RELEASE(l.fBlurRec.fStyle == r.fBlurRec.fStyle);
442 SkASSERT_RELEASE(l.fBlurRec.fQuality == r.fBlurRec.fQuality);
joshualitt259fbf12015-07-21 11:39:34 -0700443
joshualitt2f2ee832016-02-10 08:52:24 -0800444 SkASSERT_RELEASE(l.fStrokeInfo.fFrameWidth == r.fStrokeInfo.fFrameWidth);
445 SkASSERT_RELEASE(l.fStrokeInfo.fMiterLimit == r.fStrokeInfo.fMiterLimit);
446 SkASSERT_RELEASE(l.fStrokeInfo.fJoin == r.fStrokeInfo.fJoin);
joshualitt259fbf12015-07-21 11:39:34 -0700447
joshualitt2f2ee832016-02-10 08:52:24 -0800448 SkASSERT_RELEASE(l.fBigGlyphs.count() == r.fBigGlyphs.count());
joshualitt259fbf12015-07-21 11:39:34 -0700449 for (int i = 0; i < l.fBigGlyphs.count(); i++) {
450 const BigGlyph& lBigGlyph = l.fBigGlyphs[i];
451 const BigGlyph& rBigGlyph = r.fBigGlyphs[i];
452
joshualitt2f2ee832016-02-10 08:52:24 -0800453 SkASSERT_RELEASE(lBigGlyph.fPath == rBigGlyph.fPath);
joshualitt259fbf12015-07-21 11:39:34 -0700454 // We can't assert that these have the same translations
455 }
456
joshualitt2f2ee832016-02-10 08:52:24 -0800457 SkASSERT_RELEASE(l.fKey == r.fKey);
joshualitt2f2ee832016-02-10 08:52:24 -0800458 //SkASSERT_RELEASE(l.fPaintColor == r.fPaintColor); // Colors might not actually be identical
459 SkASSERT_RELEASE(l.fMaxMinScale == r.fMaxMinScale);
460 SkASSERT_RELEASE(l.fMinMaxScale == r.fMinMaxScale);
461 SkASSERT_RELEASE(l.fTextType == r.fTextType);
joshualitt259fbf12015-07-21 11:39:34 -0700462
joshualitt2f2ee832016-02-10 08:52:24 -0800463 SkASSERT_RELEASE(l.fRunCount == r.fRunCount);
joshualitt259fbf12015-07-21 11:39:34 -0700464 for (int i = 0; i < l.fRunCount; i++) {
465 const Run& lRun = l.fRuns[i];
466 const Run& rRun = r.fRuns[i];
467
joshualitt259fbf12015-07-21 11:39:34 -0700468 if (lRun.fTypeface.get()) {
joshualitt2f2ee832016-02-10 08:52:24 -0800469 SkASSERT_RELEASE(rRun.fTypeface.get());
Hal Canary144caf52016-11-07 17:57:18 -0500470 SkASSERT_RELEASE(SkTypeface::Equal(lRun.fTypeface.get(), rRun.fTypeface.get()));
joshualitt259fbf12015-07-21 11:39:34 -0700471 } else {
joshualitt2f2ee832016-02-10 08:52:24 -0800472 SkASSERT_RELEASE(!rRun.fTypeface.get());
joshualitt259fbf12015-07-21 11:39:34 -0700473 }
474
joshualitt259fbf12015-07-21 11:39:34 -0700475
joshualitt2f2ee832016-02-10 08:52:24 -0800476 SkASSERT_RELEASE(lRun.fDescriptor.getDesc());
477 SkASSERT_RELEASE(rRun.fDescriptor.getDesc());
bsalomonc5d07fa2016-05-17 10:17:45 -0700478 SkASSERT_RELEASE(*lRun.fDescriptor.getDesc() == *rRun.fDescriptor.getDesc());
joshualitt259fbf12015-07-21 11:39:34 -0700479
480 if (lRun.fOverrideDescriptor.get()) {
joshualitt2f2ee832016-02-10 08:52:24 -0800481 SkASSERT_RELEASE(lRun.fOverrideDescriptor->getDesc());
482 SkASSERT_RELEASE(rRun.fOverrideDescriptor.get() && rRun.fOverrideDescriptor->getDesc());
bsalomonc5d07fa2016-05-17 10:17:45 -0700483 SkASSERT_RELEASE(*lRun.fOverrideDescriptor->getDesc() ==
484 *rRun.fOverrideDescriptor->getDesc());
joshualitt259fbf12015-07-21 11:39:34 -0700485 } else {
joshualitt2f2ee832016-02-10 08:52:24 -0800486 SkASSERT_RELEASE(!rRun.fOverrideDescriptor.get());
joshualitt259fbf12015-07-21 11:39:34 -0700487 }
488
489 // color can be changed
490 //SkASSERT(lRun.fColor == rRun.fColor);
joshualitt2f2ee832016-02-10 08:52:24 -0800491 SkASSERT_RELEASE(lRun.fInitialized == rRun.fInitialized);
492 SkASSERT_RELEASE(lRun.fDrawAsPaths == rRun.fDrawAsPaths);
joshualitt259fbf12015-07-21 11:39:34 -0700493
joshualitt2f2ee832016-02-10 08:52:24 -0800494 SkASSERT_RELEASE(lRun.fSubRunInfo.count() == rRun.fSubRunInfo.count());
joshualitt259fbf12015-07-21 11:39:34 -0700495 for(int j = 0; j < lRun.fSubRunInfo.count(); j++) {
496 const Run::SubRunInfo& lSubRun = lRun.fSubRunInfo[j];
497 const Run::SubRunInfo& rSubRun = rRun.fSubRunInfo[j];
498
joshualitt2f2ee832016-02-10 08:52:24 -0800499 // TODO we can do this check, but we have to apply the VM to the old vertex bounds
500 //SkASSERT_RELEASE(lSubRun.vertexBounds() == rSubRun.vertexBounds());
joshualitt259fbf12015-07-21 11:39:34 -0700501
joshualitt2f2ee832016-02-10 08:52:24 -0800502 if (lSubRun.strike()) {
503 SkASSERT_RELEASE(rSubRun.strike());
Brian Salomonf856fd12016-12-16 14:24:34 -0500504 SkASSERT_RELEASE(GrAtlasTextStrike::GetKey(*lSubRun.strike()) ==
505 GrAtlasTextStrike::GetKey(*rSubRun.strike()));
joshualitt2f2ee832016-02-10 08:52:24 -0800506
507 } else {
508 SkASSERT_RELEASE(!rSubRun.strike());
509 }
510
511 SkASSERT_RELEASE(lSubRun.vertexStartIndex() == rSubRun.vertexStartIndex());
512 SkASSERT_RELEASE(lSubRun.vertexEndIndex() == rSubRun.vertexEndIndex());
513 SkASSERT_RELEASE(lSubRun.glyphStartIndex() == rSubRun.glyphStartIndex());
514 SkASSERT_RELEASE(lSubRun.glyphEndIndex() == rSubRun.glyphEndIndex());
515 SkASSERT_RELEASE(lSubRun.maskFormat() == rSubRun.maskFormat());
516 SkASSERT_RELEASE(lSubRun.drawAsDistanceFields() == rSubRun.drawAsDistanceFields());
517 SkASSERT_RELEASE(lSubRun.hasUseLCDText() == rSubRun.hasUseLCDText());
joshualitt259fbf12015-07-21 11:39:34 -0700518 }
519 }
520}
joshualitt8e0ef292016-02-19 14:13:03 -0800521
522void GrAtlasTextBlob::Run::SubRunInfo::computeTranslation(const SkMatrix& viewMatrix,
523 SkScalar x, SkScalar y, SkScalar* transX,
524 SkScalar* transY) {
525 calculate_translation(!this->drawAsDistanceFields(), viewMatrix, x, y,
526 fCurrentViewMatrix, fX, fY, transX, transY);
527 fCurrentViewMatrix = viewMatrix;
528 fX = x;
529 fY = y;
530}