diff options
author | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2016-08-27 23:21:31 +0200 |
---|---|---|
committer | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2016-08-27 23:21:31 +0200 |
commit | b3271125eea1ccaef904b0d7eb8e97c4499b3603 (patch) | |
tree | 748be94cbf8a5d7d2889e54d42301b76c72e7800 | |
parent | c6a6d36255eb6f835e7d6e1c2e2ab4c8ffa9d143 (diff) | |
download | external_drm_gralloc-b3271125eea1ccaef904b0d7eb8e97c4499b3603.zip external_drm_gralloc-b3271125eea1ccaef904b0d7eb8e97c4499b3603.tar.gz external_drm_gralloc-b3271125eea1ccaef904b0d7eb8e97c4499b3603.tar.bz2 |
enable drm_gralloc module for swrastreplicant-6.0-beta-0001replicant-6.0-alpha-0006replicant-6.0-alpha-0005
Even if only swrast/llvmpipe is selected, there is still a dependency on
drm_gralloc. Removing the dependency seems to be too much work.
The path for the Mesa repo needs to be adapted.
Signed-off-by: Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de>
-rw-r--r-- | Android.mk | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -21,7 +21,7 @@ # Android.mk for drm_gralloc -DRM_GPU_DRIVERS := $(strip $(filter-out swrast, $(BOARD_GPU_DRIVERS))) +DRM_GPU_DRIVERS := $(strip $(BOARD_GPU_DRIVERS)) freedreno_drivers := freedreno intel_drivers := i915 i965 i915g ilo @@ -115,10 +115,10 @@ ifneq ($(filter pipe, $(DRM_GPU_DRIVERS)),) LOCAL_SRC_FILES += gralloc_drm_pipe.c LOCAL_CFLAGS += -DENABLE_PIPE LOCAL_C_INCLUDES += \ - external/mesa/include \ - external/mesa/src \ - external/mesa/src/gallium/include \ - external/mesa/src/gallium/auxiliary + external/mesa3d/include \ + external/mesa3d/src \ + external/mesa3d/src/gallium/include \ + external/mesa3d/src/gallium/auxiliary LOCAL_SHARED_LIBRARIES += libdl |