diff options
author | Chia-I Wu <[email protected]> | 2011-08-22 11:21:31 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2011-08-27 17:29:13 +0800 |
commit | 534df791878ed90cf7c2e4f14482ff03b7c41e77 (patch) | |
tree | 08971cb3634905b549796f7b7e1a837cc5888e86 /src/gallium/targets/egl-static/Android.mk | |
parent | c696d65793a47a9ec05dfa73242151a9451943ea (diff) |
android: add support for nouveau
Compile tested only.
Diffstat (limited to 'src/gallium/targets/egl-static/Android.mk')
-rw-r--r-- | src/gallium/targets/egl-static/Android.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/targets/egl-static/Android.mk b/src/gallium/targets/egl-static/Android.mk index c34693a8758..8bdbeda61f4 100644 --- a/src/gallium/targets/egl-static/Android.mk +++ b/src/gallium/targets/egl-static/Android.mk @@ -49,6 +49,9 @@ LOCAL_CFLAGS += -DGALLIUM_SOFTPIPE ifneq ($(filter i915g, $(MESA_GPU_DRIVERS)),) LOCAL_CFLAGS += -D_EGL_PIPE_I915=1 endif +ifneq ($(filter nouveau, $(MESA_GPU_DRIVERS)),) +LOCAL_CFLAGS += -D_EGL_PIPE_NOUVEAU=1 +endif ifneq ($(filter r300g, $(MESA_GPU_DRIVERS)),) LOCAL_CFLAGS += -D_EGL_PIPE_R300=1 endif |