| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 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 GrBitmapTextContext_DEFINED | 8 #ifndef GrBitmapTextContext_DEFINED |
| 9 #define GrBitmapTextContext_DEFINED | 9 #define GrBitmapTextContext_DEFINED |
| 10 | 10 |
| 11 #include "GrTextContext.h" | 11 #include "GrTextContext.h" |
| 12 | 12 |
| 13 class GrTextStrike; | 13 class GrTextStrike; |
| 14 | 14 |
| 15 /* | 15 /* |
| 16 * This class implements GrTextContext using standard bitmap fonts | 16 * This class implements GrTextContext using standard bitmap fonts |
| 17 */ | 17 */ |
| 18 class GrBitmapTextContext : public GrTextContext { | 18 class GrBitmapTextContext : public GrTextContext { |
| 19 public: | 19 public: |
| 20 GrBitmapTextContext(GrContext*, const GrPaint&, SkColor); |
| 21 virtual ~GrBitmapTextContext(); |
| 22 |
| 20 virtual void drawPackedGlyph(GrGlyph::PackedID, GrFixed left, GrFixed top, | 23 virtual void drawPackedGlyph(GrGlyph::PackedID, GrFixed left, GrFixed top, |
| 21 GrFontScaler*) SK_OVERRIDE; | 24 GrFontScaler*) SK_OVERRIDE; |
| 22 | 25 |
| 23 private: | 26 private: |
| 24 GrBitmapTextContext(GrContext*, const GrPaint&, const SkPaint&); | |
| 25 virtual ~GrBitmapTextContext(); | |
| 26 friend class GrTTextContextManager<GrBitmapTextContext>; | |
| 27 | |
| 28 GrContext::AutoMatrix fAutoMatrix; | 27 GrContext::AutoMatrix fAutoMatrix; |
| 29 GrTextStrike* fStrike; | 28 GrTextStrike* fStrike; |
| 30 | 29 |
| 31 void flushGlyphs(); // automatically called by destructor | 30 void flushGlyphs(); // automatically called by destructor |
| 32 | 31 |
| 33 enum { | 32 enum { |
| 34 kMinRequestedGlyphs = 1, | 33 kMinRequestedGlyphs = 1, |
| 35 kDefaultRequestedGlyphs = 64, | 34 kDefaultRequestedGlyphs = 64, |
| 36 kMinRequestedVerts = kMinRequestedGlyphs * 4, | 35 kMinRequestedVerts = kMinRequestedGlyphs * 4, |
| 37 kDefaultRequestedVerts = kDefaultRequestedGlyphs * 4, | 36 kDefaultRequestedVerts = kDefaultRequestedGlyphs * 4, |
| 38 }; | 37 }; |
| 39 | 38 |
| 39 SkColor fSkPaintColor; |
| 40 SkPoint* fVertices; | 40 SkPoint* fVertices; |
| 41 int32_t fMaxVertices; | 41 int32_t fMaxVertices; |
| 42 GrTexture* fCurrTexture; | 42 GrTexture* fCurrTexture; |
| 43 int fCurrVertex; | 43 int fCurrVertex; |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 #endif | 46 #endif |
| OLD | NEW |