diff options
author | Brian Paul <[email protected]> | 2015-01-02 16:56:12 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-01-05 13:50:55 -0700 |
commit | f262ed6e3dd9d447355ea2490e84c0a6b0fd1ddb (patch) | |
tree | de3fe1cf53f2e6fe38a35b1b9131cba753cd4cd1 /src/mesa/main/texparam.c | |
parent | 05279fa5636bc1354c34ef043183d56f730b7f8e (diff) |
mesa: remove unused ctx parameter for _mesa_select_tex_image()
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/texparam.c')
-rw-r--r-- | src/mesa/main/texparam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texparam.c b/src/mesa/main/texparam.c index e40fb249e6a..66893b86c16 100644 --- a/src/mesa/main/texparam.c +++ b/src/mesa/main/texparam.c @@ -1054,7 +1054,7 @@ get_tex_level_parameter_image(struct gl_context *ctx, struct gl_texture_image dummy_image; mesa_format texFormat; - img = _mesa_select_tex_image(ctx, texObj, target, level); + img = _mesa_select_tex_image(texObj, target, level); if (!img || img->TexFormat == MESA_FORMAT_NONE) { /* In case of undefined texture image return the default values. * |