diff options
author | Eric Anholt <[email protected]> | 2009-09-28 11:42:31 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2009-09-28 14:12:15 -0700 |
commit | e885cb48a0b9292b3df9204f1c2783bf1fe29a28 (patch) | |
tree | 5d0207338a1d64189d457ec4271a964a58600515 /src/mesa/drivers/common | |
parent | 8b23755ce978247a92c00e390de2e459c0a9d5ad (diff) |
intel: Drop my generatemipmap code in favor of the new shared code.
Diffstat (limited to 'src/mesa/drivers/common')
-rw-r--r-- | src/mesa/drivers/common/driverfuncs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/common/driverfuncs.c b/src/mesa/drivers/common/driverfuncs.c index f09106b77c3..0f8447cb70f 100644 --- a/src/mesa/drivers/common/driverfuncs.c +++ b/src/mesa/drivers/common/driverfuncs.c @@ -106,7 +106,7 @@ _mesa_init_driver_functions(struct dd_function_table *driver) driver->CopyTexSubImage1D = _mesa_meta_CopyTexSubImage1D; driver->CopyTexSubImage2D = _mesa_meta_CopyTexSubImage2D; driver->CopyTexSubImage3D = _mesa_meta_CopyTexSubImage3D; - driver->GenerateMipmap = _mesa_generate_mipmap; + driver->GenerateMipmap = _mesa_meta_GenerateMipmap; driver->TestProxyTexImage = _mesa_test_proxy_teximage; driver->CompressedTexImage1D = _mesa_store_compressed_teximage1d; driver->CompressedTexImage2D = _mesa_store_compressed_teximage2d; |