Mesa (master): mesa: const-qualify _mesa_base_tex_format() ctx param

Brian Paul brianp at kemper.freedesktop.org
Tue Sep 22 16:15:58 UTC 2015


Module: Mesa
Branch: master
Commit: acee1a322d0a483aa155ff05cfaa124e84865656
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=acee1a322d0a483aa155ff05cfaa124e84865656

Author: Brian Paul <brianp at vmware.com>
Date:   Thu Sep 17 09:47:36 2015 -0600

mesa: const-qualify _mesa_base_tex_format() ctx param

Reviewed-by: Matt Turner <mattst88 at gmail.com>

---

 src/mesa/main/teximage.c |    2 +-
 src/mesa/main/teximage.h |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c
index 8913a72..9bc176a 100644
--- a/src/mesa/main/teximage.c
+++ b/src/mesa/main/teximage.c
@@ -130,7 +130,7 @@ adjust_for_oes_float_texture(GLenum format, GLenum type)
  * texture format and env mode determine the arithmetic used.
  */
 GLint
-_mesa_base_tex_format( struct gl_context *ctx, GLint internalFormat )
+_mesa_base_tex_format(const struct gl_context *ctx, GLint internalFormat)
 {
    switch (internalFormat) {
    case GL_ALPHA:
diff --git a/src/mesa/main/teximage.h b/src/mesa/main/teximage.h
index a4736b5..a434720 100644
--- a/src/mesa/main/teximage.h
+++ b/src/mesa/main/teximage.h
@@ -60,7 +60,7 @@ _mesa_is_zero_size_texture(const struct gl_texture_image *texImage)
 /*@{*/
 
 extern GLint
-_mesa_base_tex_format( struct gl_context *ctx, GLint internalFormat );
+_mesa_base_tex_format(const struct gl_context *ctx, GLint internalFormat);
 
 
 extern GLboolean




More information about the mesa-commit mailing list