summaryrefslogtreecommitdiffstats
path: root/src/glx/dri_common.h
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2013-09-23 14:44:10 -0700
committerEric Anholt <eric@anholt.net>2013-10-24 14:04:20 -0700
commitfcb57a8210e819cc14a39c79f23530eb22296da0 (patch)
tree306eca1c0435a67820adffbc553737868e07d911 /src/glx/dri_common.h
parent6868923702d5cdb93d06627ea4f40abe99cda75a (diff)
downloadexternal_mesa3d-fcb57a8210e819cc14a39c79f23530eb22296da0.zip
external_mesa3d-fcb57a8210e819cc14a39c79f23530eb22296da0.tar.gz
external_mesa3d-fcb57a8210e819cc14a39c79f23530eb22296da0.tar.bz2
glx: Add an optional function call for getting the DRI driver interface.
The previous interface relied on a static struct, which meant that the driver didn't get a chance to edit the struct before the struct got used. For megadrivers, I want struct specific to the driver being loaded. v2: Fix the prototype in the docs (caught by Marek). Since the driver name was in the function, we didn't need to also pass it in. v3: Fix asprintf error checking (caught by Matt's gcc). Reviewed-by: Matt Turner <mattst88@gmail.com> (v1) Reviewed-by: Chad Versace <chad.versace@linux.intel.com> Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Diffstat (limited to 'src/glx/dri_common.h')
-rw-r--r--src/glx/dri_common.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/glx/dri_common.h b/src/glx/dri_common.h
index 2ebcb81..4fe0d3f 100644
--- a/src/glx/dri_common.h
+++ b/src/glx/dri_common.h
@@ -69,7 +69,8 @@ extern void CriticalErrorMessageF(const char *f, ...);
extern void *driOpenDriver(const char *driverName);
-extern const __DRIextension **driGetDriverExtensions(void *handle);
+extern const __DRIextension **
+driGetDriverExtensions(void *handle, const char *driver_name);
extern bool
dri2_convert_glx_attribs(unsigned num_attribs, const uint32_t *attribs,