From 3591acacf9579033aeaf3ccade59ad02288236e9 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Mon, 16 Jun 2014 23:51:12 +0100 Subject: targets/dri: Add __driDriverGetExtensions_i915 symbol Identical to previous commits - will bring us a step closer to megadrivers. Cc: Stephane Marchesin Signed-off-by: Emil Velikov Tested-by: Rob Clark Tested-by: Thomas Helland Acked-by: Tom Stellard --- src/gallium/auxiliary/target-helpers/inline_drm_helper.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/gallium/auxiliary') diff --git a/src/gallium/auxiliary/target-helpers/inline_drm_helper.h b/src/gallium/auxiliary/target-helpers/inline_drm_helper.h index 6c9f15a830e..48753a63f9d 100644 --- a/src/gallium/auxiliary/target-helpers/inline_drm_helper.h +++ b/src/gallium/auxiliary/target-helpers/inline_drm_helper.h @@ -51,6 +51,18 @@ static char* driver_name = NULL; /* XXX: We need to teardown the winsys if *screen_create() fails. */ #if defined(GALLIUM_I915) +#if defined(DRI_TARGET) +#include "dri_screen.h" + +const __DRIextension **__driDriverGetExtensions_i915(void); + +PUBLIC const __DRIextension **__driDriverGetExtensions_i915(void) +{ + globalDriverAPI = &galliumdrm_driver_api; + return galliumdrm_driver_extensions; +} +#endif + static struct pipe_screen * pipe_i915_create_screen(int fd) { -- cgit v1.2.3