OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 The Android Open Source Project | 2 * Copyright 2014 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 | 8 |
9 #include "SkBitmapProcState.h" | 9 #include "SkBitmapProcState.h" |
10 #include "SkBitmapScaler.h" | 10 #include "SkBitmapScaler.h" |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 if (isOpaque) { | 250 if (isOpaque) { |
251 fSampleProc32 = SI8_opaque_D32_nofilter_DX_mips_dsp; | 251 fSampleProc32 = SI8_opaque_D32_nofilter_DX_mips_dsp; |
252 fShaderProc32 = nullptr; | 252 fShaderProc32 = nullptr; |
253 } | 253 } |
254 } | 254 } |
255 break; | 255 break; |
256 default: | 256 default: |
257 break; | 257 break; |
258 } | 258 } |
259 } | 259 } |
260 | |
261 void SkBitmapScaler::PlatformConvolutionProcs(SkConvolutionProcs*) {} | |
OLD | NEW |