Mesa (master): intel: Remove dead intelIsTextureResident().

Eric Anholt anholt at kemper.freedesktop.org
Thu Sep 23 23:35:37 UTC 2010


Module: Mesa
Branch: master
Commit: 64ff468d6ff7645e4c0247a5135d71f380690873
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=64ff468d6ff7645e4c0247a5135d71f380690873

Author: Eric Anholt <eric at anholt.net>
Date:   Thu Sep 23 16:30:58 2010 -0700

intel: Remove dead intelIsTextureResident().

It always returned 1 (GL_TRUE), which is the same thing that happens when
the driver hook isn't present.

---

 src/mesa/drivers/dri/intel/intel_tex.c |   18 ------------------
 1 files changed, 0 insertions(+), 18 deletions(-)

diff --git a/src/mesa/drivers/dri/intel/intel_tex.c b/src/mesa/drivers/dri/intel/intel_tex.c
index 8bb6ae9..4537f58 100644
--- a/src/mesa/drivers/dri/intel/intel_tex.c
+++ b/src/mesa/drivers/dri/intel/intel_tex.c
@@ -9,23 +9,6 @@
 
 #define FILE_DEBUG_FLAG DEBUG_TEXTURE
 
-static GLboolean
-intelIsTextureResident(GLcontext * ctx, struct gl_texture_object *texObj)
-{
-#if 0
-   struct intel_context *intel = intel_context(ctx);
-   struct intel_texture_object *intelObj = intel_texture_object(texObj);
-
-   return
-      intelObj->mt &&
-      intelObj->mt->region &&
-      intel_is_region_resident(intel, intelObj->mt->region);
-#endif
-   return 1;
-}
-
-
-
 static struct gl_texture_image *
 intelNewTextureImage(GLcontext * ctx)
 {
@@ -217,7 +200,6 @@ intelInitTextureFuncs(struct dd_function_table *functions)
    functions->DeleteTexture = intelDeleteTextureObject;
    functions->FreeTexImageData = intelFreeTextureImageData;
    functions->UpdateTexturePalette = 0;
-   functions->IsTextureResident = intelIsTextureResident;
 
 #if DO_DEBUG && !defined(__ia64__)
    if (INTEL_DEBUG & DEBUG_BUFMGR)




More information about the mesa-commit mailing list