summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/common
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2005-08-05 22:12:49 +0000
committerIan Romanick <idr@us.ibm.com>2005-08-05 22:12:49 +0000
commit6965f2cb0a481e88fb87f34f82d775bc2080a460 (patch)
treeda6c5b3417beaad2c490b57b1260a2ce5e9ae8cb /src/mesa/drivers/dri/common
parent928218a283b5a3d72350d94543ea8d256bd7b7c5 (diff)
Fixes bugzillla #812.
The weak version of _glapi_DispatchTSD was removed from dri_util.c. As stated in the bug report, this was only needed to support versions of libGL that did not have this symbol. Versions of libGL without this symbol are no longer supported at all, so it is totally irrelevant.
Diffstat (limited to 'src/mesa/drivers/dri/common')
-rw-r--r--src/mesa/drivers/dri/common/dri_util.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mesa/drivers/dri/common/dri_util.c b/src/mesa/drivers/dri/common/dri_util.c
index 4bb64c53f8..20faf0fda4 100644
--- a/src/mesa/drivers/dri/common/dri_util.c
+++ b/src/mesa/drivers/dri/common/dri_util.c
@@ -41,14 +41,6 @@ typedef GLboolean ( * PFNGLXGETMSCRATEOMLPROC) (__DRInativeDisplay *dpy, __DRIid
const __DRIinterfaceMethods * dri_interface = NULL;
/**
- * Weak thread-safety dispatch pointer. Older versions of libGL will not have
- * this symbol, so a "weak" version is included here so that the driver will
- * dynamically link properly. The value is set to \c NULL. This forces the
- * driver to fall back to the old dispatch interface.
- */
-struct _glapi_table *_glapi_DispatchTSD __attribute__((weak)) = NULL;
-
-/**
* This is used in a couple of places that call \c driCreateNewDrawable.
*/
static const int empty_attribute_list[1] = { None };