Mesa (master): swrast: remove _mesa_ prefix from static function

Brian Paul brianp at kemper.freedesktop.org
Thu Apr 24 14:34:30 UTC 2014


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

Author: Brian Paul <brianp at vmware.com>
Date:   Wed Apr 23 09:55:25 2014 -0600

swrast: remove _mesa_ prefix from static function

And add a const qualifier.

Reviewed-by: José Fonseca <jfonseca at vmware.com>

---

 src/mesa/swrast/s_texture.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/mesa/swrast/s_texture.c b/src/mesa/swrast/s_texture.c
index 1d449a2..cbfa26b 100644
--- a/src/mesa/swrast/s_texture.c
+++ b/src/mesa/swrast/s_texture.c
@@ -177,8 +177,8 @@ _swrast_free_texture_image_buffer(struct gl_context *ctx,
  * Error checking for debugging only.
  */
 static void
-_mesa_check_map_teximage(struct gl_texture_image *texImage,
-                         GLuint slice, GLuint x, GLuint y, GLuint w, GLuint h)
+check_map_teximage(const struct gl_texture_image *texImage,
+                   GLuint slice, GLuint x, GLuint y, GLuint w, GLuint h)
 {
 
    if (texImage->TexObject->Target == GL_TEXTURE_1D)
@@ -216,7 +216,7 @@ _swrast_map_teximage(struct gl_context *ctx,
    GLint stride, texelSize;
    GLuint bw, bh;
 
-   _mesa_check_map_teximage(texImage, slice, x, y, w, h);
+   check_map_teximage(texImage, slice, x, y, w, h);
 
    texelSize = _mesa_get_format_bytes(texImage->TexFormat);
    stride = _mesa_format_row_stride(texImage->TexFormat, texImage->Width);




More information about the mesa-commit mailing list