aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/opts
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-07-10 13:55:46 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-07-10 13:55:46 +0000
commit89c43e84c4fcce073dabc01ccbdecc931c80d2e4 (patch)
treee5eec6c28d6bf06e6161a853a0aae28b94d4c7e3 /src/opts
parent939fffed1261f6e9db031c83df038ad258607bc2 (diff)
ARM Skia NEON patches - 05 - Cleaning
Misc: move definition of empty SkBlitRow::ColorRectProc For the sake of consistency, the empty SkBlitRow::ColorRectProc should be defined in SkBlitRow_opts_none.cpp rather than SkUtils_opts_none.cpp BUG= R=djsollen@google.com, reed@google.com, tomhudson@google.com Author: kevin.petit.arm@gmail.com Review URL: https://chromiumcodereview.appspot.com/18314005 git-svn-id: http://skia.googlecode.com/svn/trunk@9953 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/opts')
-rw-r--r--src/opts/SkBlitRow_opts_none.cpp4
-rw-r--r--src/opts/SkUtils_opts_none.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/opts/SkBlitRow_opts_none.cpp b/src/opts/SkBlitRow_opts_none.cpp
index 381c1c06f6..0abcf59160 100644
--- a/src/opts/SkBlitRow_opts_none.cpp
+++ b/src/opts/SkBlitRow_opts_none.cpp
@@ -22,6 +22,10 @@ SkBlitRow::ColorProc SkBlitRow::PlatformColorProc() {
return NULL;
}
+SkBlitRow::ColorRectProc PlatformColorRectProcFactory() {
+ return NULL;
+}
+
///////////////////////////////////////////////////////////////////////////////
SkBlitMask::ColorProc SkBlitMask::PlatformColorProcs(SkBitmap::Config dstConfig,
diff --git a/src/opts/SkUtils_opts_none.cpp b/src/opts/SkUtils_opts_none.cpp
index d905425e40..c7658111d5 100644
--- a/src/opts/SkUtils_opts_none.cpp
+++ b/src/opts/SkUtils_opts_none.cpp
@@ -7,7 +7,6 @@
*/
-#include "SkBlitRow.h"
#include "SkUtils.h"
SkMemset16Proc SkMemset16GetPlatformProc() {
@@ -18,6 +17,3 @@ SkMemset32Proc SkMemset32GetPlatformProc() {
return NULL;
}
-SkBlitRow::ColorRectProc PlatformColorRectProcFactory() {
- return NULL;
-}