Chromium Code Reviews| Index: src/opts/opts_check_x86.cpp |
| diff --git a/src/opts/opts_check_x86.cpp b/src/opts/opts_check_x86.cpp |
| index 2d3b794283dd85cf5d3c346eb58231844543bf73..6c5b03dc969b46755f4de767e2b7811f3e4dcc51 100644 |
| --- a/src/opts/opts_check_x86.cpp |
| +++ b/src/opts/opts_check_x86.cpp |
| @@ -10,7 +10,6 @@ |
| #include "SkBitmapProcState_opts_SSSE3.h" |
| #include "SkBitmapScaler.h" |
| #include "SkBlitMask.h" |
| -#include "SkBlitRect_opts_SSE2.h" |
| #include "SkBlitRow.h" |
| #include "SkBlitRow_opts_SSE2.h" |
| #include "SkBlitRow_opts_SSE4.h" |
| @@ -262,16 +261,7 @@ SkBlitRow::ColorProc SkBlitRow::PlatformColorProc() { |
| } |
| } |
| -SkBlitRow::ColorRectProc PlatformColorRectProcFactory(); // suppress warning |
|
mtklein
2015/02/24 16:34:23
I think you need to keep this. Otherwise Platform
henrik.smiding
2015/02/25 09:41:56
Ok, I was hoping it was an old leftover, since the
|
| - |
| SkBlitRow::ColorRectProc PlatformColorRectProcFactory() { |
| -/* Return NULL for now, since the optimized path in ColorRect32_SSE2 is disabled. |
| - if (supports_simd(SK_CPU_SSE_LEVEL_SSE2)) { |
| - return ColorRect32_SSE2; |
| - } else { |
| - return NULL; |
| - } |
| -*/ |
| return NULL; |
| } |