Index: tools/debugger/SkObjectParser.cpp |
diff --git a/tools/debugger/SkObjectParser.cpp b/tools/debugger/SkObjectParser.cpp |
index 5f3fa449096306e8c2669c8d3bcd589c3c03c6a0..36427831c8f5c696ff813e7c875af45b06afa0cc 100644 |
--- a/tools/debugger/SkObjectParser.cpp |
+++ b/tools/debugger/SkObjectParser.cpp |
@@ -1,4 +1,3 @@ |
- |
/* |
* Copyright 2012 Google Inc. |
* |
@@ -26,7 +25,7 @@ SkString* SkObjectParser::BitmapToString(const SkBitmap& bitmap) { |
mBitmap->appendS32(bitmap.width()); |
mBitmap->append(" H: "); |
mBitmap->appendS32(bitmap.height()); |
- |
+ |
const char* gColorTypeStrings[] = { |
"None", "A8", "565", "4444", "RGBA", "BGRA", "Index8", "G8", "RGBAf16" |
}; |
@@ -136,7 +135,7 @@ SkString* SkObjectParser::PaintToString(const SkPaint& paint) { |
SkString* SkObjectParser::PathToString(const SkPath& path) { |
SkString* mPath = new SkString; |
- |
+ |
mPath->appendf("Path (%d) (", path.getGenerationID()); |
static const char* gFillStrings[] = { |