| Index: src/gpu/GrTextContext.h
|
| diff --git a/src/gpu/GrTextContext.h b/src/gpu/GrTextContext.h
|
| index 5a8445401c9ef078ec96cb32df13420dde99b130..581ff64837f55bff47bb02d619fda5d1b972b66a 100644
|
| --- a/src/gpu/GrTextContext.h
|
| +++ b/src/gpu/GrTextContext.h
|
| @@ -8,6 +8,7 @@
|
| #ifndef GrTextContext_DEFINED
|
| #define GrTextContext_DEFINED
|
|
|
| +#include "GrClip.h"
|
| #include "GrGlyph.h"
|
| #include "GrPaint.h"
|
| #include "SkDeviceProperties.h"
|
| @@ -33,15 +34,16 @@ public:
|
| const SkPoint& offset);
|
|
|
| protected:
|
| - GrTextContext* fFallbackTextContext;
|
| - GrContext* fContext;
|
| - SkDeviceProperties fDeviceProperties;
|
| + GrTextContext* fFallbackTextContext;
|
| + GrContext* fContext;
|
| + SkDeviceProperties fDeviceProperties;
|
|
|
| - SkAutoTUnref<GrRenderTarget> fRenderTarget;
|
| - GrDrawTarget* fDrawTarget;
|
| - SkIRect fClipRect;
|
| - GrPaint fPaint;
|
| - SkPaint fSkPaint;
|
| + SkAutoTUnref<GrRenderTarget> fRenderTarget;
|
| + const GrClip* fClip;
|
| + GrDrawTarget* fDrawTarget;
|
| + SkIRect fClipRect;
|
| + GrPaint fPaint;
|
| + SkPaint fSkPaint;
|
|
|
| GrTextContext(GrContext*, const SkDeviceProperties&);
|
|
|
|
|