Mesa (master): mesa: add const qualifer on _mesa_is_compressed_format()

Brian Paul brianp at kemper.freedesktop.org
Tue May 26 16:00:14 UTC 2015


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

Author: Brian Paul <brianp at vmware.com>
Date:   Fri May 22 16:39:32 2015 -0700

mesa: add const qualifer on _mesa_is_compressed_format()

Reviewed-by: Topi Pohjolainen <topi.pohjolainen at intel.com>

---

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

diff --git a/src/mesa/main/glformats.c b/src/mesa/main/glformats.c
index 8ced579..6a77c91 100644
--- a/src/mesa/main/glformats.c
+++ b/src/mesa/main/glformats.c
@@ -1200,7 +1200,7 @@ _mesa_is_depth_or_stencil_format(GLenum format)
  * \return GL_TRUE if compressed, GL_FALSE if uncompressed
  */
 GLboolean
-_mesa_is_compressed_format(struct gl_context *ctx, GLenum format)
+_mesa_is_compressed_format(const struct gl_context *ctx, GLenum format)
 {
    switch (format) {
    case GL_COMPRESSED_RGB_S3TC_DXT1_EXT:
diff --git a/src/mesa/main/glformats.h b/src/mesa/main/glformats.h
index e1ecd64..8881cb7 100644
--- a/src/mesa/main/glformats.h
+++ b/src/mesa/main/glformats.h
@@ -96,7 +96,7 @@ extern GLboolean
 _mesa_is_depth_or_stencil_format(GLenum format);
 
 extern GLboolean
-_mesa_is_compressed_format(struct gl_context *ctx, GLenum format);
+_mesa_is_compressed_format(const struct gl_context *ctx, GLenum format);
 
 extern GLenum
 _mesa_base_format_to_integer_format(GLenum format);




More information about the mesa-commit mailing list