OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef SKIA_EXT_CONVOLVER_H_ | 5 #ifndef SKIA_EXT_CONVOLVER_H_ |
6 #define SKIA_EXT_CONVOLVER_H_ | 6 #define SKIA_EXT_CONVOLVER_H_ |
7 | 7 |
8 #include <cmath> | 8 #include <cmath> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/cpu.h" | 12 #include "base/cpu.h" |
13 #include "third_party/skia/include/core/SkTypes.h" | 13 #include "third_party/skia/include/core/SkTypes.h" |
14 | 14 |
15 #if defined(ARCH_CPU_X86_FAMILY) | 15 #if defined(ARCH_CPU_X86_FAMILY) |
16 // TODO(hclam): SSE2 is disabled on Linux 32-bits because GCC requires -msse2. | 16 // TODO(hclam): SSE2 is disabled on Linux 32-bits because GCC requires -msse2. |
17 // We should refactor the code in .cc and enable this. | 17 // We should refactor the code in .cc and enable this. |
18 #if defined(ARCH_CPU_X86_64) || defined(OS_MACOSX) | 18 #if defined(ARCH_CPU_X86_64) || defined(OS_MACOSX) || defined(COMPILER_MSVC) |
19 #define SIMD_SSE2 1 | 19 #define SIMD_SSE2 1 |
20 #endif | 20 #endif |
21 #endif | 21 #endif |
22 | 22 |
23 // avoid confusion with Mac OS X's math library (Carbon) | 23 // avoid confusion with Mac OS X's math library (Carbon) |
24 #if defined(__APPLE__) | 24 #if defined(__APPLE__) |
25 #undef FloatToFixed | 25 #undef FloatToFixed |
26 #undef FixedToFloat | 26 #undef FixedToFloat |
27 #endif | 27 #endif |
28 | 28 |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 int source_byte_row_stride, | 164 int source_byte_row_stride, |
165 bool source_has_alpha, | 165 bool source_has_alpha, |
166 const ConvolutionFilter1D& xfilter, | 166 const ConvolutionFilter1D& xfilter, |
167 const ConvolutionFilter1D& yfilter, | 167 const ConvolutionFilter1D& yfilter, |
168 int output_byte_row_stride, | 168 int output_byte_row_stride, |
169 unsigned char* output, | 169 unsigned char* output, |
170 bool use_sse2); | 170 bool use_sse2); |
171 } // namespace skia | 171 } // namespace skia |
172 | 172 |
173 #endif // SKIA_EXT_CONVOLVER_H_ | 173 #endif // SKIA_EXT_CONVOLVER_H_ |
OLD | NEW |