summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/teximage.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2016-09-24 07:33:59 -0600
committerBrian Paul <brianp@vmware.com>2016-10-06 11:29:31 -0600
commit92188c207eb2ec4525a026d3a95d483ac893e1cf (patch)
treeab96a9bf086f684118771229f572e02f424f88ae /src/mesa/main/teximage.c
parent57279c5454565fe8dac38905b09504739f9ab2cf (diff)
downloadexternal_mesa3d-92188c207eb2ec4525a026d3a95d483ac893e1cf.zip
external_mesa3d-92188c207eb2ec4525a026d3a95d483ac893e1cf.tar.gz
external_mesa3d-92188c207eb2ec4525a026d3a95d483ac893e1cf.tar.bz2
mesa: add const qualifier, comment on can_avoid_reallocation()
Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
Diffstat (limited to 'src/mesa/main/teximage.c')
-rw-r--r--src/mesa/main/teximage.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c
index 3f3d430..1d0a6a2 100644
--- a/src/mesa/main/teximage.c
+++ b/src/mesa/main/teximage.c
@@ -3571,8 +3571,15 @@ formats_differ_in_component_sizes(mesa_format f1, mesa_format f2)
return GL_FALSE;
}
+
+/**
+ * Check if the given texture format and size arguments match those
+ * of the texture image.
+ * \param return true if arguments match, false otherwise.
+ */
static bool
-can_avoid_reallocation(struct gl_texture_image *texImage, GLenum internalFormat,
+can_avoid_reallocation(const struct gl_texture_image *texImage,
+ GLenum internalFormat,
mesa_format texFormat, GLint x, GLint y, GLsizei width,
GLsizei height, GLint border)
{