| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2006 The Android Open Source Project | 3 * Copyright 2006 The Android Open Source Project |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 | 9 |
| 10 #ifndef SkDraw_DEFINED | 10 #ifndef SkDraw_DEFINED |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 * Return the current clip bounds, in local coordinates, with slop to accou
nt | 132 * Return the current clip bounds, in local coordinates, with slop to accou
nt |
| 133 * for antialiasing or hairlines (i.e. device-bounds outset by 1, and then | 133 * for antialiasing or hairlines (i.e. device-bounds outset by 1, and then |
| 134 * run through the inverse of the matrix). | 134 * run through the inverse of the matrix). |
| 135 * | 135 * |
| 136 * If the matrix cannot be inverted, or the current clip is empty, return | 136 * If the matrix cannot be inverted, or the current clip is empty, return |
| 137 * false and ignore bounds parameter. | 137 * false and ignore bounds parameter. |
| 138 */ | 138 */ |
| 139 bool SK_WARN_UNUSED_RESULT | 139 bool SK_WARN_UNUSED_RESULT |
| 140 computeConservativeLocalClipBounds(SkRect* bounds) const; | 140 computeConservativeLocalClipBounds(SkRect* bounds) const; |
| 141 | 141 |
| 142 /** Returns the current setting for using fake gamma. */ | 142 /** Returns the current setting for using fake gamma and contrast. */ |
| 143 SkPaint::FakeGamma SK_WARN_UNUSED_RESULT fakeGamma() const; | 143 uint32_t SK_WARN_UNUSED_RESULT fontWeightFlags() const; |
| 144 | 144 |
| 145 public: | 145 public: |
| 146 SkPixmap fDst; | 146 SkPixmap fDst; |
| 147 const SkMatrix* fMatrix; // required | 147 const SkMatrix* fMatrix; // required |
| 148 const SkRegion* fClip; // DEPRECATED | 148 const SkRegion* fClip; // DEPRECATED |
| 149 const SkRasterClip* fRC; // required | 149 const SkRasterClip* fRC; // required |
| 150 | 150 |
| 151 const SkClipStack* fClipStack; // optional | 151 const SkClipStack* fClipStack; // optional |
| 152 SkBaseDevice* fDevice; // optional | 152 SkBaseDevice* fDevice; // optional |
| 153 | 153 |
| 154 #ifdef SK_DEBUG | 154 #ifdef SK_DEBUG |
| 155 void validate() const; | 155 void validate() const; |
| 156 #else | 156 #else |
| 157 void validate() const {} | 157 void validate() const {} |
| 158 #endif | 158 #endif |
| 159 }; | 159 }; |
| 160 | 160 |
| 161 #endif | 161 #endif |
| OLD | NEW |