diff options
author | Eric Anholt <[email protected]> | 2017-04-13 15:09:16 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2017-05-02 13:35:23 -0700 |
commit | a373f77662c557662a675139ea6121b05c1f2b72 (patch) | |
tree | 4cb255fbf16e1e81d25201c05ccc5fab9000942e /src/gallium/drivers/vc4/Makefile.sources | |
parent | 463b7d0332c59d7115642c9922915d097535b4d9 (diff) |
vc4: Use a wrapper file to set VC4_BUILD_NEON instead of CFLAGS.
Android.mk was setting the flag across the entire driver, so we didn't
have non-NEON versions getting built. This was going to be a problem with
the next commit, when I start auto-detecting NEON support and use the
non-NEON version when appropriate.
Reviewed-by: Rob Herring <[email protected]>
Diffstat (limited to 'src/gallium/drivers/vc4/Makefile.sources')
-rw-r--r-- | src/gallium/drivers/vc4/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/vc4/Makefile.sources b/src/gallium/drivers/vc4/Makefile.sources index 10de3436126..442d7a56178 100644 --- a/src/gallium/drivers/vc4/Makefile.sources +++ b/src/gallium/drivers/vc4/Makefile.sources @@ -56,6 +56,7 @@ C_SOURCES := \ vc4_state.c \ vc4_tiling.c \ vc4_tiling_lt.c \ + vc4_tiling_lt_neon.c \ vc4_tiling.h \ vc4_uniforms.c \ $() |