summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2011-12-03 10:04:18 -0700
committerBrian Paul <[email protected]>2011-12-08 08:56:29 -0700
commit2f88139145da99a695680c813ef5cc669eaef034 (patch)
tree2431c027f8fd8fcd74866f17ca6e5484998945d3 /src/mesa/drivers
parent5acb291f319a0b32d9701b3e6c8624175f1a80e7 (diff)
mesa: remove the ctx->Driver.IsTextureResident() hook
No driver implemented this and we always returned "True" for residence queries. Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r--src/mesa/drivers/common/driverfuncs.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/common/driverfuncs.c b/src/mesa/drivers/common/driverfuncs.c
index 17281de58c3..50fcedee2ca 100644
--- a/src/mesa/drivers/common/driverfuncs.c
+++ b/src/mesa/drivers/common/driverfuncs.c
@@ -119,7 +119,6 @@ _mesa_init_driver_functions(struct dd_function_table *driver)
driver->UnmapTextureImage = _swrast_unmap_teximage;
driver->MapTexture = NULL;
driver->UnmapTexture = NULL;
- driver->IsTextureResident = NULL;
driver->DrawTex = _mesa_meta_DrawTex;
/* Vertex/fragment programs */