aboutsummaryrefslogtreecommitdiffhomepage
path: root/dm
diff options
context:
space:
mode:
authorGravatar djsollen <djsollen@google.com>2015-04-14 13:47:51 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-04-14 13:47:51 -0700
commita669bc37c613a18a07a879eb791253e5246f455a (patch)
tree1faca4049e376d505904b68f5c2431af76c8e503 /dm
parent9e36c1a9306f052331550dab4728b9875127bfb5 (diff)
cleanup codec names being produced by dm and uploaded to gold
Diffstat (limited to 'dm')
-rw-r--r--dm/DM.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/dm/DM.cpp b/dm/DM.cpp
index e66584803d..c6d633c001 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,