diff options
author | Roman Stratiienko <r.stratiienko@gmail.com> | 2023-10-06 12:31:29 +0300 |
---|---|---|
committer | Marge Bot <emma+marge@anholt.net> | 2023-10-10 16:39:27 +0000 |
commit | 7301914755f5843f1095ca31114149a3be7d4ba8 (patch) | |
tree | 8a332ef77f0ba288de1c17ba86dc7e964c6e6884 /include | |
parent | 34857440870e3b9087da63aeea456e7a9c1756fe (diff) | |
download | mesa-7301914755f5843f1095ca31114149a3be7d4ba8.tar.gz mesa-7301914755f5843f1095ca31114149a3be7d4ba8.tar.bz2 mesa-7301914755f5843f1095ca31114149a3be7d4ba8.zip |
dri: Remove __driDriverExtensions leftovers
Android-14/clang-17 throws an error with it:
ld.lld: error: version script assignment of 'global' to symbol
'__driDriverExtensions' failed: symbol not defined
Fixes: d43e6a9a497f ("dri: Remove the megadriver compat stub")
Signed-off-by: Roman Stratiienko <r.stratiienko@gmail.com>
Acked-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25587>
Diffstat (limited to 'include')
-rw-r--r-- | include/GL/internal/dri_interface.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/GL/internal/dri_interface.h b/include/GL/internal/dri_interface.h index a59d598c3bf..1424e24fe27 100644 --- a/include/GL/internal/dri_interface.h +++ b/include/GL/internal/dri_interface.h @@ -679,14 +679,6 @@ struct __DRIuseInvalidateExtensionRec { }; /** - * The remaining extensions describe driver extensions, immediately - * available interfaces provided by the driver. To start using the - * driver, dlsym() for the __DRI_DRIVER_EXTENSIONS symbol and look for - * the extension you need in the array. - */ -#define __DRI_DRIVER_EXTENSIONS "__driDriverExtensions" - -/** * This symbol replaces the __DRI_DRIVER_EXTENSIONS symbol, and will be * suffixed by "_drivername", allowing multiple drivers to be built into one * library, and also giving the driver the chance to return a variable driver |