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:
parent
20949e2fbd
commit
6c5ccd95f7
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user