From: Emil Velikov Date: Mon, 16 Jun 2014 22:47:03 +0000 (+0100) Subject: targets/dri: Add __driDriverGetExtensions_freedreno symbol X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f48b06f89d62e4b7db3048a778d409f05d3dfc7b;p=mesa.git targets/dri: Add __driDriverGetExtensions_freedreno symbol Identical to previous two commits - will bring us a step closer to megadrivers. Cc: Rob Clark Signed-off-by: Emil Velikov Tested-by: Rob Clark Tested-by: Thomas Helland Acked-by: Tom Stellard --- diff --git a/src/gallium/auxiliary/target-helpers/inline_drm_helper.h b/src/gallium/auxiliary/target-helpers/inline_drm_helper.h index 131798c57da..6c9f15a830e 100644 --- a/src/gallium/auxiliary/target-helpers/inline_drm_helper.h +++ b/src/gallium/auxiliary/target-helpers/inline_drm_helper.h @@ -191,6 +191,18 @@ pipe_vmwgfx_create_screen(int fd) #endif #if defined(GALLIUM_FREEDRENO) +#if defined(DRI_TARGET) +#include "dri_screen.h" + +const __DRIextension **__driDriverGetExtensions_freedreno(void); + +PUBLIC const __DRIextension **__driDriverGetExtensions_freedreno(void) +{ + globalDriverAPI = &galliumdrm_driver_api; + return galliumdrm_driver_extensions; +} +#endif + static struct pipe_screen * pipe_freedreno_create_screen(int fd) { diff --git a/src/gallium/targets/dri/Makefile.am b/src/gallium/targets/dri/Makefile.am index 4f4c0da95ff..d5cbae57cc9 100644 --- a/src/gallium/targets/dri/Makefile.am +++ b/src/gallium/targets/dri/Makefile.am @@ -23,6 +23,11 @@ AM_CPPFLAGS += \ -DDRI_TARGET endif +if HAVE_GALLIUM_FREEDRENO +AM_CPPFLAGS += \ + -DDRI_TARGET +endif + dridir = $(DRI_DRIVER_INSTALL_DIR) dri_LTLIBRARIES = gallium_dri.la