diff options
author | Brian <[email protected]> | 2008-02-05 18:15:03 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-02-06 09:35:39 -0700 |
commit | 4c2f3dbca940f289e67248682b84a3516d5a3031 (patch) | |
tree | d424cabdc7bfabd672bdb940c93aad97208912be /src/mesa/main/fbobject.c | |
parent | afc54983370033b65e3a7cbb29bd9c87156f0881 (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 963e35d6786..13cbd354243 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); } |