diff options
author | Brian <[email protected]> | 2008-02-08 14:45:58 -0700 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2008-05-09 13:33:29 +1000 |
commit | d4e1d85dba8ec4a37f68a284b5a2be15b4f2987a (patch) | |
tree | 282ed9a72dde1b243104c3da0a3742f9ba159e30 /src/mesa/main/fbobject.c | |
parent | a638676473bd7bf2d47275ed2fd708e5b9d47e0b (diff) |
Remove unused texunit parameter to ctx->Driver.GenerateMipmap()
(cherry picked from commit c3395f4473c8fdf75d04c0dd72e687bc8d8127a7)
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 6cda7de953f..1b118289660 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -1547,7 +1547,7 @@ _mesa_GenerateMipmapEXT(GLenum target) /* XXX this might not handle cube maps correctly */ _mesa_lock_texture(ctx, texObj); - ctx->Driver.GenerateMipmap(ctx, target, texUnit, texObj); + ctx->Driver.GenerateMipmap(ctx, target, texObj); _mesa_unlock_texture(ctx, texObj); if (ctx->Driver.UnmapTexture) |