| 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 class GrAtlasMgr; |
| 14 | 15 |
| 15 /* | 16 /* |
| 16 * This class implements GrTextContext using standard bitmap fonts | 17 * This class implements GrTextContext using standard bitmap fonts |
| 17 */ | 18 */ |
| 18 class GrBitmapTextContext : public GrTextContext { | 19 class GrBitmapTextContext : public GrTextContext { |
| 19 public: | 20 public: |
| 20 GrBitmapTextContext(GrContext*, const SkDeviceProperties&); | 21 GrBitmapTextContext(GrContext*, const SkDeviceProperties&); |
| 21 virtual ~GrBitmapTextContext(); | 22 virtual ~GrBitmapTextContext(); |
| 22 | 23 |
| 23 virtual void drawText(const GrPaint&, const SkPaint&, const char text[], siz
e_t byteLength, | 24 virtual void drawText(const GrPaint&, const SkPaint&, const char text[], siz
e_t byteLength, |
| (...skipping 21 matching lines...) Expand all Loading... |
| 45 }; | 46 }; |
| 46 | 47 |
| 47 SkPoint* fVertices; | 48 SkPoint* fVertices; |
| 48 int32_t fMaxVertices; | 49 int32_t fMaxVertices; |
| 49 GrTexture* fCurrTexture; | 50 GrTexture* fCurrTexture; |
| 50 int fCurrVertex; | 51 int fCurrVertex; |
| 51 SkRect fVertexBounds; | 52 SkRect fVertexBounds; |
| 52 }; | 53 }; |
| 53 | 54 |
| 54 #endif | 55 #endif |
| OLD | NEW |