Attempt to correct issue with fixed point from SkMatrix changes in r1512.

git-svn-id: http://skia.googlecode.com/svn/trunk@1515 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
tomhudson@google.com 2011-06-06 17:21:44 +00:00
parent e1fee49d03
commit 521ed7c7c2

View File

@ -87,7 +87,7 @@ uint8_t SkMatrix::computeTypeMask() const {
// is a win, but replacing those below is not. We don't yet understand
// that result.
if (fMat[kMPersp0] != 0 || fMat[kMPersp1] != 0 ||
fMat[kMPersp2] != SK_Scalar1) {
fMat[kMPersp2] != kMatrix22Elem) {
mask |= kPerspective_Mask;
}