* commit '9690230a3c22977be24006d24ea35dd3efadc362': Fix the build for NEON in libpixelflinger
This commit is contained in:
commit
e4980725dc
2 changed files with 5 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ PIXELFLINGER_SRC_FILES_arm := \
|
|||
col32cb16blend.S \
|
||||
t32cb16blend.S \
|
||||
|
||||
ifeq ($(ARCH_ARM_HAVE_NEON),armv7-a)
|
||||
ifeq ($(ARCH_ARM_HAVE_NEON),true)
|
||||
PIXELFLINGER_SRC_FILES_arm += col32cb16blend_neon.S
|
||||
endif
|
||||
|
||||
|
|
|
|||
|
|
@ -26,6 +26,10 @@
|
|||
#include <cutils/memory.h>
|
||||
#include <cutils/log.h>
|
||||
|
||||
#ifdef __arm__
|
||||
#include <machine/cpu-features.h>
|
||||
#endif
|
||||
|
||||
#include "buffer.h"
|
||||
#include "scanline.h"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue