OLD | NEW |
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" | |
17 | 16 |
18 | 17 |
19 /* | 18 /* |
20 ***************************************** | 19 ***************************************** |
21 *********This file is deprecated********* | 20 *********This file is deprecated********* |
22 ***************************************** | 21 ***************************************** |
23 * New CPU-specific work should be done in | 22 * New CPU-specific work should be done in |
24 * SkOpts framework. Run-time detection of | 23 * SkOpts framework. Run-time detection of |
25 * available instruction set extensions is | 24 * available instruction set extensions is |
26 * implemented in src/core/SkOpts.cpp file | 25 * implemented in src/core/SkOpts.cpp file |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 } | 154 } |
156 } else { | 155 } else { |
157 return nullptr; | 156 return nullptr; |
158 } | 157 } |
159 | 158 |
160 } | 159 } |
161 | 160 |
162 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkColorType, SkMask::Format, Ro
wFlags) { | 161 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkColorType, SkMask::Format, Ro
wFlags) { |
163 return nullptr; | 162 return nullptr; |
164 } | 163 } |
OLD | NEW |