diff options
author | Chih-Wei Huang <[email protected]> | 2015-10-12 23:36:59 +0800 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-10-21 14:23:21 +0100 |
commit | 9b561ed2d189ad65ecdfb274b10b4984927865c8 (patch) | |
tree | 74e0291a329b10f8c2346248e6951658dbe6edf1 | |
parent | b0b31397e2ecb44a7667461c87200494f31b56c4 (diff) |
mesa: android: Fix the incorrect path of sse_minmax.c
Cc: "10.6 11.0" <[email protected]>
Fixes: 669cfc267a1 (android: mesa: fix the path of the SSE4_1
optimisations)
Signed-off-by: Chih-Wei Huang <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
(cherry picked from commit 67d8518a0e5a3df400a6e70de667d69e4b6ce9c5)
-rw-r--r-- | src/mesa/Android.libmesa_dricore.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/Android.libmesa_dricore.mk b/src/mesa/Android.libmesa_dricore.mk index 2e308b83733..fef76c8582c 100644 --- a/src/mesa/Android.libmesa_dricore.mk +++ b/src/mesa/Android.libmesa_dricore.mk @@ -50,7 +50,7 @@ endif # MESA_ENABLE_ASM ifeq ($(ARCH_X86_HAVE_SSE4_1),true) LOCAL_SRC_FILES += \ main/streaming-load-memcpy.c \ - mesa/main/sse_minmax.c + main/sse_minmax.c LOCAL_CFLAGS := \ -msse4.1 \ -DUSE_SSE41 |