| /* |
| * Copyright 2015 Google Inc. |
| * |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| |
| #include "include/core/SkColorFilter.h" |
| #include "include/gpu/GrContext.h" |
| #include "include/private/SkTemplates.h" |
| #include "src/core/SkMaskFilterBase.h" |
| #include "src/core/SkPaintPriv.h" |
| #include "src/gpu/GrBlurUtils.h" |
| #include "src/gpu/GrClip.h" |
| #include "src/gpu/GrStyle.h" |
| #include "src/gpu/geometry/GrShape.h" |
| #include "src/gpu/ops/GrAtlasTextOp.h" |
| #include "src/gpu/text/GrAtlasManager.h" |
| #include "src/gpu/text/GrTextBlob.h" |
| #include "src/gpu/text/GrTextTarget.h" |
| |
| #include <cstddef> |
| #include <new> |
| |
| static SkVector calculate_translation(bool applyVM, |
| const SkMatrix& drawMatrix, SkPoint drawOrigin, |
| const SkMatrix& currentViewMatrix, SkPoint currentOrigin) { |
| SkVector translate; |
| if (applyVM) { |
| translate.fX = drawMatrix.getTranslateX() + |
| drawMatrix.getScaleX() * (drawOrigin.x() - currentOrigin.x()) + |
| drawMatrix.getSkewX() * (drawOrigin.y() - currentOrigin.y()) - |
| currentViewMatrix.getTranslateX(); |
| |
| translate.fY = drawMatrix.getTranslateY() + |
| drawMatrix.getSkewY() * (drawOrigin.x() - currentOrigin.x()) + |
| drawMatrix.getScaleY() * (drawOrigin.y() - currentOrigin.y()) - |
| currentViewMatrix.getTranslateY(); |
| } else { |
| translate = drawOrigin - currentOrigin; |
| } |
| |
| return translate; |
| } |
| |
| static SkMatrix make_inverse(const SkMatrix& matrix) { |
| SkMatrix inverseMatrix; |
| if (!matrix.invert(&inverseMatrix)) { |
| inverseMatrix = SkMatrix::I(); |
| } |
| return inverseMatrix; |
| } |
| |
| // -- GrTextBlob::Key ------------------------------------------------------------------------------ |
| GrTextBlob::Key::Key() { sk_bzero(this, sizeof(Key)); } |
| |
| bool GrTextBlob::Key::operator==(const GrTextBlob::Key& other) const { |
| return 0 == memcmp(this, &other, sizeof(Key)); |
| } |
| |
| // -- GrTextBlob::PathGlyph ------------------------------------------------------------------------ |
| GrTextBlob::PathGlyph::PathGlyph(const SkPath& path, SkPoint origin) |
| : fPath(path) |
| , fOrigin(origin) {} |
| |
| // -- GrTextBlob::SubRun --------------------------------------------------------------------------- |
| // Hold data to draw the different types of sub run. SubRuns are produced knowing all the |
| // glyphs that are included in them. |
| class GrTextBlob::SubRun { |
| public: |
| // SubRun for masks |
| SubRun(SubRunType type, |
| GrTextBlob* textBlob, |
| const SkStrikeSpec& strikeSpec, |
| GrMaskFormat format, |
| const SkSpan<GrGlyph*>& glyphs, const SkSpan<char>& vertexData, |
| sk_sp<GrTextStrike>&& grStrike); |
| |
| // SubRun for paths |
| SubRun(GrTextBlob* textBlob, const SkStrikeSpec& strikeSpec); |
| |
| void appendGlyphs(const SkZip<SkGlyphVariant, SkPoint>& drawables); |
| |
| // TODO when this object is more internal, drop the privacy |
| void resetBulkUseToken(); |
| GrDrawOpAtlas::BulkUseTokenUpdater* bulkUseToken(); |
| void setStrike(sk_sp<GrTextStrike> strike); |
| GrTextStrike* strike() const; |
| |
| void setAtlasGeneration(uint64_t atlasGeneration); |
| uint64_t atlasGeneration() const; |
| |
| void setColor(GrColor color); |
| GrColor color() const; |
| |
| GrMaskFormat maskFormat() const; |
| |
| size_t vertexStride() const; |
| size_t colorOffset() const; |
| char* quadStart(size_t index) const; |
| |
| const SkRect& vertexBounds() const; |
| void joinGlyphBounds(const SkRect& glyphBounds); |
| |
| // This function assumes the translation will be applied before it is called again |
| SkVector computeTranslation(const SkMatrix& drawMatrix, SkPoint drawOrigin); |
| |
| bool drawAsDistanceFields() const; |
| bool drawAsPaths() const; |
| bool needsTransform() const; |
| |
| void updateTranslation(SkVector translation); |
| void updateColor(GrColor newColor); |
| |
| // df properties |
| void setUseLCDText(bool useLCDText); |
| bool hasUseLCDText() const; |
| void setAntiAliased(bool antiAliased); |
| bool isAntiAliased() const; |
| |
| const SkStrikeSpec& strikeSpec() const; |
| |
| SubRun* fNextSubRun{nullptr}; |
| const SubRunType fType; |
| GrTextBlob* const fBlob; |
| const GrMaskFormat fMaskFormat; |
| const SkSpan<GrGlyph*> fGlyphs; |
| const SkSpan<char> fVertexData; |
| const SkStrikeSpec fStrikeSpec; |
| sk_sp<GrTextStrike> fStrike; |
| struct { |
| bool useLCDText:1; |
| bool antiAliased:1; |
| } fFlags{false, false}; |
| GrColor fColor; |
| GrDrawOpAtlas::BulkUseTokenUpdater fBulkUseToken; |
| SkRect fVertexBounds = SkRectPriv::MakeLargestInverted(); |
| uint64_t fAtlasGeneration{GrDrawOpAtlas::kInvalidAtlasGeneration}; |
| SkPoint fCurrentOrigin; |
| SkMatrix fCurrentMatrix; |
| std::vector<PathGlyph> fPaths; |
| |
| private: |
| bool hasW() const; |
| |
| }; // SubRun |
| |
| GrTextBlob::SubRun::SubRun(SubRunType type, GrTextBlob* textBlob, const SkStrikeSpec& strikeSpec, |
| GrMaskFormat format, |
| const SkSpan<GrGlyph*>& glyphs, const SkSpan<char>& vertexData, |
| sk_sp<GrTextStrike>&& grStrike) |
| : fType{type} |
| , fBlob{textBlob} |
| , fMaskFormat{format} |
| , fGlyphs{glyphs} |
| , fVertexData{vertexData} |
| , fStrikeSpec{strikeSpec} |
| , fStrike{grStrike} |
| , fColor{textBlob->fColor} |
| , fCurrentOrigin{textBlob->fInitialOrigin} |
| , fCurrentMatrix{textBlob->fInitialMatrix} { |
| SkASSERT(type != kTransformedPath); |
| textBlob->insertSubRun(this); |
| } |
| |
| GrTextBlob::SubRun::SubRun(GrTextBlob* textBlob, const SkStrikeSpec& strikeSpec) |
| : fType{kTransformedPath} |
| , fBlob{textBlob} |
| , fMaskFormat{kA8_GrMaskFormat} |
| , fGlyphs{SkSpan<GrGlyph*>{}} |
| , fVertexData{SkSpan<char>{}} |
| , fStrikeSpec{strikeSpec} |
| , fStrike{nullptr} |
| , fColor{textBlob->fColor} |
| , fPaths{} { |
| textBlob->insertSubRun(this); |
| } |
| |
| void GrTextBlob::SubRun::appendGlyphs(const SkZip<SkGlyphVariant, SkPoint>& drawables) { |
| GrTextStrike* grStrike = fStrike.get(); |
| SkScalar strikeToSource = fStrikeSpec.strikeToSourceRatio(); |
| GrGlyph** glyphCursor = fGlyphs.data(); |
| char* vertexCursor = fVertexData.data(); |
| GrColor color = this->color(); |
| size_t vertexStride = this->vertexStride(); |
| // We always write the third position component used by SDFs. If it is unused it gets |
| // overwritten. Similarly, we always write the color and the blob will later overwrite it |
| // with texture coords if it is unused. |
| size_t colorOffset = this->colorOffset(); |
| for (auto [variant, pos] : drawables) { |
| SkGlyph* skGlyph = variant; |
| GrGlyph* grGlyph = grStrike->getGlyph(*skGlyph); |
| // Only floor the device coordinates. |
| SkRect dstRect; |
| if (!this->needsTransform()) { |
| pos = {SkScalarFloorToScalar(pos.x()), SkScalarFloorToScalar(pos.y())}; |
| dstRect = grGlyph->destRect(pos); |
| } else { |
| dstRect = grGlyph->destRect(pos, strikeToSource); |
| } |
| |
| this->joinGlyphBounds(dstRect); |
| |
| // V0 |
| *reinterpret_cast<SkPoint3*>(vertexCursor) = {dstRect.fLeft, dstRect.fTop, 1.f}; |
| *reinterpret_cast<GrColor*>(vertexCursor + colorOffset) = color; |
| vertexCursor += vertexStride; |
| |
| // V1 |
| *reinterpret_cast<SkPoint3*>(vertexCursor) = {dstRect.fLeft, dstRect.fBottom, 1.f}; |
| *reinterpret_cast<GrColor*>(vertexCursor + colorOffset) = color; |
| vertexCursor += vertexStride; |
| |
| // V2 |
| *reinterpret_cast<SkPoint3*>(vertexCursor) = {dstRect.fRight, dstRect.fTop, 1.f}; |
| *reinterpret_cast<GrColor*>(vertexCursor + colorOffset) = color; |
| vertexCursor += vertexStride; |
| |
| // V3 |
| *reinterpret_cast<SkPoint3*>(vertexCursor) = {dstRect.fRight, dstRect.fBottom, 1.f}; |
| *reinterpret_cast<GrColor*>(vertexCursor + colorOffset) = color; |
| vertexCursor += vertexStride; |
| |
| *glyphCursor++ = grGlyph; |
| } |
| } |
| |
| void GrTextBlob::SubRun::resetBulkUseToken() { fBulkUseToken.reset(); } |
| |
| GrDrawOpAtlas::BulkUseTokenUpdater* GrTextBlob::SubRun::bulkUseToken() { return &fBulkUseToken; } |
| void GrTextBlob::SubRun::setStrike(sk_sp<GrTextStrike> strike) { fStrike = std::move(strike); } |
| GrTextStrike* GrTextBlob::SubRun::strike() const { return fStrike.get(); } |
| void GrTextBlob::SubRun::setAtlasGeneration(uint64_t atlasGeneration) { fAtlasGeneration = atlasGeneration;} |
| uint64_t GrTextBlob::SubRun::atlasGeneration() const { return fAtlasGeneration; } |
| void GrTextBlob::SubRun::setColor(GrColor color) { fColor = color; } |
| GrColor GrTextBlob::SubRun::color() const { return fColor; } |
| GrMaskFormat GrTextBlob::SubRun::maskFormat() const { return fMaskFormat; } |
| size_t GrTextBlob::SubRun::vertexStride() const { |
| return GetVertexStride(this->maskFormat(), this->hasW()); |
| } |
| size_t GrTextBlob::SubRun::colorOffset() const { |
| return this->hasW() ? offsetof(SDFT3DVertex, color) : offsetof(Mask2DVertex, color); |
| } |
| char* GrTextBlob::SubRun::quadStart(size_t index) const { |
| return SkTAddOffset<char>( |
| fVertexData.data(), index * kVerticesPerGlyph * this->vertexStride()); |
| } |
| |
| const SkRect& GrTextBlob::SubRun::vertexBounds() const { return fVertexBounds; } |
| void GrTextBlob::SubRun::joinGlyphBounds(const SkRect& glyphBounds) { |
| fVertexBounds.joinNonEmptyArg(glyphBounds); |
| } |
| |
| SkVector GrTextBlob::SubRun::computeTranslation( |
| const SkMatrix& drawMatrix, SkPoint drawOrigin){ |
| // Don't use the matrix to translate on distance field for fallback subruns. |
| |
| SkVector translate = calculate_translation( |
| !this->drawAsDistanceFields() && !this->needsTransform(), |
| drawMatrix, drawOrigin, fCurrentMatrix, fCurrentOrigin); |
| |
| // Update SubRun indicating that the vertices now correspond to the origin and matrix used in |
| // the draw. |
| fCurrentMatrix = drawMatrix; |
| fCurrentOrigin = drawOrigin; |
| return translate; |
| } |
| |
| bool GrTextBlob::SubRun::drawAsDistanceFields() const { return fType == kTransformedSDFT; } |
| |
| bool GrTextBlob::SubRun::drawAsPaths() const { return fType == kTransformedPath; } |
| |
| bool GrTextBlob::SubRun::needsTransform() const { |
| return fType == kTransformedPath |
| || fType == kTransformedMask |
| || fType == kTransformedSDFT; |
| } |
| |
| bool GrTextBlob::SubRun::hasW() const { |
| return fBlob->hasW(fType); |
| } |
| |
| void GrTextBlob::SubRun::updateTranslation(SkVector translation) { |
| size_t vertexStride = this->vertexStride(); |
| for(size_t quad = 0; quad < fGlyphs.size(); quad++) { |
| SkPoint* vertexCursor = reinterpret_cast<SkPoint*>(quadStart(quad)); |
| for (int i = 0; i < 4; ++i) { |
| *vertexCursor += translation; |
| vertexCursor = SkTAddOffset<SkPoint>(vertexCursor, vertexStride); |
| } |
| } |
| } |
| |
| void GrTextBlob::SubRun::updateColor(GrColor newColor) { |
| size_t vertexStride = this->vertexStride(); |
| size_t colorOffset = this->colorOffset(); |
| for(size_t quad = 0; quad < fGlyphs.size(); quad++) { |
| GrColor* colorCursor = SkTAddOffset<GrColor>(quadStart(quad), colorOffset); |
| for (int i = 0; i < 4; ++i) { |
| *colorCursor = newColor; |
| colorCursor = SkTAddOffset<GrColor>(colorCursor, vertexStride); |
| } |
| } |
| this->fColor = newColor; |
| } |
| |
| void GrTextBlob::SubRun::setUseLCDText(bool useLCDText) { fFlags.useLCDText = useLCDText; } |
| bool GrTextBlob::SubRun::hasUseLCDText() const { return fFlags.useLCDText; } |
| void GrTextBlob::SubRun::setAntiAliased(bool antiAliased) { fFlags.antiAliased = antiAliased; } |
| bool GrTextBlob::SubRun::isAntiAliased() const { return fFlags.antiAliased; } |
| const SkStrikeSpec& GrTextBlob::SubRun::strikeSpec() const { return fStrikeSpec; } |
| |
| // -- GrTextBlob ----------------------------------------------------------------------------------- |
| void GrTextBlob::operator delete(void* p) { ::operator delete(p); } |
| void* GrTextBlob::operator new(size_t) { SK_ABORT("All blobs are created by placement new."); } |
| void* GrTextBlob::operator new(size_t, void* p) { return p; } |
| |
| GrTextBlob::~GrTextBlob() = default; |
| |
| sk_sp<GrTextBlob> GrTextBlob::Make(const SkGlyphRunList& glyphRunList, |
| GrStrikeCache* strikeCache, |
| const SkMatrix& drawMatrix, |
| GrColor color, |
| bool forceWForDistanceFields) { |
| |
| static_assert(sizeof(ARGB2DVertex) <= sizeof(Mask2DVertex)); |
| static_assert(alignof(ARGB2DVertex) <= alignof(Mask2DVertex)); |
| size_t quadSize = sizeof(Mask2DVertex) * kVerticesPerGlyph; |
| if (drawMatrix.hasPerspective() || forceWForDistanceFields) { |
| static_assert(sizeof(ARGB3DVertex) <= sizeof(SDFT3DVertex)); |
| static_assert(alignof(ARGB3DVertex) <= alignof(SDFT3DVertex)); |
| quadSize = sizeof(SDFT3DVertex) * kVerticesPerGlyph; |
| } |
| |
| // We can use the alignment of SDFT3DVertex as a proxy for all Vertex alignments. |
| static_assert(alignof(SDFT3DVertex) >= alignof(Mask2DVertex)); |
| // Assume there is no padding needed between glyph pointers and vertices. |
| static_assert(alignof(GrGlyph*) >= alignof(SDFT3DVertex)); |
| |
| // In the arena, the layout is GrGlyph*... | SDFT3DVertex... | SubRun, so there is no padding |
| // between GrGlyph* and SDFT3DVertex, but padding is needed between the Mask2DVertex array |
| // and the SubRun. |
| size_t vertexToSubRunPadding = alignof(SDFT3DVertex) - alignof(SubRun); |
| size_t arenaSize = |
| sizeof(GrGlyph*) * glyphRunList.totalGlyphCount() |
| + quadSize * glyphRunList.totalGlyphCount() |
| + glyphRunList.runCount() * (sizeof(SubRun) + vertexToSubRunPadding); |
| |
| size_t allocationSize = sizeof(GrTextBlob) + arenaSize; |
| |
| void* allocation = ::operator new (allocationSize); |
| |
| SkColor initialLuminance = SkPaintPriv::ComputeLuminanceColor(glyphRunList.paint()); |
| sk_sp<GrTextBlob> blob{new (allocation) GrTextBlob{ |
| arenaSize, strikeCache, drawMatrix, glyphRunList.origin(), |
| color, initialLuminance, forceWForDistanceFields}}; |
| |
| return blob; |
| } |
| |
| void GrTextBlob::setupKey(const GrTextBlob::Key& key, const SkMaskFilterBase::BlurRec& blurRec, |
| const SkPaint& paint) { |
| fKey = key; |
| if (key.fHasBlur) { |
| fBlurRec = blurRec; |
| } |
| if (key.fStyle != SkPaint::kFill_Style) { |
| fStrokeInfo.fFrameWidth = paint.getStrokeWidth(); |
| fStrokeInfo.fMiterLimit = paint.getStrokeMiter(); |
| fStrokeInfo.fJoin = paint.getStrokeJoin(); |
| } |
| } |
| const GrTextBlob::Key& GrTextBlob::GetKey(const GrTextBlob& blob) { return blob.fKey; } |
| uint32_t GrTextBlob::Hash(const GrTextBlob::Key& key) { return SkOpts::hash(&key, sizeof(Key)); } |
| |
| bool GrTextBlob::hasDistanceField() const { |
| return SkToBool(fTextType & kHasDistanceField_TextType); |
| } |
| bool GrTextBlob::hasBitmap() const { return SkToBool(fTextType & kHasBitmap_TextType); } |
| bool GrTextBlob::hasPerspective() const { return fInitialMatrix.hasPerspective(); } |
| |
| void GrTextBlob::setHasDistanceField() { fTextType |= kHasDistanceField_TextType; } |
| void GrTextBlob::setHasBitmap() { fTextType |= kHasBitmap_TextType; } |
| void GrTextBlob::setMinAndMaxScale(SkScalar scaledMin, SkScalar scaledMax) { |
| // we init fMaxMinScale and fMinMaxScale in the constructor |
| fMaxMinScale = SkMaxScalar(scaledMin, fMaxMinScale); |
| fMinMaxScale = SkMinScalar(scaledMax, fMinMaxScale); |
| } |
| |
| size_t GrTextBlob::GetVertexStride(GrMaskFormat maskFormat, bool hasWCoord) { |
| switch (maskFormat) { |
| case kA8_GrMaskFormat: |
| return hasWCoord ? sizeof(SDFT3DVertex) : sizeof(Mask2DVertex); |
| case kARGB_GrMaskFormat: |
| return hasWCoord ? sizeof(ARGB3DVertex) : sizeof(ARGB2DVertex); |
| default: |
| SkASSERT(!hasWCoord); |
| return sizeof(Mask2DVertex); |
| } |
| } |
| |
| bool GrTextBlob::mustRegenerate(const SkPaint& paint, bool anyRunHasSubpixelPosition, |
| const SkMaskFilterBase::BlurRec& blurRec, |
| const SkMatrix& drawMatrix, SkPoint drawOrigin) { |
| // If we have LCD text then our canonical color will be set to transparent, in this case we have |
| // to regenerate the blob on any color change |
| // We use the grPaint to get any color filter effects |
| if (fKey.fCanonicalColor == SK_ColorTRANSPARENT && |
| fInitialLuminance != SkPaintPriv::ComputeLuminanceColor(paint)) { |
| return true; |
| } |
| |
| if (fInitialMatrix.hasPerspective() != drawMatrix.hasPerspective()) { |
| return true; |
| } |
| |
| /** This could be relaxed for blobs with only distance field glyphs. */ |
| if (fInitialMatrix.hasPerspective() && !SkMatrixPriv::CheapEqual(fInitialMatrix, drawMatrix)) { |
| return true; |
| } |
| |
| // We only cache one masked version |
| if (fKey.fHasBlur && |
| (fBlurRec.fSigma != blurRec.fSigma || fBlurRec.fStyle != blurRec.fStyle)) { |
| return true; |
| } |
| |
| // Similarly, we only cache one version for each style |
| if (fKey.fStyle != SkPaint::kFill_Style && |
| (fStrokeInfo.fFrameWidth != paint.getStrokeWidth() || |
| fStrokeInfo.fMiterLimit != paint.getStrokeMiter() || |
| fStrokeInfo.fJoin != paint.getStrokeJoin())) { |
| return true; |
| } |
| |
| // Mixed blobs must be regenerated. We could probably figure out a way to do integer scrolls |
| // for mixed blobs if this becomes an issue. |
| if (this->hasBitmap() && this->hasDistanceField()) { |
| // Identical view matrices and we can reuse in all cases |
| return !(SkMatrixPriv::CheapEqual(fInitialMatrix, drawMatrix) && |
| drawOrigin == fInitialOrigin); |
| } |
| |
| if (this->hasBitmap()) { |
| if (fInitialMatrix.getScaleX() != drawMatrix.getScaleX() || |
| fInitialMatrix.getScaleY() != drawMatrix.getScaleY() || |
| fInitialMatrix.getSkewX() != drawMatrix.getSkewX() || |
| fInitialMatrix.getSkewY() != drawMatrix.getSkewY()) { |
| return true; |
| } |
| |
| // TODO(herb): this is not needed for full pixel glyph choice, but is needed to adjust |
| // the quads properly. Devise a system that regenerates the quads from original data |
| // using the transform to allow this to be used in general. |
| |
| // We can update the positions in the text blob without regenerating the whole |
| // blob, but only for integer translations. |
| // This cool bit of math will determine the necessary translation to apply to the |
| // already generated vertex coordinates to move them to the correct position. |
| // Figure out the translation in view space given a translation in source space. |
| SkScalar transX = drawMatrix.getTranslateX() + |
| drawMatrix.getScaleX() * (drawOrigin.x() - fInitialOrigin.x()) + |
| drawMatrix.getSkewX() * (drawOrigin.y() - fInitialOrigin.y()) - |
| fInitialMatrix.getTranslateX(); |
| SkScalar transY = drawMatrix.getTranslateY() + |
| drawMatrix.getSkewY() * (drawOrigin.x() - fInitialOrigin.x()) + |
| drawMatrix.getScaleY() * (drawOrigin.y() - fInitialOrigin.y()) - |
| fInitialMatrix.getTranslateY(); |
| if (!SkScalarIsInt(transX) || !SkScalarIsInt(transY)) { |
| return true; |
| } |
| } else if (this->hasDistanceField()) { |
| // A scale outside of [blob.fMaxMinScale, blob.fMinMaxScale] would result in a different |
| // distance field being generated, so we have to regenerate in those cases |
| SkScalar newMaxScale = drawMatrix.getMaxScale(); |
| SkScalar oldMaxScale = fInitialMatrix.getMaxScale(); |
| SkScalar scaleAdjust = newMaxScale / oldMaxScale; |
| if (scaleAdjust < fMaxMinScale || scaleAdjust > fMinMaxScale) { |
| return true; |
| } |
| } |
| |
| // It is possible that a blob has neither distanceField nor bitmaptext. This is in the case |
| // when all of the runs inside the blob are drawn as paths. In this case, we always regenerate |
| // the blob anyways at flush time, so no need to regenerate explicitly |
| return false; |
| } |
| |
| void GrTextBlob::flush(GrTextTarget* target, const SkSurfaceProps& props, |
| const GrDistanceFieldAdjustTable* distanceAdjustTable, |
| const SkPaint& paint, const SkPMColor4f& filteredColor, const GrClip& clip, |
| const SkMatrix& drawMatrix, SkPoint drawOrigin) { |
| |
| for (SubRun* subRun = fFirstSubRun; subRun != nullptr; subRun = subRun->fNextSubRun) { |
| if (subRun->drawAsPaths()) { |
| SkPaint runPaint{paint}; |
| runPaint.setAntiAlias(subRun->isAntiAliased()); |
| // If there are shaders, blurs or styles, the path must be scaled into source |
| // space independently of the CTM. This allows the CTM to be correct for the |
| // different effects. |
| GrStyle style(runPaint); |
| |
| bool scalePath = runPaint.getShader() |
| || style.applies() |
| || runPaint.getMaskFilter(); |
| |
| // The origin for the blob may have changed, so figure out the delta. |
| SkVector originShift = drawOrigin - fInitialOrigin; |
| |
| for (const auto& pathGlyph : subRun->fPaths) { |
| SkMatrix ctm{drawMatrix}; |
| SkMatrix pathMatrix = SkMatrix::MakeScale( |
| subRun->fStrikeSpec.strikeToSourceRatio()); |
| // Shift the original glyph location in source space to the position of the new |
| // blob. |
| pathMatrix.postTranslate(originShift.x() + pathGlyph.fOrigin.x(), |
| originShift.y() + pathGlyph.fOrigin.y()); |
| |
| // TmpPath must be in the same scope as GrShape shape below. |
| SkTLazy<SkPath> tmpPath; |
| const SkPath* path = &pathGlyph.fPath; |
| if (!scalePath) { |
| // Scale can be applied to CTM -- no effects. |
| ctm.preConcat(pathMatrix); |
| } else { |
| // Scale the outline into source space. |
| |
| // Transform the path form the normalized outline to source space. This |
| // way the CTM will remain the same so it can be used by the effects. |
| SkPath* sourceOutline = tmpPath.init(); |
| path->transform(pathMatrix, sourceOutline); |
| sourceOutline->setIsVolatile(true); |
| path = sourceOutline; |
| } |
| |
| // TODO: we are losing the mutability of the path here |
| GrShape shape(*path, paint); |
| target->drawShape(clip, runPaint, ctm, shape); |
| } |
| } else { |
| int glyphCount = subRun->fGlyphs.size(); |
| if (0 == glyphCount) { |
| continue; |
| } |
| |
| bool skipClip = false; |
| bool submitOp = true; |
| SkIRect clipRect = SkIRect::MakeEmpty(); |
| SkRect rtBounds = SkRect::MakeWH(target->width(), target->height()); |
| SkRRect clipRRect; |
| GrAA aa; |
| // We can clip geometrically if we're not using SDFs or transformed glyphs, |
| // and we have an axis-aligned rectangular non-AA clip |
| if (!subRun->drawAsDistanceFields() && !subRun->needsTransform() && |
| clip.isRRect(rtBounds, &clipRRect, &aa) && |
| clipRRect.isRect() && GrAA::kNo == aa) { |
| skipClip = true; |
| // We only need to do clipping work if the subrun isn't contained by the clip |
| SkRect subRunBounds; |
| this->computeSubRunBounds( |
| &subRunBounds, *subRun, drawMatrix, drawOrigin, false); |
| if (!clipRRect.getBounds().contains(subRunBounds)) { |
| // If the subrun is completely outside, don't add an op for it |
| if (!clipRRect.getBounds().intersects(subRunBounds)) { |
| submitOp = false; |
| } |
| else { |
| clipRRect.getBounds().round(&clipRect); |
| } |
| } |
| } |
| |
| if (submitOp) { |
| auto op = this->makeOp(*subRun, glyphCount, drawMatrix, drawOrigin, |
| clipRect, paint, filteredColor, props, distanceAdjustTable, |
| target); |
| if (op) { |
| if (skipClip) { |
| target->addDrawOp(GrNoClip(), std::move(op)); |
| } |
| else { |
| target->addDrawOp(clip, std::move(op)); |
| } |
| } |
| } |
| } |
| } |
| } |
| |
| void GrTextBlob::computeSubRunBounds(SkRect* outBounds, const SubRun& subRun, |
| const SkMatrix& drawMatrix, SkPoint drawOrigin, |
| bool needsGlyphTransform) { |
| // We don't yet position distance field text on the cpu, so we have to map the vertex bounds |
| // into device space. |
| // We handle vertex bounds differently for distance field text and bitmap text because |
| // the vertex bounds of bitmap text are in device space. If we are flushing multiple runs |
| // from one blob then we are going to pay the price here of mapping the rect for each run. |
| *outBounds = subRun.vertexBounds(); |
| if (needsGlyphTransform) { |
| // Distance field text is positioned with the (X,Y) as part of the glyph position, |
| // and currently the view matrix is applied on the GPU |
| outBounds->offset(drawOrigin - fInitialOrigin); |
| drawMatrix.mapRect(outBounds); |
| } else { |
| // Bitmap text is fully positioned on the CPU, and offset by an (X,Y) translate in |
| // device space. |
| SkMatrix boundsMatrix = fInitialMatrixInverse; |
| |
| boundsMatrix.postTranslate(-fInitialOrigin.x(), -fInitialOrigin.y()); |
| |
| boundsMatrix.postTranslate(drawOrigin.x(), drawOrigin.y()); |
| |
| boundsMatrix.postConcat(drawMatrix); |
| boundsMatrix.mapRect(outBounds); |
| |
| // Due to floating point numerical inaccuracies, we have to round out here |
| outBounds->roundOut(outBounds); |
| } |
| } |
| |
| const GrTextBlob::Key& GrTextBlob::key() const { return fKey; } |
| size_t GrTextBlob::size() const { return fSize; } |
| |
| std::unique_ptr<GrDrawOp> GrTextBlob::test_makeOp( |
| int glyphCount, const SkMatrix& drawMatrix, |
| SkPoint drawOrigin, const SkPaint& paint, const SkPMColor4f& filteredColor, |
| const SkSurfaceProps& props, const GrDistanceFieldAdjustTable* distanceAdjustTable, |
| GrTextTarget* target) { |
| SubRun* info = fFirstSubRun; |
| SkIRect emptyRect = SkIRect::MakeEmpty(); |
| return this->makeOp(*info, glyphCount, drawMatrix, drawOrigin, emptyRect, |
| paint, filteredColor, props, distanceAdjustTable, target); |
| } |
| |
| bool GrTextBlob::hasW(GrTextBlob::SubRunType type) const { |
| if (type == kTransformedSDFT) { |
| return this->hasPerspective() || fForceWForDistanceFields; |
| } else if (type == kTransformedMask || type == kTransformedPath) { |
| return this->hasPerspective(); |
| } |
| |
| // The viewMatrix is implicitly SkMatrix::I when drawing kDirectMask, because it is not |
| // used. |
| return false; |
| } |
| |
| GrTextBlob::SubRun* GrTextBlob::makeSubRun(SubRunType type, |
| const SkZip<SkGlyphVariant, SkPoint>& drawables, |
| const SkStrikeSpec& strikeSpec, |
| GrMaskFormat format) { |
| SkSpan<GrGlyph*> glyphs{fAlloc.makeArrayDefault<GrGlyph*>(drawables.size()), drawables.size()}; |
| bool hasW = this->hasW(type); |
| |
| SkASSERT(!fInitialMatrix.hasPerspective() || hasW); |
| |
| size_t vertexDataSize = drawables.size() * GetVertexStride(format, hasW) * kVerticesPerGlyph; |
| SkSpan<char> vertexData{fAlloc.makeArrayDefault<char>(vertexDataSize), vertexDataSize}; |
| |
| sk_sp<GrTextStrike> grStrike = strikeSpec.findOrCreateGrStrike(fStrikeCache); |
| |
| SubRun* subRun = fAlloc.make<SubRun>( |
| type, this, strikeSpec, format, glyphs, vertexData, std::move(grStrike)); |
| |
| subRun->appendGlyphs(drawables); |
| |
| return subRun; |
| } |
| |
| void GrTextBlob::addSingleMaskFormat( |
| SubRunType type, |
| const SkZip<SkGlyphVariant, SkPoint>& drawables, |
| const SkStrikeSpec& strikeSpec, |
| GrMaskFormat format) { |
| this->makeSubRun(type, drawables, strikeSpec, format); |
| } |
| |
| void GrTextBlob::addMultiMaskFormat( |
| SubRunType type, |
| const SkZip<SkGlyphVariant, SkPoint>& drawables, |
| const SkStrikeSpec& strikeSpec) { |
| this->setHasBitmap(); |
| if (drawables.empty()) { return; } |
| |
| auto glyphSpan = drawables.get<0>(); |
| SkGlyph* glyph = glyphSpan[0]; |
| GrMaskFormat format = GrGlyph::FormatFromSkGlyph(glyph->maskFormat()); |
| size_t startIndex = 0; |
| for (size_t i = 1; i < drawables.size(); i++) { |
| glyph = glyphSpan[i]; |
| GrMaskFormat nextFormat = GrGlyph::FormatFromSkGlyph(glyph->maskFormat()); |
| if (format != nextFormat) { |
| auto sameFormat = drawables.subspan(startIndex, i - startIndex); |
| this->addSingleMaskFormat(type, sameFormat, strikeSpec, format); |
| format = nextFormat; |
| startIndex = i; |
| } |
| } |
| auto sameFormat = drawables.last(drawables.size() - startIndex); |
| this->addSingleMaskFormat(type, sameFormat, strikeSpec, format); |
| } |
| |
| void GrTextBlob::addSDFT(const SkZip<SkGlyphVariant, SkPoint>& drawables, |
| const SkStrikeSpec& strikeSpec, |
| const SkFont& runFont, |
| SkScalar minScale, |
| SkScalar maxScale) { |
| this->setHasDistanceField(); |
| this->setMinAndMaxScale(minScale, maxScale); |
| |
| SubRun* subRun = this->makeSubRun(kTransformedSDFT, drawables, strikeSpec, kA8_GrMaskFormat); |
| subRun->setUseLCDText(runFont.getEdging() == SkFont::Edging::kSubpixelAntiAlias); |
| subRun->setAntiAliased(runFont.hasSomeAntiAliasing()); |
| } |
| |
| GrTextBlob::GrTextBlob(size_t allocSize, |
| GrStrikeCache* strikeCache, |
| const SkMatrix& drawMatrix, |
| SkPoint origin, |
| GrColor color, |
| SkColor initialLuminance, |
| bool forceWForDistanceFields) |
| : fSize{allocSize} |
| , fStrikeCache{strikeCache} |
| , fInitialMatrix{drawMatrix} |
| , fInitialMatrixInverse{make_inverse(drawMatrix)} |
| , fInitialOrigin{origin} |
| , fForceWForDistanceFields{forceWForDistanceFields} |
| , fColor{color} |
| , fInitialLuminance{initialLuminance} |
| , fAlloc{SkTAddOffset<char>(this, sizeof(GrTextBlob)), allocSize, allocSize/2} { } |
| |
| void GrTextBlob::insertSubRun(SubRun* subRun) { |
| if (fFirstSubRun == nullptr) { |
| fFirstSubRun = subRun; |
| fLastSubRun = subRun; |
| } else { |
| fLastSubRun->fNextSubRun = subRun; |
| fLastSubRun = subRun; |
| } |
| } |
| |
| std::unique_ptr<GrAtlasTextOp> GrTextBlob::makeOp( |
| SubRun& info, int glyphCount, |
| const SkMatrix& drawMatrix, SkPoint drawOrigin, const SkIRect& clipRect, |
| const SkPaint& paint, const SkPMColor4f& filteredColor, const SkSurfaceProps& props, |
| const GrDistanceFieldAdjustTable* distanceAdjustTable, GrTextTarget* target) { |
| GrMaskFormat format = info.maskFormat(); |
| |
| GrPaint grPaint; |
| target->makeGrPaint(info.maskFormat(), paint, drawMatrix, &grPaint); |
| std::unique_ptr<GrAtlasTextOp> op; |
| if (info.drawAsDistanceFields()) { |
| // TODO: Can we be even smarter based on the dest transfer function? |
| op = GrAtlasTextOp::MakeDistanceField( |
| target->getContext(), std::move(grPaint), glyphCount, distanceAdjustTable, |
| target->colorInfo().isLinearlyBlended(), SkPaintPriv::ComputeLuminanceColor(paint), |
| props, info.isAntiAliased(), info.hasUseLCDText()); |
| } else { |
| op = GrAtlasTextOp::MakeBitmap(target->getContext(), std::move(grPaint), format, glyphCount, |
| info.needsTransform()); |
| } |
| GrAtlasTextOp::Geometry& geometry = op->geometry(); |
| geometry.fDrawMatrix = drawMatrix; |
| geometry.fClipRect = clipRect; |
| geometry.fBlob = SkRef(this); |
| geometry.fSubRunPtr = &info; |
| geometry.fColor = info.maskFormat() == kARGB_GrMaskFormat ? SK_PMColor4fWHITE : filteredColor; |
| geometry.fDrawOrigin = drawOrigin; |
| op->init(); |
| return op; |
| } |
| |
| void GrTextBlob::processDeviceMasks(const SkZip<SkGlyphVariant, SkPoint>& drawables, |
| const SkStrikeSpec& strikeSpec) { |
| this->addMultiMaskFormat(kDirectMask, drawables, strikeSpec); |
| } |
| |
| void GrTextBlob::processSourcePaths(const SkZip<SkGlyphVariant, SkPoint>& drawables, |
| const SkFont& runFont, |
| const SkStrikeSpec& strikeSpec) { |
| this->setHasBitmap(); |
| SubRun* subRun = fAlloc.make<SubRun>(this, strikeSpec); |
| subRun->setAntiAliased(runFont.hasSomeAntiAliasing()); |
| for (auto [variant, pos] : drawables) { |
| subRun->fPaths.emplace_back(*variant.path(), pos); |
| } |
| } |
| |
| void GrTextBlob::processSourceSDFT(const SkZip<SkGlyphVariant, SkPoint>& drawables, |
| const SkStrikeSpec& strikeSpec, |
| const SkFont& runFont, |
| SkScalar minScale, |
| SkScalar maxScale) { |
| this->addSDFT(drawables, strikeSpec, runFont, minScale, maxScale); |
| } |
| |
| void GrTextBlob::processSourceMasks(const SkZip<SkGlyphVariant, SkPoint>& drawables, |
| const SkStrikeSpec& strikeSpec) { |
| this->addMultiMaskFormat(kTransformedMask, drawables, strikeSpec); |
| } |
| |
| // -- GrTextBlob::VertexRegenerator ---------------------------------------------------------------- |
| static void regen_texcoords(char* vertex, size_t vertexStride, const GrGlyph* glyph, |
| bool useDistanceFields) { |
| // This is a bit wonky, but sometimes we have LCD text, in which case we won't have color |
| // vertices, hence vertexStride - sizeof(SkIPoint16) |
| size_t texCoordOffset = vertexStride - sizeof(SkIPoint16); |
| |
| uint16_t u0, v0, u1, v1; |
| SkASSERT(glyph); |
| int width = glyph->fBounds.width(); |
| int height = glyph->fBounds.height(); |
| |
| if (useDistanceFields) { |
| u0 = glyph->fAtlasLocation.fX + SK_DistanceFieldInset; |
| v0 = glyph->fAtlasLocation.fY + SK_DistanceFieldInset; |
| u1 = u0 + width - 2 * SK_DistanceFieldInset; |
| v1 = v0 + height - 2 * SK_DistanceFieldInset; |
| } else { |
| u0 = glyph->fAtlasLocation.fX; |
| v0 = glyph->fAtlasLocation.fY; |
| u1 = u0 + width; |
| v1 = v0 + height; |
| } |
| // We pack the 2bit page index in the low bit of the u and v texture coords |
| uint32_t pageIndex = glyph->pageIndex(); |
| SkASSERT(pageIndex < 4); |
| uint16_t uBit = (pageIndex >> 1) & 0x1; |
| uint16_t vBit = pageIndex & 0x1; |
| u0 <<= 1; |
| u0 |= uBit; |
| v0 <<= 1; |
| v0 |= vBit; |
| u1 <<= 1; |
| u1 |= uBit; |
| v1 <<= 1; |
| v1 |= vBit; |
| |
| uint16_t* textureCoords = reinterpret_cast<uint16_t*>(vertex + texCoordOffset); |
| textureCoords[0] = u0; |
| textureCoords[1] = v0; |
| textureCoords = SkTAddOffset<uint16_t>(textureCoords, vertexStride); |
| textureCoords[0] = u0; |
| textureCoords[1] = v1; |
| textureCoords = SkTAddOffset<uint16_t>(textureCoords, vertexStride); |
| textureCoords[0] = u1; |
| textureCoords[1] = v0; |
| textureCoords = SkTAddOffset<uint16_t>(textureCoords, vertexStride); |
| textureCoords[0] = u1; |
| textureCoords[1] = v1; |
| |
| #ifdef DISPLAY_PAGE_INDEX |
| // Enable this to visualize the page from which each glyph is being drawn. |
| // Green Red Magenta Cyan -> 0 1 2 3; Black -> error |
| GrColor hackColor; |
| switch (pageIndex) { |
| case 0: |
| hackColor = GrColorPackRGBA(0, 255, 0, 255); |
| break; |
| case 1: |
| hackColor = GrColorPackRGBA(255, 0, 0, 255);; |
| break; |
| case 2: |
| hackColor = GrColorPackRGBA(255, 0, 255, 255); |
| break; |
| case 3: |
| hackColor = GrColorPackRGBA(0, 255, 255, 255); |
| break; |
| default: |
| hackColor = GrColorPackRGBA(0, 0, 0, 255); |
| break; |
| } |
| regen_colors(vertex, vertexStride, hackColor); |
| #endif |
| } |
| |
| GrTextBlob::VertexRegenerator::VertexRegenerator(GrResourceProvider* resourceProvider, |
| GrTextBlob::SubRun* subRun, |
| const SkMatrix& drawMatrix, |
| SkPoint drawOrigin, |
| GrColor color, |
| GrDeferredUploadTarget* uploadTarget, |
| GrStrikeCache* grStrikeCache, |
| GrAtlasManager* fullAtlasManager) |
| : fResourceProvider(resourceProvider) |
| , fDrawMatrix(drawMatrix) |
| , fUploadTarget(uploadTarget) |
| , fGrStrikeCache(grStrikeCache) |
| , fFullAtlasManager(fullAtlasManager) |
| , fSubRun(subRun) |
| , fColor(color) { |
| // Compute translation if any |
| fDrawTranslation = fSubRun->computeTranslation(fDrawMatrix, drawOrigin); |
| |
| // Because the GrStrikeCache may evict the strike a blob depends on using for |
| // generating its texture coords, we have to track whether or not the strike has |
| // been abandoned. If it hasn't been abandoned, then we can use the GrGlyph*s as is |
| // otherwise we have to get the new strike, and use that to get the correct glyphs. |
| // Because we do not have the packed ids, and thus can't look up our glyphs in the |
| // new strike, we instead keep our ref to the old strike and use the packed ids from |
| // it. These ids will still be valid as long as we hold the ref. When we are done |
| // updating our cache of the GrGlyph*s, we drop our ref on the old strike |
| fActions.regenTextureCoordinates = fSubRun->strike()->isAbandoned(); |
| fActions.regenStrike = fSubRun->strike()->isAbandoned(); |
| if (kARGB_GrMaskFormat != fSubRun->maskFormat() && fSubRun->color() != color) { |
| fSubRun->updateColor(color); |
| } |
| if (fDrawTranslation.x() != 0.f || fDrawTranslation.y() != 0.f) { |
| fSubRun->updateTranslation(fDrawTranslation); |
| } |
| } |
| |
| bool GrTextBlob::VertexRegenerator::doRegen(GrTextBlob::VertexRegenerator::Result* result) { |
| SkASSERT(!fActions.regenStrike || fActions.regenTextureCoordinates); |
| if (fActions.regenTextureCoordinates) { |
| fSubRun->resetBulkUseToken(); |
| |
| const SkStrikeSpec& strikeSpec = fSubRun->strikeSpec(); |
| |
| if (!fMetricsAndImages.isValid() |
| || fMetricsAndImages->descriptor() != strikeSpec.descriptor()) { |
| fMetricsAndImages.init(strikeSpec); |
| } |
| |
| if (fActions.regenStrike) { |
| // Take the glyphs from the old strike, and translate them a new strike. |
| sk_sp<GrTextStrike> newStrike = strikeSpec.findOrCreateGrStrike(fGrStrikeCache); |
| |
| // Start this batch at the start of the subRun plus any glyphs that were previously |
| // processed. |
| SkSpan<GrGlyph*> glyphs = fSubRun->fGlyphs.last(fSubRun->fGlyphs.size() - fCurrGlyph); |
| |
| // Convert old glyphs to newStrike. |
| for (auto& glyph : glyphs) { |
| SkPackedGlyphID id = glyph->fPackedID; |
| glyph = newStrike->getGlyph(id, fMetricsAndImages.get()); |
| SkASSERT(id == glyph->fPackedID); |
| } |
| |
| fSubRun->setStrike(newStrike); |
| } |
| } |
| |
| GrTextStrike* grStrike = fSubRun->strike(); |
| auto vertexStride = fSubRun->vertexStride(); |
| char* currVertex = fSubRun->fVertexData.data() + fCurrGlyph * kVerticesPerGlyph * vertexStride; |
| result->fFirstVertex = currVertex; |
| |
| for (int glyphIdx = fCurrGlyph; glyphIdx < (int)fSubRun->fGlyphs.size(); glyphIdx++) { |
| GrGlyph* glyph = nullptr; |
| if (fActions.regenTextureCoordinates) { |
| glyph = fSubRun->fGlyphs[glyphIdx]; |
| SkASSERT(glyph && glyph->fMaskFormat == fSubRun->maskFormat()); |
| |
| if (!fFullAtlasManager->hasGlyph(glyph)) { |
| GrDrawOpAtlas::ErrorCode code = grStrike->addGlyphToAtlas( |
| fResourceProvider, fUploadTarget, fGrStrikeCache, fFullAtlasManager, glyph, |
| fMetricsAndImages.get(), fSubRun->maskFormat(), fSubRun->needsTransform()); |
| if (GrDrawOpAtlas::ErrorCode::kError == code) { |
| // Something horrible has happened - drop the op |
| return false; |
| } |
| else if (GrDrawOpAtlas::ErrorCode::kTryAgain == code) { |
| fBrokenRun = glyphIdx > 0; |
| result->fFinished = false; |
| return true; |
| } |
| } |
| auto tokenTracker = fUploadTarget->tokenTracker(); |
| fFullAtlasManager->addGlyphToBulkAndSetUseToken(fSubRun->bulkUseToken(), glyph, |
| tokenTracker->nextDrawToken()); |
| } |
| |
| if (fActions.regenTextureCoordinates) { |
| regen_texcoords(currVertex, vertexStride, glyph, fSubRun->drawAsDistanceFields()); |
| } |
| |
| currVertex += vertexStride * GrAtlasTextOp::kVerticesPerGlyph; |
| ++result->fGlyphsRegenerated; |
| ++fCurrGlyph; |
| } |
| |
| // We may have changed the color so update it here |
| fSubRun->setColor(fColor); |
| if (fActions.regenTextureCoordinates) { |
| fSubRun->setAtlasGeneration(fBrokenRun |
| ? GrDrawOpAtlas::kInvalidAtlasGeneration |
| : fFullAtlasManager->atlasGeneration(fSubRun->maskFormat())); |
| } else { |
| // For the non-texCoords case we need to ensure that we update the associated use tokens |
| fFullAtlasManager->setUseTokenBulk(*fSubRun->bulkUseToken(), |
| fUploadTarget->tokenTracker()->nextDrawToken(), |
| fSubRun->maskFormat()); |
| } |
| return true; |
| } |
| |
| bool GrTextBlob::VertexRegenerator::regenerate(GrTextBlob::VertexRegenerator::Result* result) { |
| uint64_t currentAtlasGen = fFullAtlasManager->atlasGeneration(fSubRun->maskFormat()); |
| // If regenerate() is called multiple times then the atlas gen may have changed. So we check |
| // this each time. |
| fActions.regenTextureCoordinates |= fSubRun->atlasGeneration() != currentAtlasGen; |
| |
| if (fActions.regenStrike |
| |fActions.regenTextureCoordinates) { |
| return this->doRegen(result); |
| } else { |
| auto vertexStride = fSubRun->vertexStride(); |
| result->fFinished = true; |
| result->fGlyphsRegenerated = fSubRun->fGlyphs.size() - fCurrGlyph; |
| result->fFirstVertex = fSubRun->fVertexData.data() + |
| fCurrGlyph * kVerticesPerGlyph * vertexStride; |
| fCurrGlyph = fSubRun->fGlyphs.size(); |
| |
| // set use tokens for all of the glyphs in our subrun. This is only valid if we |
| // have a valid atlas generation |
| fFullAtlasManager->setUseTokenBulk(*fSubRun->bulkUseToken(), |
| fUploadTarget->tokenTracker()->nextDrawToken(), |
| fSubRun->maskFormat()); |
| return true; |
| } |
| SK_ABORT("Should not get here"); |
| } |
| |
| |
| |
| |