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/vdpau.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/vdpau.c')
-rw-r--r-- | src/mesa/main/vdpau.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/vdpau.c b/src/mesa/main/vdpau.c index e1c3e00ba5a..fd7561c3db6 100644 --- a/src/mesa/main/vdpau.c +++ b/src/mesa/main/vdpau.c @@ -422,7 +422,7 @@ _mesa_VDPAUUnmapSurfacesNV(GLsizei numSurfaces, const GLintptr *surfaces) _mesa_lock_texture(ctx, tex); - image = _mesa_select_tex_image(ctx, tex, surf->target, 0); + image = _mesa_select_tex_image(tex, surf->target, 0); ctx->Driver.VDPAUUnmapSurface(ctx, surf->target, surf->access, surf->output, tex, image, |