aboutsummaryrefslogtreecommitdiffhomepage
path: root/debugger
diff options
context:
space:
mode:
authorGravatar robertphillips <robertphillips@google.com>2015-02-11 10:27:30 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-02-11 10:27:30 -0800
commit5a4c233a3657d12d836de388b41e30405b4ab976 (patch)
tree1c5a2d52a1f58b8e2ddca26c285586e79e6a6c05 /debugger
parentac83d62f6c63ccffbff286f80a60b6829f301b23 (diff)
Remove SkPictureFlat.h include from SkDrawCommands.h
Diffstat (limited to 'debugger')
-rw-r--r--debugger/SkDebugger.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/debugger/SkDebugger.cpp b/debugger/SkDebugger.cpp
index fc61ddade3..61fa3ec642 100644
--- a/debugger/SkDebugger.cpp
+++ b/debugger/SkDebugger.cpp
@@ -66,8 +66,8 @@ void SkDebugger::getOverviewText(const SkTDArray<double>* typeTimes,
const SkTDArray<SkDrawCommand*>& commands = this->getDrawCommands();
SkTDArray<int> counts;
- counts.setCount(LAST_DRAWTYPE_ENUM+1);
- for (int i = 0; i < LAST_DRAWTYPE_ENUM+1; ++i) {
+ counts.setCount(SkDrawCommand::kOpTypeCount);
+ for (int i = 0; i < SkDrawCommand::kOpTypeCount; ++i) {
counts[i] = 0;
}
@@ -80,14 +80,14 @@ void SkDebugger::getOverviewText(const SkTDArray<double>* typeTimes,
#ifdef SK_DEBUG
double totPercent = 0, tempSum = 0;
#endif
- for (int i = 0; i < LAST_DRAWTYPE_ENUM+1; ++i) {
+ for (int i = 0; i < SkDrawCommand::kOpTypeCount; ++i) {
if (0 == counts[i]) {
// if there were no commands of this type then they should've consumed no time
SkASSERT(NULL == typeTimes || 0.0 == (*typeTimes)[i]);
continue;
}
- overview->append(SkDrawCommand::GetCommandString((DrawType) i));
+ overview->append(SkDrawCommand::GetCommandString((SkDrawCommand::OpType) i));
overview->append(": ");
overview->appendS32(counts[i]);
if (typeTimes && totTime >= 0.0) {