diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-02-05 18:15:03 -0700 |
---|---|---|
committer | Ben Skeggs <skeggsb@gmail.com> | 2008-02-15 13:50:32 +1100 |
commit | 08ffa00d15c4871a22f0670a8aacd7a3995a6769 (patch) | |
tree | 596a80088e87184cdf2b6876c632d1c979d879b4 /src/mesa/main/fbobject.c | |
parent | 20aa31a2447a4bda378bf3d2d78c078d748b8271 (diff) |
Added ctx->Driver.GenerateMipmap() driver hook
Diffstat (limited to 'src/mesa/main/fbobject.c')
-rw-r--r-- | src/mesa/main/fbobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index 963e35d678..13cbd35424 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -1560,7 +1560,7 @@ _mesa_GenerateMipmapEXT(GLenum target) /* XXX this might not handle cube maps correctly */ _mesa_lock_texture(ctx, texObj); - _mesa_generate_mipmap(ctx, target, texUnit, texObj); + ctx->Driver.GenerateMipmap(ctx, target, texUnit, texObj); _mesa_unlock_texture(ctx, texObj); } |