diff options
author | tomhudson@google.com <tomhudson@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-03-19 14:20:56 +0000 |
---|---|---|
committer | tomhudson@google.com <tomhudson@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-03-19 14:20:56 +0000 |
commit | 6c5ccd95f73661b07dd0a300c62c7da17cd6e55a (patch) | |
tree | 117bc80014b83f038f7266d1b2f5a6389dae27a0 | |
parent | 20949e2fbdbf52f3128ce00a17f212bf1b286c45 (diff) |
Fix Android, too, by providing cross-platform NULL version of new factory.
Another cowboy build fix.
git-svn-id: http://skia.googlecode.com/svn/trunk@3425 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r-- | src/opts/SkUtils_opts_none.cpp | 7 | ||||
-rw-r--r-- | src/opts/opts_check_arm.cpp | 6 |
2 files changed, 13 insertions, 0 deletions
diff --git a/src/opts/SkUtils_opts_none.cpp b/src/opts/SkUtils_opts_none.cpp index 286f10d7e5..bb2558c803 100644 --- a/src/opts/SkUtils_opts_none.cpp +++ b/src/opts/SkUtils_opts_none.cpp @@ -7,6 +7,7 @@ */ +#include "SkBlitRow.h" #include "SkUtils.h" SkMemset16Proc SkMemset16GetPlatformProc() { @@ -16,3 +17,9 @@ SkMemset16Proc SkMemset16GetPlatformProc() { SkMemset32Proc SkMemset32GetPlatformProc() { return NULL; } + +SkBlitRow::ColorRectProc PlatformColorRectProcFactory() { + return NULL; +} + + diff --git a/src/opts/opts_check_arm.cpp b/src/opts/opts_check_arm.cpp index 20ec8a13f6..e7e39d3f9b 100644 --- a/src/opts/opts_check_arm.cpp +++ b/src/opts/opts_check_arm.cpp @@ -13,6 +13,7 @@ * available in the core */ +#include "SkBlitRow.h" #include "SkUtils.h" #if defined(__ARM_HAVE_NEON) && defined(SK_CPU_LENDIAN) @@ -44,3 +45,8 @@ SkMemset32Proc SkMemset32GetPlatformProc() { return NULL; #endif } + +SkBlitRow::ColorRectProc PlatformColorRectProcFactory() { + return NULL; +} + |