Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(693)

Side by Side Diff: src/core/SkTextBlobRunIterator.h

Issue 2084533004: SkTextBlob: Begin implementing Extended TextBlob API (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/core/SkTextBlob.cpp ('k') | tests/TextBlobTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef SkTextBlobRunIterator_DEFINED 7 #ifndef SkTextBlobRunIterator_DEFINED
8 #define SkTextBlobRunIterator_DEFINED 8 #define SkTextBlobRunIterator_DEFINED
9 9
10 #include "SkTextBlob.h" 10 #include "SkTextBlob.h"
(...skipping 10 matching lines...) Expand all
21 21
22 bool done() const; 22 bool done() const;
23 void next(); 23 void next();
24 24
25 uint32_t glyphCount() const; 25 uint32_t glyphCount() const;
26 const uint16_t* glyphs() const; 26 const uint16_t* glyphs() const;
27 const SkScalar* pos() const; 27 const SkScalar* pos() const;
28 const SkPoint& offset() const; 28 const SkPoint& offset() const;
29 void applyFontToPaint(SkPaint*) const; 29 void applyFontToPaint(SkPaint*) const;
30 SkTextBlob::GlyphPositioning positioning() const; 30 SkTextBlob::GlyphPositioning positioning() const;
31 uint32_t* clusters() const;
32 uint32_t textSize() const;
33 char* text() const;
34
31 bool isLCD() const; 35 bool isLCD() const;
32 36
33 private: 37 private:
34 const SkTextBlob::RunRecord* fCurrentRun; 38 const SkTextBlob::RunRecord* fCurrentRun;
35 int fRemainingRuns; 39 int fRemainingRuns;
36 40
37 SkDEBUGCODE(uint8_t* fStorageTop;) 41 SkDEBUGCODE(uint8_t* fStorageTop;)
38 }; 42 };
39 43
40 #endif // SkTextBlobRunIterator_DEFINED 44 #endif // SkTextBlobRunIterator_DEFINED
OLDNEW
« no previous file with comments | « src/core/SkTextBlob.cpp ('k') | tests/TextBlobTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698