diff options
author | Chia-I Wu <[email protected]> | 2013-05-03 15:44:09 +0800 |
---|---|---|
committer | Chad Versace <[email protected]> | 2013-05-06 07:20:07 -0700 |
commit | da109d56d5df8b3188d8cf18ef42343793a9dbf8 (patch) | |
tree | a348d9f0cf4188323cf043d50c1a8fbda6168cd8 /src/gallium/targets | |
parent | 739b88330c26457834c5e7e1b2e16cc3655d3fac (diff) |
android: add ilo to the build system
It can be selected with
BOARD_GPU_DRIVERS := ilo
Signed-off-by: Chia-I Wu <[email protected]>
Reviewed-by: Tapani Pälli <[email protected]>
Diffstat (limited to 'src/gallium/targets')
-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 99c08120d4b..06975dbd5d9 100644 --- a/src/gallium/targets/egl-static/Android.mk +++ b/src/gallium/targets/egl-static/Android.mk @@ -56,6 +56,9 @@ endif ifneq ($(filter i915g, $(MESA_GPU_DRIVERS)),) LOCAL_CFLAGS += -D_EGL_PIPE_I915=1 endif +ifneq ($(filter ilo, $(MESA_GPU_DRIVERS)),) +LOCAL_CFLAGS += -D_EGL_PIPE_ILO=1 +endif ifneq ($(filter nouveau, $(MESA_GPU_DRIVERS)),) LOCAL_CFLAGS += -D_EGL_PIPE_NOUVEAU=1 endif |