summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2010-02-18 16:54:57 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2010-02-18 16:54:57 +0100
commit1ac166895fef47806c9e9286d2a6356b4db8398d (patch)
tree9b35e8df54e694dbe323882d9f3a97fbc2db7f74
parent411cedcc46754c98c4cdcedf40e4d4a98bf19c89 (diff)
Push __driDriverExtensions out of dri_util.c and into the glamo driver http://cgit.freedesktop.org/mesa/mesa/commit/?id=39a0e4e7de379a182c1544fa24d5cb2a7687ec72
-rw-r--r--src/mesa/drivers/dri/glamo/glamo_screen.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/glamo/glamo_screen.c b/src/mesa/drivers/dri/glamo/glamo_screen.c
index ee29d17777..39148f3eb1 100644
--- a/src/mesa/drivers/dri/glamo/glamo_screen.c
+++ b/src/mesa/drivers/dri/glamo/glamo_screen.c
@@ -239,4 +239,12 @@ const struct __DriverAPIRec driDriverAPI = {
.InitScreen2 = glamoInitScreen2, /* For DRI2 */
};
+/* This is the table of extensions that the loader will dlsym() for. */
+PUBLIC const __DRIextension *__driDriverExtensions[] = {
+ &driCoreExtension.base,
+ &driLegacyExtension.base,
+ &driDRI2Extension.base,
+ NULL
+};
+
/* kate: space-indent on; indent-width 3; mixedindent off; indent-mode cstyle; */