From ff0e25f3a6c20d8df1aaa9376df35d5cfce0c0a9 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Mon, 16 Jun 2014 23:52:52 +0100 Subject: [PATCH] targets/dri: Add __driDriverGetExtensions_i965 symbol Identical to previous commits - will bring us a step closer to megadrivers. Cc: Chia-I Wu Signed-off-by: Emil Velikov Tested-by: Rob Clark Tested-by: Thomas Helland Acked-by: Tom Stellard --- .../auxiliary/target-helpers/inline_drm_helper.h | 12 ++++++++++++ src/gallium/targets/dri/Makefile.am | 5 +++++ 2 files changed, 17 insertions(+) diff --git a/src/gallium/auxiliary/target-helpers/inline_drm_helper.h b/src/gallium/auxiliary/target-helpers/inline_drm_helper.h index 48753a63f9d..2467a9ef731 100644 --- a/src/gallium/auxiliary/target-helpers/inline_drm_helper.h +++ b/src/gallium/auxiliary/target-helpers/inline_drm_helper.h @@ -79,6 +79,18 @@ pipe_i915_create_screen(int fd) #endif #if defined(GALLIUM_ILO) +#if defined(DRI_TARGET) +#include "dri_screen.h" + +const __DRIextension **__driDriverGetExtensions_i965(void); + +PUBLIC const __DRIextension **__driDriverGetExtensions_i965(void) +{ + globalDriverAPI = &galliumdrm_driver_api; + return galliumdrm_driver_extensions; +} +#endif + static struct pipe_screen * pipe_ilo_create_screen(int fd) { diff --git a/src/gallium/targets/dri/Makefile.am b/src/gallium/targets/dri/Makefile.am index a09883388a7..9e643775ab7 100644 --- a/src/gallium/targets/dri/Makefile.am +++ b/src/gallium/targets/dri/Makefile.am @@ -18,6 +18,11 @@ AM_CPPFLAGS += \ -DDRI_TARGET endif +if HAVE_GALLIUM_ILO +AM_CPPFLAGS += \ + -DDRI_TARGET +endif + if HAVE_GALLIUM_NOUVEAU AM_CPPFLAGS += \ -DDRI_TARGET -- 2.30.2