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

Side by Side Diff: src/core/SkOpts.cpp

Issue 2002423002: [GN] Add support for disabling opts via SK_BUILD_NO_OPTS define. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 6 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 | « public.bzl ('k') | tests/SkBlend_optsTest.cpp » ('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 #include "SkCpu.h" 8 #include "SkCpu.h"
9 #include "SkHalf.h" 9 #include "SkHalf.h"
10 #include "SkOnce.h" 10 #include "SkOnce.h"
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 decltype(srcover_srgb_srgb) srcover_srgb_srgb = sk_default::srcover_srgb_srg b; 77 decltype(srcover_srgb_srgb) srcover_srgb_srgb = sk_default::srcover_srgb_srg b;
78 78
79 // Each Init_foo() is defined in src/opts/SkOpts_foo.cpp. 79 // Each Init_foo() is defined in src/opts/SkOpts_foo.cpp.
80 void Init_ssse3(); 80 void Init_ssse3();
81 void Init_sse41(); 81 void Init_sse41();
82 void Init_sse42() {} 82 void Init_sse42() {}
83 void Init_avx() {} 83 void Init_avx() {}
84 void Init_avx2() {} 84 void Init_avx2() {}
85 85
86 static void init() { 86 static void init() {
87 // TODO: Chrome's not linking _sse* opts on iOS simulator builds. Bug o r feature? 87 #if defined(SK_CPU_X86) && !defined(SK_BUILD_NO_OPTS)
88 #if defined(SK_CPU_X86) && !defined(SK_BUILD_FOR_IOS)
89 if (SkCpu::Supports(SkCpu::SSSE3)) { Init_ssse3(); } 88 if (SkCpu::Supports(SkCpu::SSSE3)) { Init_ssse3(); }
90 if (SkCpu::Supports(SkCpu::SSE41)) { Init_sse41(); } 89 if (SkCpu::Supports(SkCpu::SSE41)) { Init_sse41(); }
91 if (SkCpu::Supports(SkCpu::SSE42)) { Init_sse42(); } 90 if (SkCpu::Supports(SkCpu::SSE42)) { Init_sse42(); }
92 if (SkCpu::Supports(SkCpu::AVX )) { Init_avx(); } 91 if (SkCpu::Supports(SkCpu::AVX )) { Init_avx(); }
93 if (SkCpu::Supports(SkCpu::AVX2 )) { Init_avx2(); } 92 if (SkCpu::Supports(SkCpu::AVX2 )) { Init_avx2(); }
94 #endif 93 #endif
95 } 94 }
96 95
97 void Init() { 96 void Init() {
98 static SkOnce once; 97 static SkOnce once;
99 once(init); 98 once(init);
100 } 99 }
101 } // namespace SkOpts 100 } // namespace SkOpts
OLDNEW
« no previous file with comments | « public.bzl ('k') | tests/SkBlend_optsTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698