diff options
author | Brian Paul <[email protected]> | 2012-01-03 17:48:12 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-01-04 08:12:28 -0700 |
commit | 892a2542a3f0753a7064c710b96f077dd5490624 (patch) | |
tree | a70ccd8fce0b5213fa3307ed3d20390515837c32 /src/mesa/main/mipmap.c | |
parent | 7b181d16c3b954bf567563e90e5e94bda833fab8 (diff) |
mesa: remove unused _mesa_init_teximage_fields() target parameter
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Yuanhan Liu <[email protected]>
Diffstat (limited to 'src/mesa/main/mipmap.c')
-rw-r--r-- | src/mesa/main/mipmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/mipmap.c b/src/mesa/main/mipmap.c index 9a6c6dea272..867506c9fc7 100644 --- a/src/mesa/main/mipmap.c +++ b/src/mesa/main/mipmap.c @@ -1860,7 +1860,7 @@ _mesa_prepare_mipmap_level(struct gl_context *ctx, /* need to (re)allocate image */ ctx->Driver.FreeTextureImageBuffer(ctx, dstImage); - _mesa_init_teximage_fields(ctx, target, dstImage, + _mesa_init_teximage_fields(ctx, dstImage, width, height, depth, border, intFormat, format); |