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