aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrAtlasTextContext.h
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2015-04-17 10:32:32 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-04-17 10:32:32 -0700
commitfec19e1751d1a20748e9beaf0a948c01ffe89f04 (patch)
tree170dff6f43ad4bdff0205fbbb3a28c8df748ebbd /src/gpu/GrAtlasTextContext.h
parentf4fddfc300f983eb221327fa9b1588c3b08262a6 (diff)
Small change to allow DistanceField and BMP text to coexist in a blob
Diffstat (limited to 'src/gpu/GrAtlasTextContext.h')
-rw-r--r--src/gpu/GrAtlasTextContext.h29
1 files changed, 27 insertions, 2 deletions
diff --git a/src/gpu/GrAtlasTextContext.h b/src/gpu/GrAtlasTextContext.h
index 6fd35538f6..cf2ba6bcc2 100644
--- a/src/gpu/GrAtlasTextContext.h
+++ b/src/gpu/GrAtlasTextContext.h
@@ -114,6 +114,14 @@ private:
// distance field properties
bool fDrawAsDistanceFields;
bool fUseLCDText;
+ // Distance field text cannot draw coloremoji, and so has to fall back. However,
+ // though the distance field text and the coloremoji may share the same run, they
+ // will have different descriptors. If fOverrideDescriptor is non-NULL, then it
+ // will be used in place of the run's descriptor to regen texture coords
+ // TODO we could have a descriptor cache, it would reduce the size of these blobs
+ // significantly, and then the subrun could just have a refed pointer to the
+ // correct descriptor.
+ SkAutoTDelete<SkAutoDescriptor> fOverrideDescriptor;
};
class SubRunInfoArray {
@@ -121,8 +129,16 @@ private:
SubRunInfoArray()
: fSubRunCount(0)
, fSubRunAllocation(kMinSubRuns) {
+ SK_COMPILE_ASSERT(kMinSubRuns > 0, insufficient_subrun_allocation);
+ // We always seed with one here, so we can assume a valid subrun during
+ // push_back
fPtr = reinterpret_cast<SubRunInfo*>(fSubRunStorage.get());
- this->push_back();
+ SkNEW_PLACEMENT(&fPtr[fSubRunCount++], SubRunInfo);
+ }
+ ~SubRunInfoArray() {
+ for (int i = 0; i < fSubRunCount; i++) {
+ fPtr[i].~SubRunInfo();
+ }
}
int count() const { return fSubRunCount; }
@@ -134,6 +150,15 @@ private:
fPtr = reinterpret_cast<SubRunInfo*>(fSubRunStorage.get());
}
SkNEW_PLACEMENT(&fPtr[fSubRunCount], SubRunInfo);
+
+ // Forward glyph / vertex information to seed the new sub run
+ SubRunInfo& newSubRun = fPtr[fSubRunCount];
+ SubRunInfo& prevSubRun = fPtr[fSubRunCount - 1];
+ newSubRun.fGlyphStartIndex = prevSubRun.fGlyphEndIndex;
+ newSubRun.fGlyphEndIndex = prevSubRun.fGlyphEndIndex;
+
+ newSubRun.fVertexStartIndex = prevSubRun.fVertexEndIndex;
+ newSubRun.fVertexEndIndex = prevSubRun.fVertexEndIndex;
return fPtr[fSubRunCount++];
}
SubRunInfo& operator[](int index) {
@@ -268,7 +293,7 @@ private:
const GrPaint&, const GrClip&);
// A helper for drawing BitmapText in a run of distance fields
- inline void fallbackDrawPosText(GrRenderTarget*, const GrClip&,
+ inline void fallbackDrawPosText(BitmapTextBlob*, GrRenderTarget*, const GrClip&,
const GrPaint&,
const SkPaint&, const SkMatrix& viewMatrix,
const SkTDArray<char>& fallbackTxt,