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
This commit is contained in:
tomhudson@google.com 2012-03-19 14:20:56 +00:00
parent 20949e2fbd
commit 6c5ccd95f7
2 changed files with 13 additions and 0 deletions

View File

@ -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;
}

View File

@ -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;
}