Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Side by Side Diff: src/opts/SkBlitRow_opts_arm.cpp

Issue 21120007: ARM Skia NEON patches - 15 - Preparation work for Blitmask optims (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Revised version Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/opts/SkBlitMask_opts_none.cpp ('k') | src/opts/SkBlitRow_opts_none.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « src/opts/SkBlitMask_opts_none.cpp ('k') | src/opts/SkBlitRow_opts_none.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698