mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 02:40:11 +01:00
mesa: remove const qualifiers to match device driver interface function
This commit is contained in:
parent
81234666fc
commit
47bf268457
1 changed files with 2 additions and 2 deletions
|
|
@ -749,8 +749,8 @@ st_GetTexImage(GLcontext * ctx, GLenum target, GLint level,
|
|||
static void
|
||||
st_GetCompressedTexImage(GLcontext *ctx, GLenum target, GLint level,
|
||||
GLvoid *pixels,
|
||||
const struct gl_texture_object *texObj,
|
||||
const struct gl_texture_image *texImage)
|
||||
struct gl_texture_object *texObj,
|
||||
struct gl_texture_image *texImage)
|
||||
{
|
||||
st_get_tex_image(ctx, target, level, 0, 0, pixels,
|
||||
(struct gl_texture_object *) texObj,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue