| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 #include "GrAtlasTextContext.h" | 7 #include "GrAtlasTextContext.h" |
| 8 | 8 |
| 9 #include "GrBatch.h" | 9 #include "GrBatch.h" |
| 10 #include "GrBatchFontCache.h" | 10 #include "GrBatchFontCache.h" |
| (...skipping 1659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1670 GrGlyph* glyph = blob->fGlyphs[glyphOffset]; | 1670 GrGlyph* glyph = blob->fGlyphs[glyphOffset]; |
| 1671 GrGlyph::PackedID id = glyph->fPackedID; | 1671 GrGlyph::PackedID id = glyph->fPackedID; |
| 1672 const SkGlyph& skGlyph = scaler->grToSkGlyph(id); | 1672 const SkGlyph& skGlyph = scaler->grToSkGlyph(id); |
| 1673 if (regenerateGlyphs) { | 1673 if (regenerateGlyphs) { |
| 1674 // Get the id from the old glyph, and use the new st
rike to lookup | 1674 // Get the id from the old glyph, and use the new st
rike to lookup |
| 1675 // the glyph. | 1675 // the glyph. |
| 1676 blob->fGlyphs[glyphOffset] = strike->getGlyph(skGlyp
h, id, scaler); | 1676 blob->fGlyphs[glyphOffset] = strike->getGlyph(skGlyp
h, id, scaler); |
| 1677 } | 1677 } |
| 1678 glyph = blob->fGlyphs[glyphOffset]; | 1678 glyph = blob->fGlyphs[glyphOffset]; |
| 1679 SkASSERT(glyph); | 1679 SkASSERT(glyph); |
| 1680 SkASSERT(id == glyph->fPackedID); | 1680 SkASSERT(id == glyph->fPackedID && |
| 1681 // We want to be able to assert this but cannot for test
ing purposes. | 1681 glyph->fMaskFormat == this->maskFormat()); |
| 1682 // once skbug:4143 has landed we can revist this assert | |
| 1683 //SkASSERT(glyph->fMaskFormat == this->maskFormat()); | |
| 1684 | 1682 |
| 1685 if (!fFontCache->hasGlyph(glyph) && | 1683 if (!fFontCache->hasGlyph(glyph) && |
| 1686 !strike->addGlyphToAtlas(batchTarget, glyph, scaler,
skGlyph, | 1684 !strike->addGlyphToAtlas(batchTarget, glyph, scaler,
skGlyph, |
| 1687 maskFormat)) { | 1685 maskFormat)) { |
| 1688 this->flush(batchTarget, &flushInfo); | 1686 this->flush(batchTarget, &flushInfo); |
| 1689 batchTarget->initDraw(gp, pipeline); | 1687 batchTarget->initDraw(gp, pipeline); |
| 1690 brokenRun = glyphIdx > 0; | 1688 brokenRun = glyphIdx > 0; |
| 1691 | 1689 |
| 1692 SkDEBUGCODE(bool success =) strike->addGlyphToAtlas(
batchTarget, | 1690 SkDEBUGCODE(bool success =) strike->addGlyphToAtlas(
batchTarget, |
| 1693
glyph, | 1691
glyph, |
| (...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2276 gTextContext->createDrawTextBlob(rt, clip, grPaint, skPaint, viewMat
rix, text, | 2274 gTextContext->createDrawTextBlob(rt, clip, grPaint, skPaint, viewMat
rix, text, |
| 2277 static_cast<size_t>(textLen), 0, 0,
noClip)); | 2275 static_cast<size_t>(textLen), 0, 0,
noClip)); |
| 2278 | 2276 |
| 2279 SkScalar transX = static_cast<SkScalar>(random->nextU()); | 2277 SkScalar transX = static_cast<SkScalar>(random->nextU()); |
| 2280 SkScalar transY = static_cast<SkScalar>(random->nextU()); | 2278 SkScalar transY = static_cast<SkScalar>(random->nextU()); |
| 2281 const GrAtlasTextBlob::Run::SubRunInfo& info = blob->fRuns[0].fSubRunInfo[0]
; | 2279 const GrAtlasTextBlob::Run::SubRunInfo& info = blob->fRuns[0].fSubRunInfo[0]
; |
| 2282 return gTextContext->createBatch(blob, info, textLen, 0, 0, color, transX, t
ransY, skPaint); | 2280 return gTextContext->createBatch(blob, info, textLen, 0, 0, color, transX, t
ransY, skPaint); |
| 2283 } | 2281 } |
| 2284 | 2282 |
| 2285 #endif | 2283 #endif |
| OLD | NEW |