diff options
author | Emil Velikov <[email protected]> | 2014-07-20 22:21:23 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-08-13 00:46:53 +0100 |
commit | 792041ebe5d6ccfdd03cf6903f4942aa115387c6 (patch) | |
tree | a298c3d553124167f996ab1cf342ab68bad591e0 /src/gallium/targets | |
parent | bf05e067577a8d8e87a377dfb357806b67b6afca (diff) |
android: egl/main: add/enable freedreno
For all everyone willing to give the freedreno driver
a go they can now build it under Android.
Cc: "10.1 10.2" <[email protected]>
Cc: Rob Clark <[email protected]>
Cc: [email protected]
Signed-off-by: Emil Velikov <[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 00569dd0183..d25c43225ca 100644 --- a/src/gallium/targets/egl-static/Android.mk +++ b/src/gallium/targets/egl-static/Android.mk @@ -52,6 +52,9 @@ LOCAL_C_INCLUDES += \ $(DRM_TOP) endif +ifneq ($(filter freedreno, $(MESA_GPU_DRIVERS)),) +LOCAL_CFLAGS += -DGALLIUM_FREEDRENO +endif ifneq ($(filter i915g, $(MESA_GPU_DRIVERS)),) LOCAL_CFLAGS += -DGALLIUM_I915 endif |