| Index: src/opts/SkBitmapProcState_opts_SSSE3.cpp
|
| diff --git a/src/opts/SkBitmapProcState_opts_SSSE3.cpp b/src/opts/SkBitmapProcState_opts_SSSE3.cpp
|
| index 5e7c7b46983d8da04f640c770c306bb4a7292b08..165f1f5ce068ffe560fa85ddbbaf80f93ad0ea68 100644
|
| --- a/src/opts/SkBitmapProcState_opts_SSSE3.cpp
|
| +++ b/src/opts/SkBitmapProcState_opts_SSSE3.cpp
|
| @@ -6,7 +6,6 @@
|
| */
|
|
|
| #include "SkBitmapProcState_opts_SSSE3.h"
|
| -#include "SkColorPriv.h"
|
| #include "SkPaint.h"
|
| #include "SkUtils.h"
|
|
|
| @@ -721,26 +720,15 @@
|
| }
|
|
|
| void S32_opaque_D32_filter_DXDY_SSSE3(const SkBitmapProcState& s,
|
| - const uint32_t* xy,
|
| - int count, uint32_t* colors) {
|
| + const uint32_t* xy,
|
| + int count, uint32_t* colors) {
|
| S32_generic_D32_filter_DXDY_SSSE3<false>(s, xy, count, colors);
|
| }
|
|
|
| void S32_alpha_D32_filter_DXDY_SSSE3(const SkBitmapProcState& s,
|
| - const uint32_t* xy,
|
| - int count, uint32_t* colors) {
|
| + const uint32_t* xy,
|
| + int count, uint32_t* colors) {
|
| S32_generic_D32_filter_DXDY_SSSE3<true>(s, xy, count, colors);
|
| -}
|
| -
|
| -void S32_D16_filter_DXDY_SSSE3(const SkBitmapProcState& s,
|
| - const uint32_t* xy,
|
| - int count, uint16_t* colors) {
|
| - SkASSERT(64 >= count);
|
| - SkAutoSTMalloc<64, uint32_t> colors32(count);
|
| - S32_generic_D32_filter_DXDY_SSSE3<false>(s, xy, count, colors32);
|
| - for(int i = 0; i < count; i++) {
|
| - *colors++ = SkPixel32ToPixel16(colors32[i]);
|
| - }
|
| }
|
|
|
| #else // SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSSE3
|
| @@ -758,21 +746,15 @@
|
| }
|
|
|
| void S32_opaque_D32_filter_DXDY_SSSE3(const SkBitmapProcState& s,
|
| - const uint32_t* xy,
|
| - int count, uint32_t* colors) {
|
| + const uint32_t* xy,
|
| + int count, uint32_t* colors) {
|
| sk_throw();
|
| }
|
|
|
| void S32_alpha_D32_filter_DXDY_SSSE3(const SkBitmapProcState& s,
|
| - const uint32_t* xy,
|
| - int count, uint32_t* colors) {
|
| + const uint32_t* xy,
|
| + int count, uint32_t* colors) {
|
| sk_throw();
|
| }
|
|
|
| -void S32_D16_filter_DXDY_SSSE3(const SkBitmapProcState& s,
|
| - const uint32_t* xy,
|
| - int count, uint32_t* colors) {
|
| - sk_throw();
|
| -}
|
| -
|
| #endif
|
|
|