From 8aeb6d768b4285f600d09f38d0b406adf46c251d Mon Sep 17 00:00:00 2001 From: Rob Herring Date: Tue, 3 May 2016 21:02:47 -0500 Subject: gbm: Add map/unmap functions This adds map and unmap functions to GBM utilizing the DRIimage extension mapImage/unmapImage functions or existing internal mapping for dumb buffers. Unlike prior attempts, this version provides a region to map and usage flags for the mapping. The operation follows the same semantics as the gallium transfer_map() function. This was tested with GBM based gralloc on Android. Signed-off-by: Rob Herring [Emil Velikov: drop no longer relevant hunk from commit message.] Reviewed-by: Emil Velikov Reviewed-by: Eric Anholt --- src/gbm/Makefile.am | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/gbm/Makefile.am') diff --git a/src/gbm/Makefile.am b/src/gbm/Makefile.am index 45fb762620a..aba8d1ec351 100644 --- a/src/gbm/Makefile.am +++ b/src/gbm/Makefile.am @@ -41,10 +41,12 @@ libgbm_la_SOURCES += \ AM_CFLAGS += \ -DDEFAULT_DRIVER_DIR='"$(DRI_DRIVER_SEARCH_DIR)"' \ - $(LIBDRM_CFLAGS) + $(LIBDRM_CFLAGS) \ + $(PTHREADSTUBS_CFLAGS) libgbm_la_LIBADD += \ - $(LIBDRM_LIBS) + $(LIBDRM_LIBS) \ + $(PTHREADSTUBS_LIBS) endif TESTS = gbm-symbols-check -- cgit v1.2.3