summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/common
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
commit5acb291f319a0b32d9701b3e6c8624175f1a80e7 (patch)
tree7a521f4e19d12f9741c72d15c44afcd6c62f82da /src/mesa/drivers/common
parentd9582026631ae3cd667f6cd13040b93e42db3e44 (diff)
mesa: remove TextureMemCpy driver hook
There's probably no reason to use a special version of memcpy() anymore.
Diffstat (limited to 'src/mesa/drivers/common')
-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 5e25d7fda34..17281de58c3 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->TextureMemCpy = memcpy;
driver->IsTextureResident = NULL;
driver->DrawTex = _mesa_meta_DrawTex;