| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "SkPathPriv.h" | 8 #include "SkPathPriv.h" |
| 9 #include "SkRecords.h" | 9 #include "SkRecords.h" |
| 10 | 10 |
| 11 namespace SkRecords { | 11 namespace SkRecords { |
| 12 PreCachedPath::PreCachedPath(const SkPath& path) : SkPath(path) { | 12 PreCachedPath::PreCachedPath(const SkPath& path) : SkPath(path) { |
| 13 this->updateBoundsCache(); | 13 this->updateBoundsCache(); |
| 14 (void)this->getConvexity(); | |
| 15 #if 0 // Disabled to see if we ever really race on this. It costs time, chromi
um:496982. | 14 #if 0 // Disabled to see if we ever really race on this. It costs time, chromi
um:496982. |
| 16 SkPathPriv::FirstDirection junk; | 15 SkPathPriv::FirstDirection junk; |
| 17 (void)SkPathPriv::CheapComputeFirstDirection(*this, &junk); | 16 (void)SkPathPriv::CheapComputeFirstDirection(*this, &junk); |
| 18 #endif | 17 #endif |
| 19 } | 18 } |
| 20 | 19 |
| 21 TypedMatrix::TypedMatrix(const SkMatrix& matrix) : SkMatrix(matrix) { | 20 TypedMatrix::TypedMatrix(const SkMatrix& matrix) : SkMatrix(matrix) { |
| 22 (void)this->getType(); | 21 (void)this->getType(); |
| 23 } | 22 } |
| 24 } | 23 } |
| OLD | NEW |