From: Brian Paul Date: Wed, 27 Oct 2010 02:30:40 +0000 (-0600) Subject: mesa: rename function to _mesa_is_format_integer_color() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=412b9608838b872bc294569b3ee913343a7e66f6;p=mesa.git mesa: rename function to _mesa_is_format_integer_color() Be a bit more clear about its operation. --- diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index bf46f51d7c0..7c3357043fa 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -696,7 +696,7 @@ _mesa_test_framebuffer_completeness(struct gl_context *ctx, } /* check if integer color */ - fb->_IntegerColor = _mesa_is_format_integer(mesaFormat); + fb->_IntegerColor = _mesa_is_format_integer_color(mesaFormat); /* Error-check width, height, format, samples */ diff --git a/src/mesa/main/formats.c b/src/mesa/main/formats.c index f604e235138..e18a9fc9977 100644 --- a/src/mesa/main/formats.c +++ b/src/mesa/main/formats.c @@ -1011,7 +1011,7 @@ _mesa_is_format_packed_depth_stencil(gl_format format) * Is the given format a signed/unsigned integer color format? */ GLboolean -_mesa_is_format_integer(gl_format format) +_mesa_is_format_integer_color(gl_format format) { const struct gl_format_info *info = _mesa_get_format_info(format); return (info->DataType == GL_INT || info->DataType == GL_UNSIGNED_INT) && diff --git a/src/mesa/main/formats.h b/src/mesa/main/formats.h index 73d85f2245f..eeb460dabe7 100644 --- a/src/mesa/main/formats.h +++ b/src/mesa/main/formats.h @@ -200,7 +200,7 @@ extern GLboolean _mesa_is_format_packed_depth_stencil(gl_format format); extern GLboolean -_mesa_is_format_integer(gl_format format); +_mesa_is_format_integer_color(gl_format format); extern GLenum _mesa_get_format_color_encoding(gl_format format); diff --git a/src/mesa/main/readpix.c b/src/mesa/main/readpix.c index ad27d1192e3..a5612e34ecf 100644 --- a/src/mesa/main/readpix.c +++ b/src/mesa/main/readpix.c @@ -191,7 +191,7 @@ _mesa_ReadPixels( GLint x, GLint y, GLsizei width, GLsizei height, */ if (ctx->Extensions.EXT_texture_integer && _mesa_is_color_format(format)) { const struct gl_renderbuffer *rb = ctx->ReadBuffer->_ColorReadBuffer; - const GLboolean srcInteger = _mesa_is_format_integer(rb->Format); + const GLboolean srcInteger = _mesa_is_format_integer_color(rb->Format); const GLboolean dstInteger = _mesa_is_integer_format(format); if (dstInteger != srcInteger) { _mesa_error(ctx, GL_INVALID_OPERATION, diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index b65a2de046e..2e9410f2717 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -2107,9 +2107,9 @@ copytexsubimage_error_check2( struct gl_context *ctx, GLuint dimensions, /* If copying into an integer texture, the source buffer must also be * integer-valued. */ - if (_mesa_is_format_integer(teximage->TexFormat)) { + if (_mesa_is_format_integer_color(teximage->TexFormat)) { struct gl_renderbuffer *rb = ctx->ReadBuffer->_ColorReadBuffer; - if (!_mesa_is_format_integer(rb->Format)) { + if (!_mesa_is_format_integer_color(rb->Format)) { _mesa_error(ctx, GL_INVALID_OPERATION, "glCopyTexSubImage%dD(source buffer is not integer format)", dimensions);