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

Side by Side Diff: include/core/SkTextBlob.h

Issue 1702073002: Move SkTArray to include/private. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix kilobench. Created 4 years, 10 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 | « include/core/SkTArray.h ('k') | include/gpu/GrProcessorUnitTest.h » ('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 2014 Google Inc. 2 * Copyright 2014 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 7
8 #ifndef SkTextBlob_DEFINED 8 #ifndef SkTextBlob_DEFINED
9 #define SkTextBlob_DEFINED 9 #define SkTextBlob_DEFINED
10 10
11 #include "../private/SkTemplates.h"
11 #include "SkPaint.h" 12 #include "SkPaint.h"
12 #include "SkRefCnt.h" 13 #include "SkRefCnt.h"
13 #include "SkTArray.h"
14 #include "SkTDArray.h"
15 14
16 class SkReadBuffer; 15 class SkReadBuffer;
17 class SkWriteBuffer; 16 class SkWriteBuffer;
18 17
19 /** \class SkTextBlob 18 /** \class SkTextBlob
20 19
21 SkTextBlob combines multiple text runs into an immutable, ref-counted struct ure. 20 SkTextBlob combines multiple text runs into an immutable, ref-counted struct ure.
22 */ 21 */
23 class SK_API SkTextBlob : public SkRefCnt { 22 class SK_API SkTextBlob : public SkRefCnt {
24 public: 23 public:
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 174
176 SkRect fBounds; 175 SkRect fBounds;
177 int fRunCount; 176 int fRunCount;
178 bool fDeferredBounds; 177 bool fDeferredBounds;
179 size_t fLastRun; // index into fStorage 178 size_t fLastRun; // index into fStorage
180 179
181 RunBuffer fCurrentRunBuffer; 180 RunBuffer fCurrentRunBuffer;
182 }; 181 };
183 182
184 #endif // SkTextBlob_DEFINED 183 #endif // SkTextBlob_DEFINED
OLDNEW
« no previous file with comments | « include/core/SkTArray.h ('k') | include/gpu/GrProcessorUnitTest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698