Index: include/core/SkDevice.h |
diff --git a/include/core/SkDevice.h b/include/core/SkDevice.h |
index 65ec56f902fb87ea9926957db6b099438f90ecba..277682d685be0d9804c8f61ca6f18ac23349112d 100644 |
--- a/include/core/SkDevice.h |
+++ b/include/core/SkDevice.h |
@@ -376,6 +376,9 @@ protected: |
return NULL; |
} |
+ // A helper function used by derived classes to log the scale factor of a bitmap or image draw. |
+ void logDrawScaleFactor(const SkMatrix&, SkFilterQuality) const; |
bsalomon
2016/02/16 14:52:42
Maybe this should just be a static helper in SkGpu
ericrk
2016/02/16 22:05:33
I'm using this in SkBitmapDevice as well - happy t
bsalomon
2016/02/24 18:24:59
Gotcha.. didn't catch that. Need it be a class mem
ericrk
2016/02/25 00:22:10
made it static, good point.
|
+ |
private: |
friend class SkCanvas; |
friend struct DeviceCM; //for setMatrixClip |