aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/codec/SkSampler.cpp
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2017-07-17 10:13:58 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-07-17 20:37:28 +0000
commit262b319dcdbf6329d5ca3212b22323ebec7a7b49 (patch)
treeb10f16da65b12d577c37981bee52be6316e05024 /src/codec/SkSampler.cpp
parent4d7a9bf0c0ec32394fb5923e01f816ca5ff29cd4 (diff)
Index8 is dead, remove guarded code
Needs google3 to be updated before this can land. Bug: skia:6828 Change-Id: I2c16be13c6937ffa48768cc24f9f980171c824d6 Reviewed-on: https://skia-review.googlesource.com/23940 Reviewed-by: Leon Scroggins <scroggo@google.com> Commit-Queue: Mike Reed <reed@google.com>
Diffstat (limited to 'src/codec/SkSampler.cpp')
-rw-r--r--src/codec/SkSampler.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/codec/SkSampler.cpp b/src/codec/SkSampler.cpp
index 0dbe320827..c7d9a3ac23 100644
--- a/src/codec/SkSampler.cpp
+++ b/src/codec/SkSampler.cpp
@@ -57,11 +57,6 @@ void SkSampler::Fill(const SkImageInfo& info, void* dst, size_t rowBytes,
}
break;
}
-#ifdef SK_SUPPORT_LEGACY_INDEX_8_COLORTYPE
- case kIndex_8_SkColorType:
- // On an index destination color type, always assume the input is an index.
- // Fall through
-#endif
case kGray_8_SkColorType:
// If the destination is kGray, the caller passes in an 8-bit color.
// We will not assert that the high bits of colorOrIndex must be zeroed.