| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 The Android Open Source Project | 2 * Copyright 2014 The Android Open Source Project |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "SkBitmap.h" | 8 #include "SkBitmap.h" |
| 9 #include "SkBlurImage_opts_SSE4.h" | 9 #include "SkBlurImage_opts_SSE4.h" |
| 10 #include "SkColorPriv.h" | 10 #include "SkColorPriv.h" |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 return true; | 110 return true; |
| 111 } | 111 } |
| 112 | 112 |
| 113 #else // !defined(SK_BUILD_FOR_ANDROID_FRAMEWORK) || SK_CPU_SSE_LEVEL >= SK_CPU_
SSE_LEVEL_SSE41 | 113 #else // !defined(SK_BUILD_FOR_ANDROID_FRAMEWORK) || SK_CPU_SSE_LEVEL >= SK_CPU_
SSE_LEVEL_SSE41 |
| 114 | 114 |
| 115 bool SkBoxBlurGetPlatformProcs_SSE4(SkBoxBlurProc* boxBlurX, | 115 bool SkBoxBlurGetPlatformProcs_SSE4(SkBoxBlurProc* boxBlurX, |
| 116 SkBoxBlurProc* boxBlurY, | 116 SkBoxBlurProc* boxBlurY, |
| 117 SkBoxBlurProc* boxBlurXY, | 117 SkBoxBlurProc* boxBlurXY, |
| 118 SkBoxBlurProc* boxBlurYX) { | 118 SkBoxBlurProc* boxBlurYX) { |
| 119 sk_throw(); | 119 sk_throw(); |
| 120 return false; |
| 120 } | 121 } |
| 121 | 122 |
| 122 | 123 |
| 123 #endif | 124 #endif |
| OLD | NEW |