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

Unified Diff: dm/DM.cpp

Issue 1157153003: Scanline Subset Mode for DM Correctness Test (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: converting drawBitmap inputs from int to scalar Created 5 years, 7 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 | dm/DMSrcSink.h » ('j') | 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 fcedc8cb77dfa091fd251ba1dcd29aff8553825f..62d5cfbf0440b4be743209aa8751314bc2160ee2 100644
--- a/dm/DM.cpp
+++ b/dm/DM.cpp
@@ -209,18 +209,22 @@ static void push_codec_srcs(Path path) {
CodecSrc::kGrayscale_Always_DstColorType));
push_src("image", "scanline_kGray8", new CodecSrc(path, CodecSrc::kScanline_Mode,
CodecSrc::kGrayscale_Always_DstColorType));
+ push_src("image", "scanline_subset_kGray8", new CodecSrc(path,
+ CodecSrc::kScanline_Subset_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,
- CodecSrc::kIndex8_Always_DstColorType));
- push_src("image", "scanline_kIndex8", new CodecSrc(path, CodecSrc::kScanline_Mode,
- CodecSrc::kIndex8_Always_DstColorType));
- break;
- default:
- // Do nothing
- break;
+ case kIndex_8_SkColorType:
+ push_src("image", "codec_kIndex8", new CodecSrc(path, CodecSrc::kNormal_Mode,
+ CodecSrc::kIndex8_Always_DstColorType));
+ push_src("image", "scanline_kIndex8", new CodecSrc(path, CodecSrc::kScanline_Mode,
+ CodecSrc::kIndex8_Always_DstColorType));
+ push_src("image", "scanline_subset_kIndex8", new CodecSrc(path,
+ CodecSrc::kScanline_Subset_Mode, CodecSrc::kIndex8_Always_DstColorType));
+ break;
+ default:
+ // Do nothing
+ break;
}
// Decode all images to the canvas color type
@@ -228,6 +232,8 @@ static void push_codec_srcs(Path path) {
CodecSrc::kGetFromCanvas_DstColorType));
push_src("image", "scanline", new CodecSrc(path, CodecSrc::kScanline_Mode,
CodecSrc::kGetFromCanvas_DstColorType));
+ push_src("image", "scanline_subset", new CodecSrc(path, CodecSrc::kScanline_Subset_Mode,
+ CodecSrc::kGetFromCanvas_DstColorType));
}
static bool codec_supported(const char* ext) {
« no previous file with comments | « no previous file | dm/DMSrcSink.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698