Index: src/gpu/SkGpuDevice.h |
diff --git a/src/gpu/SkGpuDevice.h b/src/gpu/SkGpuDevice.h |
index 6a68eeb33e6c32d59ace76c10dc684652f4267b5..6bba97434a3b0a299f6db29fbb5471f1d903394d 100644 |
--- a/src/gpu/SkGpuDevice.h |
+++ b/src/gpu/SkGpuDevice.h |
@@ -34,7 +34,7 @@ class SK_API SkGpuDevice : public SkBaseDevice { |
public: |
enum Flags { |
kNeedClear_Flag = 1 << 0, //!< Surface requires an initial clear |
- kDFFonts_Flag = 1 << 1, //!< Surface should render fonts using signed distance fields |
+ kDFText_Flag = 1 << 1, //!< Surface should render text using signed distance fields |
}; |
/** |
@@ -136,8 +136,8 @@ private: |
GrTextContext* fTextContext; |
// state for our render-target |
- GrRenderTarget* fRenderTarget; |
- bool fNeedClear; |
+ GrRenderTarget* fRenderTarget; |
+ uint32_t fFlags; |
// remove when our clients don't rely on accessBitmap() |
SkBitmap fLegacyBitmap; |