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:
@@ -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
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user