meta: remove const qualifier on _mesa_meta_fb_tex_blit_begin()

To silence a compiler warning about a const/non-const mismatch.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
Brian Paul 2016-01-12 08:46:40 -07:00
parent 235a299534
commit 9638c03a4e
2 changed files with 2 additions and 2 deletions

View file

@ -453,7 +453,7 @@ _mesa_meta_in_progress(struct gl_context *ctx)
}
extern void
_mesa_meta_fb_tex_blit_begin(const struct gl_context *ctx,
_mesa_meta_fb_tex_blit_begin(struct gl_context *ctx,
struct fb_tex_blit_state *blit);
extern void

View file

@ -807,7 +807,7 @@ blitframebuffer_texture(struct gl_context *ctx,
}
void
_mesa_meta_fb_tex_blit_begin(const struct gl_context *ctx,
_mesa_meta_fb_tex_blit_begin(struct gl_context *ctx,
struct fb_tex_blit_state *blit)
{
/* None of the existing callers preinitialize fb_tex_blit_state to zeros,