[Mesa-dev] [PATCH 14/23] targets/dri: Add __driDriverGetExtensions_i915 symbol

Emil Velikov emil.l.velikov at gmail.com
Tue Jun 17 11:38:30 PDT 2014


Identical to previous commits - will bring us a step closer
to megadrivers.
Cc: Stephane Marchesin <stephane.marchesin at gmail.com>

Signed-off-by: Emil Velikov <emil.l.velikov at gmail.com>
---
 src/gallium/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 e0af524..efa2434 100644
--- a/src/gallium/auxiliary/target-helpers/inline_drm_helper.h
+++ b/src/gallium/auxiliary/target-helpers/inline_drm_helper.h
@@ -53,6 +53,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)
 {
diff --git a/src/gallium/targets/dri/Makefile.am b/src/gallium/targets/dri/Makefile.am
index 9cb02de..d21ccba 100644
--- a/src/gallium/targets/dri/Makefile.am
+++ b/src/gallium/targets/dri/Makefile.am
@@ -13,6 +13,11 @@ AM_CPPFLAGS = \
 	-DGALLIUM_RBUG \
 	-DGALLIUM_TRACE
 
+if HAVE_GALLIUM_I915
+AM_CPPFLAGS += \
+	-DDRI_TARGET
+endif
+
 if HAVE_GALLIUM_NOUVEAU
 AM_CPPFLAGS += \
 	-DDRI_TARGET
-- 
2.0.0



More information about the mesa-dev mailing list