aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2018-01-08 15:05:02 -0500
committerGravatar Mike Reed <reed@google.com>2018-01-08 20:42:27 +0000
commit274218ef0173ff6046f2258c703c1c83ea37c02f (patch)
tree5d0077217a7b3e42a6fcacb8a12e95a6323746a9 /experimental
parent7ff6ca525454e9dfbabbec2f6bf66d6b290ac195 (diff)
move largest apis into private
Related to https://skia-review.googlesource.com/c/skia/+/91860 Bug: skia: Change-Id: Ia8fd981b422bbab75541b078277d2e09e1fc9d41 Reviewed-on: https://skia-review.googlesource.com/91940 Reviewed-by: Brian Salomon <bsalomon@google.com>
Diffstat (limited to 'experimental')
-rw-r--r--experimental/sksg/SkSGNode.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/experimental/sksg/SkSGNode.cpp b/experimental/sksg/SkSGNode.cpp
index 768fdfa7b6..b634175b21 100644
--- a/experimental/sksg/SkSGNode.cpp
+++ b/experimental/sksg/SkSGNode.cpp
@@ -5,8 +5,8 @@
* found in the LICENSE file.
*/
+#include "SkRectPriv.h"
#include "SkSGNode.h"
-
#include "SkSGInvalidationController.h"
namespace sksg {
@@ -40,7 +40,7 @@ private:
Node::Node(uint32_t invalTraits)
: fInvalReceiver(nullptr)
- , fBounds(SkRect::MakeLargestS32())
+ , fBounds(SkRectPriv::MakeLargestS32())
, fInvalTraits(invalTraits)
, fFlags(kInvalidated_Flag) {}