Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Side by Side Diff: src/core/Sk2x.h

Issue 1026723003: Guard SIMD code with !defined(SKNX_NO_SIMD). (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: switch Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/core/Sk4x.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
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 #ifndef Sk2x_DEFINED 8 #ifndef Sk2x_DEFINED
9 #define Sk2x_DEFINED 9 #define Sk2x_DEFINED
10 10
11 #include "SkTypes.h" 11 #include "SkTypes.h"
12 #include "SkNx.h"
12 13
13 #define SK2X_PREAMBLE 1 14 #define SK2X_PREAMBLE 1
14 #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2 15 #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2 && !defined(SKNX_NO_SIMD)
15 #include "../opts/Sk2x_sse.h" 16 #include "../opts/Sk2x_sse.h"
16 #elif defined(__ARM_NEON__) 17 #elif defined(__ARM_NEON__) && !defined(SKNX_NO_SIMD)
17 #include "../opts/Sk2x_neon.h" 18 #include "../opts/Sk2x_neon.h"
18 #else 19 #else
19 #include "../opts/Sk2x_none.h" 20 #include "../opts/Sk2x_none.h"
20 #endif 21 #endif
21 #undef SK2X_PREAMBLE 22 #undef SK2X_PREAMBLE
22 23
23 template <typename T> class Sk2x; 24 template <typename T> class Sk2x;
24 typedef Sk2x<float> Sk2f; 25 typedef Sk2x<float> Sk2f;
25 typedef Sk2x<double> Sk2d; 26 typedef Sk2x<double> Sk2d;
26 27
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 Sk2x& operator *=(const Sk2x& o) { return (*this = *this * o); } 59 Sk2x& operator *=(const Sk2x& o) { return (*this = *this * o); }
59 60
60 Sk2x rsqrt() const; // Approximate 1/this->sqrt(). 61 Sk2x rsqrt() const; // Approximate 1/this->sqrt().
61 Sk2x sqrt() const; // this->multiply(this->rsqrt()) may be faster, but le ss precise. 62 Sk2x sqrt() const; // this->multiply(this->rsqrt()) may be faster, but le ss precise.
62 63
63 static Sk2x Min(const Sk2x&, const Sk2x&); 64 static Sk2x Min(const Sk2x&, const Sk2x&);
64 static Sk2x Max(const Sk2x&, const Sk2x&); 65 static Sk2x Max(const Sk2x&, const Sk2x&);
65 66
66 private: 67 private:
67 #define SK2X_PRIVATE 1 68 #define SK2X_PRIVATE 1
68 #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2 69 #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2 && !defined(SKNX_NO_SIMD)
69 #include "../opts/Sk2x_sse.h" 70 #include "../opts/Sk2x_sse.h"
70 #elif defined(__ARM_NEON__) 71 #elif defined(__ARM_NEON__) && !defined(SKNX_NO_SIMD)
71 #include "../opts/Sk2x_neon.h" 72 #include "../opts/Sk2x_neon.h"
72 #else 73 #else
73 #include "../opts/Sk2x_none.h" 74 #include "../opts/Sk2x_none.h"
74 #endif 75 #endif
75 #undef SK2X_PRIVATE 76 #undef SK2X_PRIVATE
76 }; 77 };
77 78
78 #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2 79 #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2 && !defined(SKNX_NO_SIMD)
79 #include "../opts/Sk2x_sse.h" 80 #include "../opts/Sk2x_sse.h"
80 #elif defined(__ARM_NEON__) 81 #elif defined(__ARM_NEON__) && !defined(SKNX_NO_SIMD)
81 #include "../opts/Sk2x_neon.h" 82 #include "../opts/Sk2x_neon.h"
82 #else 83 #else
83 #include "../opts/Sk2x_none.h" 84 #include "../opts/Sk2x_none.h"
84 #endif 85 #endif
85 86
86 #endif//Sk2x_DEFINED 87 #endif//Sk2x_DEFINED
OLDNEW
« no previous file with comments | « no previous file | src/core/Sk4x.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698