diff options
author | Rob Herring <[email protected]> | 2017-06-26 16:23:00 -0500 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2017-06-26 16:10:42 -0700 |
commit | c4291a3283ae2bdb9a33c14d86294c8e843d3ce6 (patch) | |
tree | 22b42f5f95c52c6e1bda9081ccef19f825b0ae6a /src/gallium/auxiliary/Android.mk | |
parent | a00a277da99f426c5820c39264d51381f14b2a86 (diff) |
Android: add renderonly files to libmesa_gallium
vc4 now depends on renderonly functions, but these weren't added to the
Android build resulting in the following errors:
src/gallium/drivers/vc4/vc4_resource.c:380: error: undefined reference to 'renderonly_scanout_destroy'
src/gallium/drivers/vc4/vc4_resource.c:681: error: undefined reference to 'renderonly_create_gpu_import_for_resource'
src/gallium/drivers/vc4/vc4_screen.c:625: error: undefined reference to 'renderonly_dup'
src/gallium/winsys/pl111/drm/pl111_drm_winsys.c:37: error: undefined reference to 'renderonly_create_gpu_import_for_resource'
src/gallium/winsys/pl111/drm/pl111_drm_winsys.c:37: error: undefined reference to 'renderonly_create_gpu_import_for_resource'
Fixes: 7029ec05e2c7 ("gallium: Add renderonly-based support for pl111+vc4.")
Signed-off-by: Rob Herring <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/Android.mk')
-rw-r--r-- | src/gallium/auxiliary/Android.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/Android.mk b/src/gallium/auxiliary/Android.mk index e2a1fc214eb..356390dfde6 100644 --- a/src/gallium/auxiliary/Android.mk +++ b/src/gallium/auxiliary/Android.mk @@ -31,6 +31,7 @@ include $(CLEAR_VARS) LOCAL_SRC_FILES := \ $(C_SOURCES) \ $(NIR_SOURCES) \ + $(RENDERONLY_SOURCES) \ $(VL_STUB_SOURCES) LOCAL_C_INCLUDES := \ |