diff options
author | Florin Malita <fmalita@chromium.org> | 2017-08-21 12:49:27 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2017-08-22 13:18:41 +0000 |
commit | a4c96cbe54b7ccf795ed0bcb8a972c3ba82b30db (patch) | |
tree | 1b17d89c36aabb0a911a0a5129f47bee5f82a75b /src/core | |
parent | 5bad696c08e3ff9fd91f2cbeeaf9f555131154fd (diff) |
Remove SK_SUPPORT_LEGACY_BILERP2 dead code
Flag no longer defined.
Change-Id: I4b4aa33ecd23b485cf80d79882f52da96c82a567
Reviewed-on: https://skia-review.googlesource.com/36822
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Mike Klein <mtklein@google.com>
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/SkBitmapProcState.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/SkBitmapProcState.cpp b/src/core/SkBitmapProcState.cpp index 502f076a6f..375de10dfd 100644 --- a/src/core/SkBitmapProcState.cpp +++ b/src/core/SkBitmapProcState.cpp @@ -104,11 +104,7 @@ bool SkBitmapProcInfo::init(const SkMatrix& inv, const SkPaint& paint) { SkASSERT(fFilterQuality <= kLow_SkFilterQuality); SkASSERT(fPixmap.addr()); -#ifdef SK_SUPPORT_LEGACY_BILERP2 - bool integral_translate_only = false; -#else bool integral_translate_only = just_trans_integral(fInvMatrix); -#endif if (!integral_translate_only) { // Most of the scanline procs deal with "unit" texture coordinates, as this // makes it easy to perform tiling modes (repeat = (x & 0xFFFF)). To generate |