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