mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-11 07:20:30 +01:00
remove const storage class specifier for the decl of a var that isn't
a const.
This commit is contained in:
parent
072edaf126
commit
248b3cf727
1 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: s_texture.c,v 1.68 2002/10/04 19:10:13 brianp Exp $ */
|
||||
/* $Id: s_texture.c,v 1.69 2002/10/04 23:10:06 kschultz Exp $ */
|
||||
|
||||
/*
|
||||
* Mesa 3-D graphics library
|
||||
|
|
@ -2212,7 +2212,7 @@ sample_depth_texture( GLcontext *ctx, GLuint unit,
|
|||
const struct gl_texture_image *texImage = tObj->Image[baseLevel];
|
||||
const GLuint width = texImage->Width;
|
||||
const GLuint height = texImage->Height;
|
||||
const GLchan ambient;
|
||||
GLchan ambient;
|
||||
GLenum function;
|
||||
GLchan result;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue