diff options
author | Chia-I Wu <[email protected]> | 2011-08-22 10:45:29 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2011-08-27 17:29:12 +0800 |
commit | c696d65793a47a9ec05dfa73242151a9451943ea (patch) | |
tree | 7882adf1d303989044bebac2cc84a06a8a6622ae /src/gallium/targets/egl-static/Android.mk | |
parent | 99be968e99141c01b0fd3c045fe0f4c0c595ed51 (diff) |
android: add support for r300g
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 a6b026c8869..c34693a8758 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 r300g, $(MESA_GPU_DRIVERS)),) +LOCAL_CFLAGS += -D_EGL_PIPE_R300=1 +endif ifneq ($(filter r600g, $(MESA_GPU_DRIVERS)),) LOCAL_CFLAGS += -D_EGL_PIPE_R600=1 endif |