robertphillips 2015-06-19 06:40:02 -07:00 committed by Commit bot
parent 20eee3f047
commit 8b1fa6dd8d
2 changed files with 2 additions and 2 deletions

View File

@ -723,7 +723,7 @@ private:
*/
bool isFinite() const;
static void ComputeInv(SkScalar dst[9], const SkScalar src[9], SkScalar invDet, bool isPersp);
static void ComputeInv(SkScalar dst[9], const SkScalar src[9], double invDet, bool isPersp);
void setScaleTranslate(SkScalar sx, SkScalar sy, SkScalar tx, SkScalar ty) {
fMat[kMScaleX] = sx;

View File

@ -786,7 +786,7 @@ bool SkMatrix::asAffine(SkScalar affine[6]) const {
return true;
}
void SkMatrix::ComputeInv(SkScalar dst[9], const SkScalar src[9], SkScalar invDet, bool isPersp) {
void SkMatrix::ComputeInv(SkScalar dst[9], const SkScalar src[9], double invDet, bool isPersp) {
SkASSERT(src != dst);
SkASSERT(src && dst);