diff options
author | Emil Velikov <[email protected]> | 2014-07-20 22:13:34 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-08-13 00:46:52 +0100 |
commit | bf05e067577a8d8e87a377dfb357806b67b6afca (patch) | |
tree | bc00fcee5d95abcff9daecea417c8cad04e0b707 /src/gallium/Android.mk | |
parent | 458d03a4a4cebe7b9e9ea265d18bfc547bc4b49c (diff) |
android: gallium/freedreno: add preliminary build
For all the people interested in testing the freedreno driver on
their Android devices. The next commit will hook these up within
the libEGL driver (via the gallium-egl backend).
There may be some rough edges but those can be sorted when a
willing builder/tester comes along.
v2:
- s/freefreno/freedreno/. Spotted by Matt Turner.
- Use the installed libdrm headers.
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/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 e365d6773b9..767361a8a23 100644 --- a/src/gallium/Android.mk +++ b/src/gallium/Android.mk @@ -34,6 +34,11 @@ SUBDIRS := \ # swrast SUBDIRS += winsys/sw/android drivers/softpipe +# freedreno +ifneq ($(filter freedreno, $(MESA_GPU_DRIVERS)),) +SUBDIRS += winsys/freedreno/drm drivers/freedreno +endif + # i915g ifneq ($(filter i915g, $(MESA_GPU_DRIVERS)),) SUBDIRS += winsys/i915/drm drivers/i915 |