From 1ca2e84921332fa229a082033c933b86a47ff2ad Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg?= Date: Fri, 28 Oct 2011 17:04:35 -0400 Subject: [PATCH] r200: Don't use driIsTextureResident helper With DRI2, textures are always resident and using the DRI texmem helper here is broken anyway, since nothing else uses it. --- src/mesa/drivers/dri/r200/r200_tex.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/mesa/drivers/dri/r200/r200_tex.c b/src/mesa/drivers/dri/r200/r200_tex.c index 2be8390..fe7c977 100644 --- a/src/mesa/drivers/dri/r200/r200_tex.c +++ b/src/mesa/drivers/dri/r200/r200_tex.c @@ -502,7 +502,6 @@ void r200InitTextureFuncs( radeonContextPtr radeon, struct dd_function_table *fu functions->NewTextureObject = r200NewTextureObject; // functions->BindTexture = r200BindTexture; functions->DeleteTexture = r200DeleteTexture; - functions->IsTextureResident = driIsTextureResident; functions->TexEnv = r200TexEnv; functions->TexParameter = r200TexParameter; -- 2.7.4