| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 The Android Open Source Project | 2 * Copyright 2012 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 "SkBlitRow_opts_arm.h" | 8 #include "SkBlitRow_opts_arm.h" |
| 9 | 9 |
| 10 #include "SkBlitMask.h" | |
| 11 #include "SkBlitRow.h" | 10 #include "SkBlitRow.h" |
| 12 #include "SkColorPriv.h" | 11 #include "SkColorPriv.h" |
| 13 #include "SkDither.h" | 12 #include "SkDither.h" |
| 14 #include "SkMathPriv.h" | 13 #include "SkMathPriv.h" |
| 15 #include "SkUtils.h" | 14 #include "SkUtils.h" |
| 16 | 15 |
| 17 #include "SkCachePreload_arm.h" | 16 #include "SkCachePreload_arm.h" |
| 18 | 17 |
| 19 #if USE_ARM_CODE | 18 #if USE_ARM_CODE |
| 20 | 19 |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 SkBlitRow::Proc32 SkBlitRow::PlatformProcs32(unsigned flags) { | 363 SkBlitRow::Proc32 SkBlitRow::PlatformProcs32(unsigned flags) { |
| 365 return SK_ARM_NEON_WRAP(sk_blitrow_platform_32_procs_arm)[flags]; | 364 return SK_ARM_NEON_WRAP(sk_blitrow_platform_32_procs_arm)[flags]; |
| 366 } | 365 } |
| 367 | 366 |
| 368 /////////////////////////////////////////////////////////////////////////////// | 367 /////////////////////////////////////////////////////////////////////////////// |
| 369 #define Color32_arm NULL | 368 #define Color32_arm NULL |
| 370 SkBlitRow::ColorProc SkBlitRow::PlatformColorProc() { | 369 SkBlitRow::ColorProc SkBlitRow::PlatformColorProc() { |
| 371 return SK_ARM_NEON_WRAP(Color32_arm); | 370 return SK_ARM_NEON_WRAP(Color32_arm); |
| 372 } | 371 } |
| 373 | 372 |
| 374 SkBlitMask::ColorProc SkBlitMask::PlatformColorProcs(SkBitmap::Config dstConfig, | |
| 375 SkMask::Format maskFormat, | |
| 376 SkColor color) { | |
| 377 return NULL; | |
| 378 } | |
| 379 | |
| 380 SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) { | |
| 381 return NULL; | |
| 382 } | |
| 383 | |
| 384 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkBitmap::Config dstConfig, | |
| 385 SkMask::Format maskFormat, | |
| 386 RowFlags flags) { | |
| 387 return NULL; | |
| 388 } | |
| OLD | NEW |