diff options
author | Chia-I Wu <[email protected]> | 2011-08-22 11:14:33 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2011-08-27 17:28:32 +0800 |
commit | 04dbb37eaa1aa6c60eb7130ebba6893954418b78 (patch) | |
tree | 6d51bc575bad9bcaa9619520c4becc70474fdb39 /src/gallium/Android.mk | |
parent | 0cc088900725945bf381a07c8d85d1c8fdb447ac (diff) |
android: add support for vmwgfx
Quickly tested with VMWare Workstation 7.1.4 on Linux with GeForce
GT220. SurfaceFlinger (the display server and compositor) works. 2D
apps with RGB visual works. However, due to missing
PIPE_FORMAT_R8G8B8A8_UNORM support, those with RGBA visual do not.
Diffstat (limited to 'src/gallium/Android.mk')
-rw-r--r-- | src/gallium/Android.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/Android.mk b/src/gallium/Android.mk index b49a61b1ffd..45c4f84da88 100644 --- a/src/gallium/Android.mk +++ b/src/gallium/Android.mk @@ -40,5 +40,10 @@ SUBDIRS += winsys/radeon/drm SUBDIRS += winsys/r600/drm drivers/r600 endif +# vmwgfx +ifneq ($(filter vmwgfx, $(MESA_GPU_DRIVERS)),) +SUBDIRS += winsys/svga/drm drivers/svga +endif + mkfiles := $(patsubst %,$(GALLIUM_TOP)/%/Android.mk,$(SUBDIRS)) include $(mkfiles) |