Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: dm/DM.cpp

Issue 1072933004: cleanup codec names being produced by dm and uploaded to gold (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dm/DM.cpp
diff --git a/dm/DM.cpp b/dm/DM.cpp
index e66584803dfdc953416c27bb52046a35f476af5d..c6d633c001f5a5cb81f32fccd9f336b99d487aa2 100644
--- a/dm/DM.cpp
+++ b/dm/DM.cpp
@@ -193,15 +193,15 @@ static void push_codec_srcs(Path path) {
// Build additional test cases for images that decode natively to non-canvas types
switch(codec->getInfo().colorType()) {
case kGray_8_SkColorType:
- push_src("image", "codec kGray8", new CodecSrc(path, CodecSrc::kNormal_Mode,
+ push_src("image", "codec_kGray8", new CodecSrc(path, CodecSrc::kNormal_Mode,
CodecSrc::kGrayscale_Always_DstColorType));
- push_src("image", "scanline kGray8", new CodecSrc(path, CodecSrc::kScanline_Mode,
+ push_src("image", "scanline_kGray8", new CodecSrc(path, CodecSrc::kScanline_Mode,
CodecSrc::kGrayscale_Always_DstColorType));
// Intentional fall through
// FIXME: Is this a long term solution for testing wbmps decodes to kIndex8?
// Further discussion on this topic is at skbug.com/3683
case kIndex_8_SkColorType:
- push_src("image", "codec kIndex8", new CodecSrc(path, CodecSrc::kNormal_Mode,
+ push_src("image", "codec_kIndex8", new CodecSrc(path, CodecSrc::kNormal_Mode,
CodecSrc::kIndex8_Always_DstColorType));
// FIXME: Need to implement scanline decoding for kIndex8.
//push_src("image", "scanline kIndex8", new CodecSrc(path, CodecSrc::kScanline_Mode,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698