Flesh out SkMatrix typemask suppressions.

BUG=skia:
R=mtklein@google.com

Author: mtklein@chromium.org

Review URL: https://codereview.chromium.org/374763002
diff --git a/tools/tsan.supp b/tools/tsan.supp
index 31ba259..179adc9 100644
--- a/tools/tsan.supp
+++ b/tools/tsan.supp
@@ -41,6 +41,8 @@
 race:SkPathRef::computeBounds
 
 # SkMatrix caches a type mask.  If we race on this, we'll just calculate the same thing a few times.
+race:SkMatrix::getType
+race:SkMatrix::rectStaysRect
 race:SkMatrix::getPerspectiveTypeMaskOnly
 
 # TODO: some sort of SkRacy<T> to handle cases like SkMatrix, SkPathRef, SkPixelRef above?