Chromium Code Reviews| Index: include/core/SkDevice.h |
| diff --git a/include/core/SkDevice.h b/include/core/SkDevice.h |
| index d9354491c08ff57a2f39610cbccd88f7e931c68b..8ec953cb9c602acb4d63aeeea5b16e83831cb08e 100644 |
| --- a/include/core/SkDevice.h |
| +++ b/include/core/SkDevice.h |
| @@ -117,8 +117,6 @@ public: |
| #endif |
| }; |
| - bool shouldDisableLCD(const SkPaint&) const; |
| - |
| protected: |
| enum Usage { |
| kGeneral_Usage, |
| @@ -130,6 +128,8 @@ protected: |
| uint32_t fFlags; // SkPaint::getFlags() |
| }; |
| + uint32_t filterTextFlags(const SkPaint&) const; |
|
reed1
2014/11/13 21:47:36
// Returns the text-related flags, possibly modifi
|
| + |
| virtual bool onShouldDisableLCD(const SkPaint&) const { return false; } |
| /** |