| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2010 Google Inc. | 2 * Copyright 2010 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 GrTextContext_DEFINED | 8 #ifndef GrTextContext_DEFINED |
| 9 #define GrTextContext_DEFINED | 9 #define GrTextContext_DEFINED |
| 10 | 10 |
| 11 #include "GrGlyph.h" | 11 #include "GrGlyph.h" |
| 12 #include "GrPaint.h" | 12 #include "GrPaint.h" |
| 13 #include "SkDeviceProperties.h" | 13 #include "SkDeviceProperties.h" |
| 14 | 14 |
| 15 #include "SkPostConfig.h" | 15 #include "SkPostConfig.h" |
| 16 | 16 |
| 17 class GrContext; | 17 class GrContext; |
| 18 class GrDrawTarget; | 18 class GrDrawTarget; |
| 19 class GrFontScaler; | 19 class GrFontScaler; |
| 20 | 20 |
| 21 /* | 21 /* |
| 22 * This class wraps the state for a single text render | 22 * This class wraps the state for a single text render |
| 23 */ | 23 */ |
| 24 class GrTextContext { | 24 class GrTextContext { |
| 25 public: | 25 public: |
| 26 virtual ~GrTextContext() {} | 26 virtual ~GrTextContext(); |
| 27 | 27 |
| 28 virtual bool canDraw(const SkPaint& paint) = 0; | 28 bool drawText(const GrPaint&, const SkPaint&, const char text[], size_t byte
Length, |
| 29 | 29 SkScalar x, SkScalar y); |
| 30 virtual void drawText(const GrPaint&, const SkPaint&, const char text[], siz
e_t byteLength, | 30 bool drawPosText(const GrPaint&, const SkPaint&, |
| 31 SkScalar x, SkScalar y) = 0; | 31 const char text[], size_t byteLength, |
| 32 virtual void drawPosText(const GrPaint&, const SkPaint&, | 32 const SkScalar pos[], int scalarsPerPosition, |
| 33 const char text[], size_t byteLength, | 33 const SkPoint& offset); |
| 34 const SkScalar pos[], int scalarsPerPosition, | |
| 35 const SkPoint& offset) = 0; | |
| 36 | 34 |
| 37 protected: | 35 protected: |
| 36 GrTextContext* fFallbackTextContext; |
| 38 GrContext* fContext; | 37 GrContext* fContext; |
| 39 SkDeviceProperties fDeviceProperties; | 38 SkDeviceProperties fDeviceProperties; |
| 40 | 39 |
| 41 GrDrawTarget* fDrawTarget; | 40 GrDrawTarget* fDrawTarget; |
| 42 SkIRect fClipRect; | 41 SkIRect fClipRect; |
| 43 GrPaint fPaint; | 42 GrPaint fPaint; |
| 44 SkPaint fSkPaint; | 43 SkPaint fSkPaint; |
| 45 | 44 |
| 46 GrTextContext(GrContext*, const SkDeviceProperties&); | 45 GrTextContext(GrContext*, const SkDeviceProperties&); |
| 47 | 46 |
| 47 virtual bool canDraw(const SkPaint& paint) = 0; |
| 48 |
| 49 virtual void onDrawText(const GrPaint&, const SkPaint&, const char text[], s
ize_t byteLength, |
| 50 SkScalar x, SkScalar y) = 0; |
| 51 virtual void onDrawPosText(const GrPaint&, const SkPaint&, |
| 52 const char text[], size_t byteLength, |
| 53 const SkScalar pos[], int scalarsPerPosition, |
| 54 const SkPoint& offset) = 0; |
| 55 |
| 48 void init(const GrPaint&, const SkPaint&); | 56 void init(const GrPaint&, const SkPaint&); |
| 49 void finish() { fDrawTarget = NULL; } | 57 void finish() { fDrawTarget = NULL; } |
| 50 | 58 |
| 51 static GrFontScaler* GetGrFontScaler(SkGlyphCache* cache); | 59 static GrFontScaler* GetGrFontScaler(SkGlyphCache* cache); |
| 52 static void MeasureText(SkGlyphCache* cache, SkDrawCacheProc glyphCacheProc, | 60 static void MeasureText(SkGlyphCache* cache, SkDrawCacheProc glyphCacheProc, |
| 53 const char text[], size_t byteLength, SkVector* stop
Vector); | 61 const char text[], size_t byteLength, SkVector* stop
Vector); |
| 54 }; | 62 }; |
| 55 | 63 |
| 56 #endif | 64 #endif |
| OLD | NEW |