Another suppression, this in SkMatrix caching the typemask.

BUG=skia:
R=mtklein@google.com

Author: mtklein@chromium.org

Review URL: https://codereview.chromium.org/372103005
This commit is contained in:
mtklein 2014-07-07 17:18:50 -07:00 committed by Commit bot
parent 6abc62c0c9
commit 875da8055e

View File

@ -39,3 +39,8 @@ race:SkImageFilter::filterImage
# bounding-box hierarchy for SkRecord-based SkPictures; all bounds will come pre-cached.
# So just shut this up for now.
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::getPerspectiveTypeMaskOnly
# TODO: some sort of SkRacy<T> to handle cases like SkMatrix, SkPathRef, SkPixelRef above?