joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 1 | /* |
| 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 | #ifndef GrAtlasTextBlob_DEFINED |
| 9 | #define GrAtlasTextBlob_DEFINED |
| 10 | |
Brian Salomon | f856fd1 | 2016-12-16 14:24:34 -0500 | [diff] [blame] | 11 | #include "GrAtlasGlyphCache.h" |
joshualitt | 259fbf1 | 2015-07-21 11:39:34 -0700 | [diff] [blame] | 12 | #include "GrColor.h" |
Brian Salomon | 2ee084e | 2016-12-16 18:59:19 -0500 | [diff] [blame] | 13 | #include "GrDrawOpAtlas.h" |
joshualitt | 2e2202e | 2015-12-10 11:22:08 -0800 | [diff] [blame] | 14 | #include "GrMemoryPool.h" |
Brian Salomon | 6f1d36c | 2017-01-13 12:02:17 -0500 | [diff] [blame] | 15 | #include "GrTextUtils.h" |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 16 | #include "SkDescriptor.h" |
Mike Reed | 80747ef | 2018-01-23 15:29:32 -0500 | [diff] [blame] | 17 | #include "SkMaskFilterBase.h" |
mtklein | 4e97607 | 2016-08-08 09:06:27 -0700 | [diff] [blame] | 18 | #include "SkOpts.h" |
bsalomon | 8b6fa5e | 2016-05-19 16:23:47 -0700 | [diff] [blame] | 19 | #include "SkPathEffect.h" |
Brian Salomon | 5c6ac64 | 2017-12-19 11:09:32 -0500 | [diff] [blame] | 20 | #include "SkPoint3.h" |
Mike Reed | 274218e | 2018-01-08 15:05:02 -0500 | [diff] [blame] | 21 | #include "SkRectPriv.h" |
joshualitt | 259fbf1 | 2015-07-21 11:39:34 -0700 | [diff] [blame] | 22 | #include "SkSurfaceProps.h" |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 23 | #include "SkTInternalLList.h" |
| 24 | |
joshualitt | 2e2202e | 2015-12-10 11:22:08 -0800 | [diff] [blame] | 25 | struct GrDistanceFieldAdjustTable; |
joshualitt | 9230377 | 2016-02-10 11:55:52 -0800 | [diff] [blame] | 26 | class GrMemoryPool; |
joshualitt | 2e2202e | 2015-12-10 11:22:08 -0800 | [diff] [blame] | 27 | class SkDrawFilter; |
| 28 | class SkTextBlob; |
| 29 | class SkTextBlobRunIterator; |
| 30 | |
joshualitt | 259fbf1 | 2015-07-21 11:39:34 -0700 | [diff] [blame] | 31 | // With this flag enabled, the GrAtlasTextContext will, as a sanity check, regenerate every blob |
| 32 | // that comes in to verify the integrity of its cache |
joshualitt | 2f2ee83 | 2016-02-10 08:52:24 -0800 | [diff] [blame] | 33 | #define CACHE_SANITY_CHECK 0 |
joshualitt | 259fbf1 | 2015-07-21 11:39:34 -0700 | [diff] [blame] | 34 | |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 35 | /* |
| 36 | * A GrAtlasTextBlob contains a fully processed SkTextBlob, suitable for nearly immediate drawing |
| 37 | * on the GPU. These are initially created with valid positions and colors, but invalid |
| 38 | * texture coordinates. The GrAtlasTextBlob itself has a few Blob-wide properties, and also |
| 39 | * consists of a number of runs. Runs inside a blob are flushed individually so they can be |
| 40 | * reordered. |
| 41 | * |
| 42 | * The only thing(aside from a memcopy) required to flush a GrAtlasTextBlob is to ensure that |
| 43 | * the GrAtlas will not evict anything the Blob needs. |
| 44 | * |
| 45 | * Note: This struct should really be named GrCachedAtasTextBlob, but that is too verbose. |
joshualitt | 259fbf1 | 2015-07-21 11:39:34 -0700 | [diff] [blame] | 46 | * |
| 47 | * *WARNING* If you add new fields to this struct, then you may need to to update AssertEqual |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 48 | */ |
joshualitt | 2e2202e | 2015-12-10 11:22:08 -0800 | [diff] [blame] | 49 | class GrAtlasTextBlob : public SkNVRefCnt<GrAtlasTextBlob> { |
| 50 | public: |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 51 | SK_DECLARE_INTERNAL_LLIST_INTERFACE(GrAtlasTextBlob); |
| 52 | |
Brian Salomon | 18923f9 | 2017-11-06 16:26:02 -0500 | [diff] [blame] | 53 | class VertexRegenerator; |
| 54 | |
Robert Phillips | 303cd58 | 2018-02-14 18:54:01 -0500 | [diff] [blame] | 55 | static sk_sp<GrAtlasTextBlob> Make(GrMemoryPool*, int glyphCount, int runCount); |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 56 | |
Brian Salomon | 5c6ac64 | 2017-12-19 11:09:32 -0500 | [diff] [blame] | 57 | /** |
| 58 | * We currently force regeneration of a blob if old or new matrix differ in having perspective. |
| 59 | * If we ever change that then the key must contain the perspectiveness when there are distance |
| 60 | * fields as perspective distance field use 3 component vertex positions and non-perspective |
| 61 | * uses 2. |
| 62 | */ |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 63 | struct Key { |
| 64 | Key() { |
| 65 | sk_bzero(this, sizeof(Key)); |
| 66 | } |
| 67 | uint32_t fUniqueID; |
| 68 | // Color may affect the gamma of the mask we generate, but in a fairly limited way. |
| 69 | // Each color is assigned to on of a fixed number of buckets based on its |
| 70 | // luminance. For each luminance bucket there is a "canonical color" that |
| 71 | // represents the bucket. This functionality is currently only supported for A8 |
| 72 | SkColor fCanonicalColor; |
| 73 | SkPaint::Style fStyle; |
| 74 | SkPixelGeometry fPixelGeometry; |
| 75 | bool fHasBlur; |
brianosman | 8d7ffce | 2016-04-21 08:29:06 -0700 | [diff] [blame] | 76 | uint32_t fScalerContextFlags; |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 77 | |
| 78 | bool operator==(const Key& other) const { |
| 79 | return 0 == memcmp(this, &other, sizeof(Key)); |
| 80 | } |
| 81 | }; |
| 82 | |
joshualitt | 9230377 | 2016-02-10 11:55:52 -0800 | [diff] [blame] | 83 | void setupKey(const GrAtlasTextBlob::Key& key, |
Mike Reed | 80747ef | 2018-01-23 15:29:32 -0500 | [diff] [blame] | 84 | const SkMaskFilterBase::BlurRec& blurRec, |
joshualitt | 9230377 | 2016-02-10 11:55:52 -0800 | [diff] [blame] | 85 | const SkPaint& paint) { |
| 86 | fKey = key; |
| 87 | if (key.fHasBlur) { |
| 88 | fBlurRec = blurRec; |
| 89 | } |
| 90 | if (key.fStyle != SkPaint::kFill_Style) { |
| 91 | fStrokeInfo.fFrameWidth = paint.getStrokeWidth(); |
| 92 | fStrokeInfo.fMiterLimit = paint.getStrokeMiter(); |
| 93 | fStrokeInfo.fJoin = paint.getStrokeJoin(); |
| 94 | } |
| 95 | } |
| 96 | |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 97 | static const Key& GetKey(const GrAtlasTextBlob& blob) { |
| 98 | return blob.fKey; |
| 99 | } |
| 100 | |
| 101 | static uint32_t Hash(const Key& key) { |
mtklein | 4e97607 | 2016-08-08 09:06:27 -0700 | [diff] [blame] | 102 | return SkOpts::hash(&key, sizeof(Key)); |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | void operator delete(void* p) { |
| 106 | GrAtlasTextBlob* blob = reinterpret_cast<GrAtlasTextBlob*>(p); |
Robert Phillips | 303cd58 | 2018-02-14 18:54:01 -0500 | [diff] [blame] | 107 | if (blob->fPool) { |
| 108 | blob->fPool->release(p); |
| 109 | } else { |
| 110 | ::operator delete(p); |
| 111 | } |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 112 | } |
| 113 | void* operator new(size_t) { |
Ben Wagner | b4aab9a | 2017-08-16 10:53:04 -0400 | [diff] [blame] | 114 | SK_ABORT("All blobs are created by placement new."); |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 115 | return sk_malloc_throw(0); |
| 116 | } |
| 117 | |
| 118 | void* operator new(size_t, void* p) { return p; } |
| 119 | void operator delete(void* target, void* placement) { |
| 120 | ::operator delete(target, placement); |
| 121 | } |
| 122 | |
| 123 | bool hasDistanceField() const { return SkToBool(fTextType & kHasDistanceField_TextType); } |
| 124 | bool hasBitmap() const { return SkToBool(fTextType & kHasBitmap_TextType); } |
| 125 | void setHasDistanceField() { fTextType |= kHasDistanceField_TextType; } |
| 126 | void setHasBitmap() { fTextType |= kHasBitmap_TextType; } |
| 127 | |
joshualitt | ddd22d8 | 2016-02-16 06:47:52 -0800 | [diff] [blame] | 128 | int runCount() const { return fRunCount; } |
| 129 | |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 130 | void push_back_run(int currRun) { |
| 131 | SkASSERT(currRun < fRunCount); |
| 132 | if (currRun > 0) { |
| 133 | Run::SubRunInfo& newRun = fRuns[currRun].fSubRunInfo.back(); |
| 134 | Run::SubRunInfo& lastRun = fRuns[currRun - 1].fSubRunInfo.back(); |
| 135 | newRun.setAsSuccessor(lastRun); |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | // sets the last subrun of runIndex to use distance field text |
Brian Salomon | 5c6ac64 | 2017-12-19 11:09:32 -0500 | [diff] [blame] | 140 | void setSubRunHasDistanceFields(int runIndex, bool hasLCD, bool isAntiAlias, bool hasWCoord) { |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 141 | Run& run = fRuns[runIndex]; |
| 142 | Run::SubRunInfo& subRun = run.fSubRunInfo.back(); |
| 143 | subRun.setUseLCDText(hasLCD); |
Jim Van Verth | 90e89b3 | 2017-07-06 16:36:55 -0400 | [diff] [blame] | 144 | subRun.setAntiAliased(isAntiAlias); |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 145 | subRun.setDrawAsDistanceFields(); |
Brian Salomon | 5c6ac64 | 2017-12-19 11:09:32 -0500 | [diff] [blame] | 146 | subRun.setHasWCoord(hasWCoord); |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 147 | } |
| 148 | |
Jim Van Verth | 54d9c88 | 2018-02-08 16:14:48 -0500 | [diff] [blame] | 149 | void setRunPaintFlags(int runIndex, uint16_t paintFlags) { |
| 150 | fRuns[runIndex].fPaintFlags = paintFlags & Run::kPaintFlagsMask; |
Jim Van Verth | 89737de | 2018-02-06 21:30:20 +0000 | [diff] [blame] | 151 | } |
| 152 | |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 153 | void setMinAndMaxScale(SkScalar scaledMax, SkScalar scaledMin) { |
| 154 | // we init fMaxMinScale and fMinMaxScale in the constructor |
| 155 | fMaxMinScale = SkMaxScalar(scaledMax, fMaxMinScale); |
| 156 | fMinMaxScale = SkMinScalar(scaledMin, fMinMaxScale); |
| 157 | } |
| 158 | |
| 159 | // inits the override descriptor on the current run. All following subruns must use this |
| 160 | // descriptor |
| 161 | void initOverride(int runIndex) { |
| 162 | Run& run = fRuns[runIndex]; |
| 163 | // Push back a new subrun to fill and set the override descriptor |
| 164 | run.push_back(); |
| 165 | run.fOverrideDescriptor.reset(new SkAutoDescriptor); |
| 166 | } |
| 167 | |
| 168 | SkGlyphCache* setupCache(int runIndex, |
| 169 | const SkSurfaceProps& props, |
Herb Derby | d8327a8 | 2018-01-22 14:39:27 -0500 | [diff] [blame] | 170 | SkScalerContextFlags scalerContextFlags, |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 171 | const SkPaint& skPaint, |
bungeman | f6d1e60 | 2016-02-22 13:20:28 -0800 | [diff] [blame] | 172 | const SkMatrix* viewMatrix); |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 173 | |
| 174 | // Appends a glyph to the blob. If the glyph is too large, the glyph will be appended |
| 175 | // as a path. |
| 176 | void appendGlyph(int runIndex, |
| 177 | const SkRect& positions, |
| 178 | GrColor color, |
Brian Salomon | f856fd1 | 2016-12-16 14:24:34 -0500 | [diff] [blame] | 179 | GrAtlasTextStrike* strike, |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 180 | GrGlyph* glyph, |
bsalomon | c2878e2 | 2016-05-17 13:18:03 -0700 | [diff] [blame] | 181 | SkGlyphCache*, const SkGlyph& skGlyph, |
Jim Van Verth | 54d9c88 | 2018-02-08 16:14:48 -0500 | [diff] [blame] | 182 | SkScalar x, SkScalar y, SkScalar scale, bool preTransformed); |
| 183 | |
| 184 | // Appends a glyph to the blob as a path only. |
| 185 | void appendPathGlyph(int runIndex, const SkPath& path, |
| 186 | SkScalar x, SkScalar y, SkScalar scale, bool preTransformed); |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 187 | |
Brian Salomon | 5c6ac64 | 2017-12-19 11:09:32 -0500 | [diff] [blame] | 188 | static size_t GetVertexStride(GrMaskFormat maskFormat, bool isDistanceFieldWithWCoord) { |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 189 | switch (maskFormat) { |
| 190 | case kA8_GrMaskFormat: |
Brian Salomon | 5c6ac64 | 2017-12-19 11:09:32 -0500 | [diff] [blame] | 191 | return isDistanceFieldWithWCoord ? kGrayTextDFPerspectiveVASize : kGrayTextVASize; |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 192 | case kARGB_GrMaskFormat: |
Brian Salomon | 5c6ac64 | 2017-12-19 11:09:32 -0500 | [diff] [blame] | 193 | SkASSERT(!isDistanceFieldWithWCoord); |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 194 | return kColorTextVASize; |
| 195 | default: |
Brian Salomon | 5c6ac64 | 2017-12-19 11:09:32 -0500 | [diff] [blame] | 196 | SkASSERT(!isDistanceFieldWithWCoord); |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 197 | return kLCDTextVASize; |
| 198 | } |
| 199 | } |
| 200 | |
Mike Reed | 80747ef | 2018-01-23 15:29:32 -0500 | [diff] [blame] | 201 | bool mustRegenerate(const GrTextUtils::Paint&, const SkMaskFilterBase::BlurRec& blurRec, |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 202 | const SkMatrix& viewMatrix, SkScalar x, SkScalar y); |
| 203 | |
Jim Van Verth | 54d9c88 | 2018-02-08 16:14:48 -0500 | [diff] [blame] | 204 | void flush(GrAtlasGlyphCache*, GrTextUtils::Target*, const SkSurfaceProps& props, |
| 205 | const GrDistanceFieldAdjustTable* distanceAdjustTable, |
| 206 | const GrTextUtils::Paint& paint, const GrClip& clip, |
| 207 | const SkMatrix& viewMatrix, const SkIRect& clipBounds, SkScalar x, |
| 208 | SkScalar y); |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 209 | |
joshualitt | 8e0ef29 | 2016-02-19 14:13:03 -0800 | [diff] [blame] | 210 | void computeSubRunBounds(SkRect* outBounds, int runIndex, int subRunIndex, |
| 211 | const SkMatrix& viewMatrix, SkScalar x, SkScalar y) { |
joshualitt | bc81111 | 2016-02-11 12:42:02 -0800 | [diff] [blame] | 212 | // We don't yet position distance field text on the cpu, so we have to map the vertex bounds |
| 213 | // into device space. |
| 214 | // We handle vertex bounds differently for distance field text and bitmap text because |
| 215 | // the vertex bounds of bitmap text are in device space. If we are flushing multiple runs |
| 216 | // from one blob then we are going to pay the price here of mapping the rect for each run. |
| 217 | const Run& run = fRuns[runIndex]; |
| 218 | const Run::SubRunInfo& subRun = run.fSubRunInfo[subRunIndex]; |
| 219 | *outBounds = subRun.vertexBounds(); |
| 220 | if (subRun.drawAsDistanceFields()) { |
| 221 | // Distance field text is positioned with the (X,Y) as part of the glyph position, |
| 222 | // and currently the view matrix is applied on the GPU |
joshualitt | 8e0ef29 | 2016-02-19 14:13:03 -0800 | [diff] [blame] | 223 | outBounds->offset(x - fInitialX, y - fInitialY); |
| 224 | viewMatrix.mapRect(outBounds); |
joshualitt | bc81111 | 2016-02-11 12:42:02 -0800 | [diff] [blame] | 225 | } else { |
| 226 | // Bitmap text is fully positioned on the CPU, and offset by an (X,Y) translate in |
| 227 | // device space. |
| 228 | SkMatrix boundsMatrix = fInitialViewMatrixInverse; |
| 229 | |
| 230 | boundsMatrix.postTranslate(-fInitialX, -fInitialY); |
| 231 | |
joshualitt | 8e0ef29 | 2016-02-19 14:13:03 -0800 | [diff] [blame] | 232 | boundsMatrix.postTranslate(x, y); |
joshualitt | bc81111 | 2016-02-11 12:42:02 -0800 | [diff] [blame] | 233 | |
joshualitt | 8e0ef29 | 2016-02-19 14:13:03 -0800 | [diff] [blame] | 234 | boundsMatrix.postConcat(viewMatrix); |
joshualitt | bc81111 | 2016-02-11 12:42:02 -0800 | [diff] [blame] | 235 | boundsMatrix.mapRect(outBounds); |
| 236 | |
| 237 | // Due to floating point numerical inaccuracies, we have to round out here |
| 238 | outBounds->roundOut(outBounds); |
| 239 | } |
| 240 | } |
| 241 | |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 242 | // position + local coord |
| 243 | static const size_t kColorTextVASize = sizeof(SkPoint) + sizeof(SkIPoint16); |
| 244 | static const size_t kGrayTextVASize = sizeof(SkPoint) + sizeof(GrColor) + sizeof(SkIPoint16); |
Brian Salomon | 5c6ac64 | 2017-12-19 11:09:32 -0500 | [diff] [blame] | 245 | static const size_t kGrayTextDFPerspectiveVASize = |
| 246 | sizeof(SkPoint3) + sizeof(GrColor) + sizeof(SkIPoint16); |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 247 | static const size_t kLCDTextVASize = kGrayTextVASize; |
Brian Salomon | 5c6ac64 | 2017-12-19 11:09:32 -0500 | [diff] [blame] | 248 | static const size_t kMaxVASize = kGrayTextDFPerspectiveVASize; |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 249 | static const int kVerticesPerGlyph = 4; |
| 250 | |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 251 | static void AssertEqual(const GrAtlasTextBlob&, const GrAtlasTextBlob&); |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 252 | |
| 253 | // The color here is the GrPaint color, and it is used to determine whether we |
| 254 | // have to regenerate LCD text blobs. |
| 255 | // We use this color vs the SkPaint color because it has the colorfilter applied. |
Jim Van Verth | 58c3cce | 2017-10-19 15:50:24 -0400 | [diff] [blame] | 256 | void initReusableBlob(SkColor luminanceColor, const SkMatrix& viewMatrix, |
| 257 | SkScalar x, SkScalar y) { |
Jim Van Verth | bc2cdd1 | 2017-06-08 11:14:35 -0400 | [diff] [blame] | 258 | fLuminanceColor = luminanceColor; |
joshualitt | 7481e75 | 2016-01-22 06:08:48 -0800 | [diff] [blame] | 259 | this->setupViewMatrix(viewMatrix, x, y); |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 260 | } |
| 261 | |
joshualitt | 7481e75 | 2016-01-22 06:08:48 -0800 | [diff] [blame] | 262 | void initThrowawayBlob(const SkMatrix& viewMatrix, SkScalar x, SkScalar y) { |
| 263 | this->setupViewMatrix(viewMatrix, x, y); |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 264 | } |
| 265 | |
joshualitt | 9230377 | 2016-02-10 11:55:52 -0800 | [diff] [blame] | 266 | const Key& key() const { return fKey; } |
| 267 | |
| 268 | ~GrAtlasTextBlob() { |
| 269 | for (int i = 0; i < fRunCount; i++) { |
| 270 | fRuns[i].~Run(); |
| 271 | } |
| 272 | } |
| 273 | |
joshualitt | bc81111 | 2016-02-11 12:42:02 -0800 | [diff] [blame] | 274 | //////////////////////////////////////////////////////////////////////////////////////////////// |
| 275 | // Internal test methods |
Jim Van Verth | 56c3714 | 2017-10-31 14:44:25 -0400 | [diff] [blame] | 276 | std::unique_ptr<GrDrawOp> test_makeOp(int glyphCount, uint16_t run, uint16_t subRun, |
Brian Salomon | 44acb5b | 2017-07-18 19:59:24 -0400 | [diff] [blame] | 277 | const SkMatrix& viewMatrix, SkScalar x, SkScalar y, |
| 278 | const GrTextUtils::Paint&, const SkSurfaceProps&, |
| 279 | const GrDistanceFieldAdjustTable*, GrAtlasGlyphCache*, |
Brian Salomon | f18b1d8 | 2017-10-27 11:30:49 -0400 | [diff] [blame] | 280 | GrTextUtils::Target*); |
joshualitt | bc81111 | 2016-02-11 12:42:02 -0800 | [diff] [blame] | 281 | |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 282 | private: |
joshualitt | 9230377 | 2016-02-10 11:55:52 -0800 | [diff] [blame] | 283 | GrAtlasTextBlob() |
| 284 | : fMaxMinScale(-SK_ScalarMax) |
| 285 | , fMinMaxScale(SK_ScalarMax) |
| 286 | , fTextType(0) {} |
| 287 | |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 288 | |
joshualitt | 8e0ef29 | 2016-02-19 14:13:03 -0800 | [diff] [blame] | 289 | // This function will only be called when we are generating a blob from scratch. We record the |
joshualitt | 7481e75 | 2016-01-22 06:08:48 -0800 | [diff] [blame] | 290 | // initial view matrix and initial offsets(x,y), because we record vertex bounds relative to |
| 291 | // these numbers. When blobs are reused with new matrices, we need to return to model space so |
| 292 | // we can update the vertex bounds appropriately. |
| 293 | void setupViewMatrix(const SkMatrix& viewMatrix, SkScalar x, SkScalar y) { |
joshualitt | 8e0ef29 | 2016-02-19 14:13:03 -0800 | [diff] [blame] | 294 | fInitialViewMatrix = viewMatrix; |
joshualitt | 7481e75 | 2016-01-22 06:08:48 -0800 | [diff] [blame] | 295 | if (!viewMatrix.invert(&fInitialViewMatrixInverse)) { |
| 296 | fInitialViewMatrixInverse = SkMatrix::I(); |
| 297 | SkDebugf("Could not invert viewmatrix\n"); |
| 298 | } |
joshualitt | 8e0ef29 | 2016-02-19 14:13:03 -0800 | [diff] [blame] | 299 | fInitialX = x; |
| 300 | fInitialY = y; |
| 301 | |
| 302 | // make sure all initial subruns have the correct VM and X/Y applied |
| 303 | for (int i = 0; i < fRunCount; i++) { |
| 304 | fRuns[i].fSubRunInfo[0].init(fInitialViewMatrix, x, y); |
| 305 | } |
joshualitt | 7481e75 | 2016-01-22 06:08:48 -0800 | [diff] [blame] | 306 | } |
| 307 | |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 308 | /* |
| 309 | * Each Run inside of the blob can have its texture coordinates regenerated if required. |
| 310 | * To determine if regeneration is necessary, fAtlasGeneration is used. If there have been |
| 311 | * any evictions inside of the atlas, then we will simply regenerate Runs. We could track |
| 312 | * this at a more fine grained level, but its not clear if this is worth it, as evictions |
| 313 | * should be fairly rare. |
| 314 | * |
| 315 | * One additional point, each run can contain glyphs with any of the three mask formats. |
| 316 | * We call these SubRuns. Because a subrun must be a contiguous range, we have to create |
| 317 | * a new subrun each time the mask format changes in a run. In theory, a run can have as |
| 318 | * many SubRuns as it has glyphs, ie if a run alternates between color emoji and A8. In |
| 319 | * practice, the vast majority of runs have only a single subrun. |
| 320 | * |
| 321 | * Finally, for runs where the entire thing is too large for the GrAtlasTextContext to |
Jim Van Verth | f4c1316 | 2018-01-11 16:40:24 -0500 | [diff] [blame] | 322 | * handle, we have a bit to mark the run as flushable via rendering as paths or as scaled |
| 323 | * glyphs. It would be a bit expensive to figure out ahead of time whether or not a run |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 324 | * can flush in this manner, so we always allocate vertices for the run, regardless of |
| 325 | * whether or not it is too large. The benefit of this strategy is that we can always reuse |
| 326 | * a blob allocation regardless of viewmatrix changes. We could store positions for these |
Jim Van Verth | f4c1316 | 2018-01-11 16:40:24 -0500 | [diff] [blame] | 327 | * glyphs, however, it's not clear if this is a win because we'd still have to either go to the |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 328 | * glyph cache to get the path at flush time, or hold onto the path in the cache, which |
| 329 | * would greatly increase the memory of these cached items. |
| 330 | */ |
| 331 | struct Run { |
Jim Van Verth | 54d9c88 | 2018-02-08 16:14:48 -0500 | [diff] [blame] | 332 | Run() : fPaintFlags(0) |
| 333 | , fInitialized(false) { |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 334 | // To ensure we always have one subrun, we push back a fresh run here |
| 335 | fSubRunInfo.push_back(); |
| 336 | } |
| 337 | struct SubRunInfo { |
| 338 | SubRunInfo() |
Brian Salomon | 2ee084e | 2016-12-16 18:59:19 -0500 | [diff] [blame] | 339 | : fAtlasGeneration(GrDrawOpAtlas::kInvalidAtlasGeneration) |
| 340 | , fVertexStartIndex(0) |
| 341 | , fVertexEndIndex(0) |
| 342 | , fGlyphStartIndex(0) |
| 343 | , fGlyphEndIndex(0) |
| 344 | , fColor(GrColor_ILLEGAL) |
| 345 | , fMaskFormat(kA8_GrMaskFormat) |
Jim Van Verth | 90e89b3 | 2017-07-06 16:36:55 -0400 | [diff] [blame] | 346 | , fFlags(0) { |
Mike Reed | 274218e | 2018-01-08 15:05:02 -0500 | [diff] [blame] | 347 | fVertexBounds = SkRectPriv::MakeLargestInverted(); |
joshualitt | 7481e75 | 2016-01-22 06:08:48 -0800 | [diff] [blame] | 348 | } |
joshualitt | 7e97b0b | 2015-07-31 15:18:08 -0700 | [diff] [blame] | 349 | SubRunInfo(const SubRunInfo& that) |
| 350 | : fBulkUseToken(that.fBulkUseToken) |
| 351 | , fStrike(SkSafeRef(that.fStrike.get())) |
joshualitt | 8e0ef29 | 2016-02-19 14:13:03 -0800 | [diff] [blame] | 352 | , fCurrentViewMatrix(that.fCurrentViewMatrix) |
joshualitt | 7481e75 | 2016-01-22 06:08:48 -0800 | [diff] [blame] | 353 | , fVertexBounds(that.fVertexBounds) |
joshualitt | 7e97b0b | 2015-07-31 15:18:08 -0700 | [diff] [blame] | 354 | , fAtlasGeneration(that.fAtlasGeneration) |
| 355 | , fVertexStartIndex(that.fVertexStartIndex) |
| 356 | , fVertexEndIndex(that.fVertexEndIndex) |
| 357 | , fGlyphStartIndex(that.fGlyphStartIndex) |
| 358 | , fGlyphEndIndex(that.fGlyphEndIndex) |
joshualitt | 8e0ef29 | 2016-02-19 14:13:03 -0800 | [diff] [blame] | 359 | , fX(that.fX) |
| 360 | , fY(that.fY) |
joshualitt | f9e658b | 2015-12-09 09:26:44 -0800 | [diff] [blame] | 361 | , fColor(that.fColor) |
joshualitt | 7e97b0b | 2015-07-31 15:18:08 -0700 | [diff] [blame] | 362 | , fMaskFormat(that.fMaskFormat) |
Jim Van Verth | 90e89b3 | 2017-07-06 16:36:55 -0400 | [diff] [blame] | 363 | , fFlags(that.fFlags) { |
joshualitt | 7e97b0b | 2015-07-31 15:18:08 -0700 | [diff] [blame] | 364 | } |
joshualitt | 3660d53 | 2015-12-07 11:32:50 -0800 | [diff] [blame] | 365 | |
joshualitt | 18b072d | 2015-12-07 12:26:12 -0800 | [diff] [blame] | 366 | // TODO when this object is more internal, drop the privacy |
joshualitt | 3660d53 | 2015-12-07 11:32:50 -0800 | [diff] [blame] | 367 | void resetBulkUseToken() { fBulkUseToken.reset(); } |
Brian Salomon | 2ee084e | 2016-12-16 18:59:19 -0500 | [diff] [blame] | 368 | GrDrawOpAtlas::BulkUseTokenUpdater* bulkUseToken() { return &fBulkUseToken; } |
Brian Salomon | f856fd1 | 2016-12-16 14:24:34 -0500 | [diff] [blame] | 369 | void setStrike(GrAtlasTextStrike* strike) { fStrike.reset(SkRef(strike)); } |
| 370 | GrAtlasTextStrike* strike() const { return fStrike.get(); } |
joshualitt | 3660d53 | 2015-12-07 11:32:50 -0800 | [diff] [blame] | 371 | |
| 372 | void setAtlasGeneration(uint64_t atlasGeneration) { fAtlasGeneration = atlasGeneration;} |
| 373 | uint64_t atlasGeneration() const { return fAtlasGeneration; } |
| 374 | |
| 375 | size_t byteCount() const { return fVertexEndIndex - fVertexStartIndex; } |
joshualitt | 3660d53 | 2015-12-07 11:32:50 -0800 | [diff] [blame] | 376 | size_t vertexStartIndex() const { return fVertexStartIndex; } |
joshualitt | 3660d53 | 2015-12-07 11:32:50 -0800 | [diff] [blame] | 377 | size_t vertexEndIndex() const { return fVertexEndIndex; } |
| 378 | void appendVertices(size_t vertexStride) { |
| 379 | fVertexEndIndex += vertexStride * kVerticesPerGlyph; |
| 380 | } |
| 381 | |
| 382 | uint32_t glyphCount() const { return fGlyphEndIndex - fGlyphStartIndex; } |
joshualitt | 3660d53 | 2015-12-07 11:32:50 -0800 | [diff] [blame] | 383 | uint32_t glyphStartIndex() const { return fGlyphStartIndex; } |
joshualitt | 3660d53 | 2015-12-07 11:32:50 -0800 | [diff] [blame] | 384 | uint32_t glyphEndIndex() const { return fGlyphEndIndex; } |
| 385 | void glyphAppended() { fGlyphEndIndex++; } |
joshualitt | f9e658b | 2015-12-09 09:26:44 -0800 | [diff] [blame] | 386 | void setColor(GrColor color) { fColor = color; } |
| 387 | GrColor color() const { return fColor; } |
joshualitt | 3660d53 | 2015-12-07 11:32:50 -0800 | [diff] [blame] | 388 | void setMaskFormat(GrMaskFormat format) { fMaskFormat = format; } |
| 389 | GrMaskFormat maskFormat() const { return fMaskFormat; } |
| 390 | |
joshualitt | 18b072d | 2015-12-07 12:26:12 -0800 | [diff] [blame] | 391 | void setAsSuccessor(const SubRunInfo& prev) { |
| 392 | fGlyphStartIndex = prev.glyphEndIndex(); |
| 393 | fGlyphEndIndex = prev.glyphEndIndex(); |
| 394 | |
| 395 | fVertexStartIndex = prev.vertexEndIndex(); |
| 396 | fVertexEndIndex = prev.vertexEndIndex(); |
joshualitt | 8e0ef29 | 2016-02-19 14:13:03 -0800 | [diff] [blame] | 397 | |
| 398 | // copy over viewmatrix settings |
| 399 | this->init(prev.fCurrentViewMatrix, prev.fX, prev.fY); |
joshualitt | 18b072d | 2015-12-07 12:26:12 -0800 | [diff] [blame] | 400 | } |
| 401 | |
joshualitt | 7481e75 | 2016-01-22 06:08:48 -0800 | [diff] [blame] | 402 | const SkRect& vertexBounds() const { return fVertexBounds; } |
| 403 | void joinGlyphBounds(const SkRect& glyphBounds) { |
| 404 | fVertexBounds.joinNonEmptyArg(glyphBounds); |
| 405 | } |
| 406 | |
joshualitt | 8e0ef29 | 2016-02-19 14:13:03 -0800 | [diff] [blame] | 407 | void init(const SkMatrix& viewMatrix, SkScalar x, SkScalar y) { |
| 408 | fCurrentViewMatrix = viewMatrix; |
| 409 | fX = x; |
| 410 | fY = y; |
| 411 | } |
| 412 | |
| 413 | // This function assumes the translation will be applied before it is called again |
| 414 | void computeTranslation(const SkMatrix& viewMatrix, SkScalar x, SkScalar y, |
Brian Salomon | 5c6ac64 | 2017-12-19 11:09:32 -0500 | [diff] [blame] | 415 | SkScalar* transX, SkScalar* transY); |
joshualitt | 8e0ef29 | 2016-02-19 14:13:03 -0800 | [diff] [blame] | 416 | |
joshualitt | 3660d53 | 2015-12-07 11:32:50 -0800 | [diff] [blame] | 417 | // df properties |
Jim Van Verth | 90e89b3 | 2017-07-06 16:36:55 -0400 | [diff] [blame] | 418 | void setDrawAsDistanceFields() { fFlags |= kDrawAsSDF_Flag; } |
| 419 | bool drawAsDistanceFields() const { return SkToBool(fFlags & kDrawAsSDF_Flag); } |
| 420 | void setUseLCDText(bool useLCDText) { |
| 421 | fFlags = useLCDText ? fFlags | kUseLCDText_Flag : fFlags & ~kUseLCDText_Flag; |
| 422 | } |
| 423 | bool hasUseLCDText() const { return SkToBool(fFlags & kUseLCDText_Flag); } |
| 424 | void setAntiAliased(bool antiAliased) { |
| 425 | fFlags = antiAliased ? fFlags | kAntiAliased_Flag : fFlags & ~kAntiAliased_Flag; |
| 426 | } |
| 427 | bool isAntiAliased() const { return SkToBool(fFlags & kAntiAliased_Flag); } |
Brian Salomon | 5c6ac64 | 2017-12-19 11:09:32 -0500 | [diff] [blame] | 428 | void setHasWCoord(bool hasW) { |
| 429 | fFlags = hasW ? (fFlags | kHasWCoord_Flag) : fFlags & ~kHasWCoord_Flag; |
| 430 | } |
| 431 | bool hasWCoord() const { return SkToBool(fFlags & kHasWCoord_Flag); } |
joshualitt | 3660d53 | 2015-12-07 11:32:50 -0800 | [diff] [blame] | 432 | |
| 433 | private: |
Jim Van Verth | 90e89b3 | 2017-07-06 16:36:55 -0400 | [diff] [blame] | 434 | enum Flag { |
| 435 | kDrawAsSDF_Flag = 0x1, |
| 436 | kUseLCDText_Flag = 0x2, |
Brian Salomon | 5c6ac64 | 2017-12-19 11:09:32 -0500 | [diff] [blame] | 437 | kAntiAliased_Flag = 0x4, |
| 438 | kHasWCoord_Flag = 0x8 |
Jim Van Verth | 90e89b3 | 2017-07-06 16:36:55 -0400 | [diff] [blame] | 439 | }; |
| 440 | |
Brian Salomon | 2ee084e | 2016-12-16 18:59:19 -0500 | [diff] [blame] | 441 | GrDrawOpAtlas::BulkUseTokenUpdater fBulkUseToken; |
Brian Salomon | f856fd1 | 2016-12-16 14:24:34 -0500 | [diff] [blame] | 442 | sk_sp<GrAtlasTextStrike> fStrike; |
joshualitt | 8e0ef29 | 2016-02-19 14:13:03 -0800 | [diff] [blame] | 443 | SkMatrix fCurrentViewMatrix; |
joshualitt | 7481e75 | 2016-01-22 06:08:48 -0800 | [diff] [blame] | 444 | SkRect fVertexBounds; |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 445 | uint64_t fAtlasGeneration; |
| 446 | size_t fVertexStartIndex; |
| 447 | size_t fVertexEndIndex; |
| 448 | uint32_t fGlyphStartIndex; |
| 449 | uint32_t fGlyphEndIndex; |
joshualitt | 8e0ef29 | 2016-02-19 14:13:03 -0800 | [diff] [blame] | 450 | SkScalar fX; |
| 451 | SkScalar fY; |
joshualitt | f9e658b | 2015-12-09 09:26:44 -0800 | [diff] [blame] | 452 | GrColor fColor; |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 453 | GrMaskFormat fMaskFormat; |
Jim Van Verth | 90e89b3 | 2017-07-06 16:36:55 -0400 | [diff] [blame] | 454 | uint32_t fFlags; |
Jim Van Verth | 58c3cce | 2017-10-19 15:50:24 -0400 | [diff] [blame] | 455 | }; // SubRunInfo |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 456 | |
| 457 | SubRunInfo& push_back() { |
| 458 | // Forward glyph / vertex information to seed the new sub run |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 459 | SubRunInfo& newSubRun = fSubRunInfo.push_back(); |
joshualitt | 18b072d | 2015-12-07 12:26:12 -0800 | [diff] [blame] | 460 | const SubRunInfo& prevSubRun = fSubRunInfo.fromBack(1); |
joshualitt | e43e3bd | 2015-07-29 11:10:38 -0700 | [diff] [blame] | 461 | |
joshualitt | 18b072d | 2015-12-07 12:26:12 -0800 | [diff] [blame] | 462 | newSubRun.setAsSuccessor(prevSubRun); |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 463 | return newSubRun; |
| 464 | } |
| 465 | static const int kMinSubRuns = 1; |
Hal Canary | 144caf5 | 2016-11-07 17:57:18 -0500 | [diff] [blame] | 466 | sk_sp<SkTypeface> fTypeface; |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 467 | SkSTArray<kMinSubRuns, SubRunInfo> fSubRunInfo; |
| 468 | SkAutoDescriptor fDescriptor; |
bsalomon | 8b6fa5e | 2016-05-19 16:23:47 -0700 | [diff] [blame] | 469 | |
| 470 | // Effects from the paint that are used to build a SkScalerContext. |
| 471 | sk_sp<SkPathEffect> fPathEffect; |
bsalomon | 8b6fa5e | 2016-05-19 16:23:47 -0700 | [diff] [blame] | 472 | sk_sp<SkMaskFilter> fMaskFilter; |
joshualitt | 3660d53 | 2015-12-07 11:32:50 -0800 | [diff] [blame] | 473 | |
| 474 | // Distance field text cannot draw coloremoji, and so has to fall back. However, |
| 475 | // though the distance field text and the coloremoji may share the same run, they |
| 476 | // will have different descriptors. If fOverrideDescriptor is non-nullptr, then it |
| 477 | // will be used in place of the run's descriptor to regen texture coords |
Ben Wagner | 145dbcd | 2016-11-03 14:40:50 -0400 | [diff] [blame] | 478 | std::unique_ptr<SkAutoDescriptor> fOverrideDescriptor; // df properties |
Jim Van Verth | 54d9c88 | 2018-02-08 16:14:48 -0500 | [diff] [blame] | 479 | |
| 480 | // Any glyphs that can't be rendered with the base or override descriptor |
| 481 | // are rendered as paths |
| 482 | struct PathGlyph { |
| 483 | PathGlyph(const SkPath& path, SkScalar x, SkScalar y, SkScalar scale, bool preXformed) |
| 484 | : fPath(path) |
| 485 | , fX(x) |
| 486 | , fY(y) |
| 487 | , fScale(scale) |
| 488 | , fPreTransformed(preXformed) {} |
| 489 | SkPath fPath; |
| 490 | SkScalar fX; |
| 491 | SkScalar fY; |
| 492 | SkScalar fScale; |
| 493 | bool fPreTransformed; |
| 494 | }; |
| 495 | |
| 496 | SkTArray<PathGlyph> fPathGlyphs; |
| 497 | |
| 498 | struct { |
| 499 | unsigned fPaintFlags : 16; // needed mainly for rendering paths |
| 500 | bool fInitialized : 1; |
| 501 | }; |
| 502 | // the only flags we need to set |
| 503 | static constexpr auto kPaintFlagsMask = SkPaint::kAntiAlias_Flag; |
Jim Van Verth | 58c3cce | 2017-10-19 15:50:24 -0400 | [diff] [blame] | 504 | }; // Run |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 505 | |
Brian Salomon | f18b1d8 | 2017-10-27 11:30:49 -0400 | [diff] [blame] | 506 | inline std::unique_ptr<GrAtlasTextOp> makeOp( |
Jim Van Verth | 56c3714 | 2017-10-31 14:44:25 -0400 | [diff] [blame] | 507 | const Run::SubRunInfo& info, int glyphCount, uint16_t run, uint16_t subRun, |
Brian Salomon | f18b1d8 | 2017-10-27 11:30:49 -0400 | [diff] [blame] | 508 | const SkMatrix& viewMatrix, SkScalar x, SkScalar y, const SkIRect& clipRect, |
| 509 | const GrTextUtils::Paint& paint, const SkSurfaceProps& props, |
| 510 | const GrDistanceFieldAdjustTable* distanceAdjustTable, GrAtlasGlyphCache* cache, |
| 511 | GrTextUtils::Target*); |
joshualitt | 323c2eb | 2016-01-20 06:48:47 -0800 | [diff] [blame] | 512 | |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 513 | struct StrokeInfo { |
| 514 | SkScalar fFrameWidth; |
| 515 | SkScalar fMiterLimit; |
| 516 | SkPaint::Join fJoin; |
| 517 | }; |
| 518 | |
| 519 | enum TextType { |
| 520 | kHasDistanceField_TextType = 0x1, |
| 521 | kHasBitmap_TextType = 0x2, |
| 522 | }; |
| 523 | |
| 524 | // all glyph / vertex offsets are into these pools. |
Brian Salomon | 18923f9 | 2017-11-06 16:26:02 -0500 | [diff] [blame] | 525 | char* fVertices; |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 526 | GrGlyph** fGlyphs; |
| 527 | Run* fRuns; |
Robert Phillips | 303cd58 | 2018-02-14 18:54:01 -0500 | [diff] [blame] | 528 | GrMemoryPool* fPool; // this will be null when DDLs are being recorded |
Mike Reed | 80747ef | 2018-01-23 15:29:32 -0500 | [diff] [blame] | 529 | SkMaskFilterBase::BlurRec fBlurRec; |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 530 | StrokeInfo fStrokeInfo; |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 531 | Key fKey; |
joshualitt | 8e0ef29 | 2016-02-19 14:13:03 -0800 | [diff] [blame] | 532 | SkMatrix fInitialViewMatrix; |
joshualitt | 7481e75 | 2016-01-22 06:08:48 -0800 | [diff] [blame] | 533 | SkMatrix fInitialViewMatrixInverse; |
joshualitt | 2f2ee83 | 2016-02-10 08:52:24 -0800 | [diff] [blame] | 534 | size_t fSize; |
Jim Van Verth | bc2cdd1 | 2017-06-08 11:14:35 -0400 | [diff] [blame] | 535 | SkColor fLuminanceColor; |
joshualitt | 7481e75 | 2016-01-22 06:08:48 -0800 | [diff] [blame] | 536 | SkScalar fInitialX; |
| 537 | SkScalar fInitialY; |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 538 | |
| 539 | // We can reuse distance field text, but only if the new viewmatrix would not result in |
| 540 | // a mip change. Because there can be multiple runs in a blob, we track the overall |
| 541 | // maximum minimum scale, and minimum maximum scale, we can support before we need to regen |
| 542 | SkScalar fMaxMinScale; |
| 543 | SkScalar fMinMaxScale; |
| 544 | int fRunCount; |
| 545 | uint8_t fTextType; |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 546 | }; |
| 547 | |
Brian Salomon | 18923f9 | 2017-11-06 16:26:02 -0500 | [diff] [blame] | 548 | /** |
| 549 | * Used to produce vertices for a subrun of a blob. The vertices are cached in the blob itself. |
| 550 | * This is invoked each time a sub run is drawn. It regenerates the vertex data as required either |
| 551 | * because of changes to the atlas or because of different draw parameters (e.g. color change). In |
| 552 | * rare cases the draw may have to interrupted and flushed in the middle of the sub run in order to |
| 553 | * free up atlas space. Thus, this generator is stateful and should be invoked in a loop until the |
| 554 | * entire sub run has been completed. |
| 555 | */ |
| 556 | class GrAtlasTextBlob::VertexRegenerator { |
| 557 | public: |
| 558 | /** |
| 559 | * Consecutive VertexRegenerators often use the same SkGlyphCache. If the same instance of |
| 560 | * SkAutoGlyphCache is reused then it can save the cost of multiple detach/attach operations of |
| 561 | * SkGlyphCache. |
| 562 | */ |
Robert Phillips | 59ddc6d | 2018-02-21 21:56:35 +0000 | [diff] [blame] | 563 | VertexRegenerator(GrAtlasTextBlob* blob, int runIdx, int subRunIdx, const SkMatrix& viewMatrix, |
| 564 | SkScalar x, SkScalar y, GrColor color, GrDeferredUploadTarget*, |
| 565 | GrAtlasGlyphCache*, SkAutoGlyphCache*); |
Brian Salomon | 18923f9 | 2017-11-06 16:26:02 -0500 | [diff] [blame] | 566 | |
| 567 | struct Result { |
| 568 | /** |
| 569 | * Was regenerate() able to draw all the glyphs from the sub run? If not flush all glyph |
| 570 | * draws and call regenerate() again. |
| 571 | */ |
| 572 | bool fFinished = true; |
| 573 | |
| 574 | /** |
| 575 | * How many glyphs were regenerated. Will be equal to the sub run's glyph count if |
| 576 | * fType is kFinished. |
| 577 | */ |
| 578 | int fGlyphsRegenerated = 0; |
| 579 | |
| 580 | /** |
| 581 | * Pointer where the caller finds the first regenerated vertex. |
| 582 | */ |
| 583 | const char* fFirstVertex; |
| 584 | }; |
| 585 | |
| 586 | Result regenerate(); |
| 587 | |
| 588 | private: |
| 589 | template <bool regenPos, bool regenCol, bool regenTexCoords, bool regenGlyphs> |
| 590 | Result doRegen(); |
| 591 | |
| 592 | const SkMatrix& fViewMatrix; |
| 593 | GrAtlasTextBlob* fBlob; |
| 594 | GrDeferredUploadTarget* fUploadTarget; |
| 595 | GrAtlasGlyphCache* fGlyphCache; |
| 596 | SkAutoGlyphCache* fLazyCache; |
| 597 | Run* fRun; |
| 598 | Run::SubRunInfo* fSubRun; |
Brian Salomon | 18923f9 | 2017-11-06 16:26:02 -0500 | [diff] [blame] | 599 | GrColor fColor; |
| 600 | SkScalar fTransX; |
| 601 | SkScalar fTransY; |
| 602 | |
| 603 | uint32_t fRegenFlags = 0; |
| 604 | int fCurrGlyph = 0; |
| 605 | bool fBrokenRun = false; |
| 606 | }; |
| 607 | |
joshualitt | 374b2f7 | 2015-07-21 08:05:03 -0700 | [diff] [blame] | 608 | #endif |