diff --git a/src/glx/glvnd-symbols.txt b/src/glx/glvnd-symbols.txt
index 4710aa1d53b..ada2c71dd29 100644
--- a/src/glx/glvnd-symbols.txt
+++ b/src/glx/glvnd-symbols.txt
@@ -2,9 +2,3 @@ __glx_Main
MesaGLInteropGLXExportObject
MesaGLInteropGLXFlushObjects
MesaGLInteropGLXQueryDeviceInfo
-
-# TODO: These shouldn't be exported:
-glAreTexturesResidentEXT
-glDeleteTexturesEXT
-glGenTexturesEXT
-glIsTextureEXT
diff --git a/src/glx/single2.c b/src/glx/single2.c
index 4c504c27095..5d1b119196a 100644
--- a/src/glx/single2.c
+++ b/src/glx/single2.c
@@ -841,47 +841,3 @@ __indirect_glAreTexturesResident(GLsizei n, const GLuint * textures,
}
return retval;
}
-
-
-/**
- * This was previously auto-generated, but we need to special-case
- * how we handle writing into the 'residences' buffer when n%4!=0.
- */
-#define X_GLvop_AreTexturesResidentEXT 11
-GLboolean
-glAreTexturesResidentEXT(GLsizei n, const GLuint * textures,
- GLboolean * residences)
-{
- struct glx_context *const gc = __glXGetCurrentContext();
-
- if (gc->isDirect) {
- return CALL_AreTexturesResident(GET_DISPATCH(), (n, textures, residences));
- }
- else {
- struct glx_context *const gc = __glXGetCurrentContext();
- Display *const dpy = gc->currentDpy;
- GLboolean retval = (GLboolean) 0;
- const GLuint cmdlen = 4 + __GLX_PAD((n * 4));
- if (__builtin_expect((n >= 0) && (dpy != NULL), 1)) {
- GLubyte const *pc =
- __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply,
- X_GLvop_AreTexturesResidentEXT,
- cmdlen);
- (void) memcpy((void *) (pc + 0), (void *) (&n), 4);
- (void) memcpy((void *) (pc + 4), (void *) (textures), (n * 4));
- if (n & 3) {
- /* see comments in __indirect_glAreTexturesResident() */
- GLboolean *res4 = malloc((n + 3) & ~3);
- retval = (GLboolean) __glXReadReply(dpy, 1, res4, GL_TRUE);
- memcpy(residences, res4, n);
- free(res4);
- }
- else {
- retval = (GLboolean) __glXReadReply(dpy, 1, residences, GL_TRUE);
- }
- UnlockDisplay(dpy);
- SyncHandle();
- }
- return retval;
- }
-}
diff --git a/src/mapi/glapi/gen/gl_API.xml b/src/mapi/glapi/gen/gl_API.xml
index c838b32ad46..d75d6399215 100644
--- a/src/mapi/glapi/gen/gl_API.xml
+++ b/src/mapi/glapi/gen/gl_API.xml
@@ -8591,7 +8591,6 @@
-
@@ -8602,19 +8601,16 @@
-
-
-