diff options
author | Dave Airlie <airlied@linux.ie> | 2008-05-09 13:41:02 +1000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2008-05-09 13:41:02 +1000 |
commit | 86bd98c6aa0d1a8533699af911c7c40c549b3965 (patch) | |
tree | 4a52e21ce4d9331d8125a203031200483ebf03c6 /src/mesa/drivers/dri/intel/intel_tex.c | |
parent | 0449bab2f8722f277213e44da13de6a0b5ae7b5b (diff) | |
download | external_mesa3d-86bd98c6aa0d1a8533699af911c7c40c549b3965.zip external_mesa3d-86bd98c6aa0d1a8533699af911c7c40c549b3965.tar.gz external_mesa3d-86bd98c6aa0d1a8533699af911c7c40c549b3965.tar.bz2 |
swrast/dri: switch over users of generate_mipmap to new interface
Diffstat (limited to 'src/mesa/drivers/dri/intel/intel_tex.c')
-rw-r--r-- | src/mesa/drivers/dri/intel/intel_tex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_tex.c b/src/mesa/drivers/dri/intel/intel_tex.c index 329af0d..2c0dd24 100644 --- a/src/mesa/drivers/dri/intel/intel_tex.c +++ b/src/mesa/drivers/dri/intel/intel_tex.c @@ -179,7 +179,7 @@ intel_generate_mipmap(GLcontext *ctx, GLenum target, GLuint nr_faces = (intelObj->base.Target == GL_TEXTURE_CUBE_MAP) ? 6 : 1; int face, i; - _mesa_generate_mipmap(ctx, target, texUnit, texObj); + _mesa_generate_mipmap(ctx, target, texObj); /* Update the level information in our private data in the new images, since * it didn't get set as part of a normal TexImage path. |