mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-28 09:40:21 +01:00
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:
parent
235a299534
commit
9638c03a4e
2 changed files with 2 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue