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

Side by Side Diff: src/opts/opts_check_x86.cpp

Issue 2215433003: Revert of SkRTConf: reduce functionality to what we use, increase simplicity (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 4 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 | « src/images/SkPNGImageEncoder.cpp ('k') | src/utils/SkRTConf.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 2009 The Android Open Source Project 2 * Copyright 2009 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 "SkBitmapFilter_opts_SSE2.h" 8 #include "SkBitmapFilter_opts_SSE2.h"
9 #include "SkBitmapProcState_opts_SSE2.h" 9 #include "SkBitmapProcState_opts_SSE2.h"
10 #include "SkBitmapProcState_opts_SSSE3.h" 10 #include "SkBitmapProcState_opts_SSSE3.h"
11 #include "SkBitmapScaler.h" 11 #include "SkBitmapScaler.h"
12 #include "SkBlitMask.h" 12 #include "SkBlitMask.h"
13 #include "SkBlitRow.h" 13 #include "SkBlitRow.h"
14 #include "SkBlitRow_opts_SSE2.h" 14 #include "SkBlitRow_opts_SSE2.h"
15 #include "SkCpu.h" 15 #include "SkCpu.h"
16 #include "SkRTConf.h"
16 17
17 18
18 /* 19 /*
19 ***************************************** 20 *****************************************
20 *********This file is deprecated********* 21 *********This file is deprecated*********
21 ***************************************** 22 *****************************************
22 * New CPU-specific work should be done in 23 * New CPU-specific work should be done in
23 * SkOpts framework. Run-time detection of 24 * SkOpts framework. Run-time detection of
24 * available instruction set extensions is 25 * available instruction set extensions is
25 * implemented in src/core/SkOpts.cpp file 26 * implemented in src/core/SkOpts.cpp file
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 } 155 }
155 } else { 156 } else {
156 return nullptr; 157 return nullptr;
157 } 158 }
158 159
159 } 160 }
160 161
161 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkColorType, SkMask::Format, Ro wFlags) { 162 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkColorType, SkMask::Format, Ro wFlags) {
162 return nullptr; 163 return nullptr;
163 } 164 }
OLDNEW
« no previous file with comments | « src/images/SkPNGImageEncoder.cpp ('k') | src/utils/SkRTConf.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698