Index: tools/pinspect.cpp |
diff --git a/tools/pinspect.cpp b/tools/pinspect.cpp |
index 368d6feca7a93c3e9943d567dea525377f556736..18c0d70cc426f7265ff143b885911b791c518b98 100644 |
--- a/tools/pinspect.cpp |
+++ b/tools/pinspect.cpp |
@@ -40,7 +40,9 @@ static SkPicture* inspect(const char path[]) { |
SkDebugf("Could not create SkPicture: %s\n", path); |
return NULL; |
} |
- printf("picture size:[%d %d]\n", pic->width(), pic->height()); |
+ printf("picture cullRect: [%f %f %f %f]\n", |
+ pic->cullRect().fLeft, pic->cullRect().fTop, |
+ pic->cullRect().fRight, pic->cullRect().fBottom); |
return pic; |
} |