summaryrefslogtreecommitdiffstats
path: root/src/gallium/Android.mk
diff options
context:
space:
mode:
authorChia-I Wu <[email protected]>2011-08-19 14:35:45 +0800
committerChia-I Wu <[email protected]>2011-08-25 08:54:16 +0800
commit7b1972d7be8ed68676786288ac2d77b8d71d113d (patch)
tree3874ffd33982095901087916eae384ab3acddb63 /src/gallium/Android.mk
parent689b45fb27c36db49d68eb99a015f68a651d75ef (diff)
android: add support for r600g
Tested with a Radeon HD 6250. SurfaceFlinger (the display server and compositor) works. 2D apps with RGB or RGBA visuals work. As for 3D apps, some work but some don't (with serious rendering defects). Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/Android.mk')
-rw-r--r--src/gallium/Android.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/Android.mk b/src/gallium/Android.mk
index bcbabba9db9..b49a61b1ffd 100644
--- a/src/gallium/Android.mk
+++ b/src/gallium/Android.mk
@@ -34,5 +34,11 @@ SUBDIRS := \
# swrast
SUBDIRS += winsys/sw/android drivers/softpipe
+# r600g
+ifneq ($(filter r600g, $(MESA_GPU_DRIVERS)),)
+SUBDIRS += winsys/radeon/drm
+SUBDIRS += winsys/r600/drm drivers/r600
+endif
+
mkfiles := $(patsubst %,$(GALLIUM_TOP)/%/Android.mk,$(SUBDIRS))
include $(mkfiles)