Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-09-25 10:11:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-09-25 10:19:08 +0300
commitd0279f7d36a6cba8bf91b9c6a982da5185a51ac4 (patch)
tree7d82e6c88d0ec4f5696958d524ef8c7a9e91a141 /source/blender/imbuf/intern/util.c
parent3142ae19d22767507ec190ff39c89210ac96c39d (diff)
Cleanup: use const for image blending functions
Diffstat (limited to 'source/blender/imbuf/intern/util.c')
-rw-r--r--source/blender/imbuf/intern/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/util.c b/source/blender/imbuf/intern/util.c
index ff7cb87960e..c5bae4ddbad 100644
--- a/source/blender/imbuf/intern/util.c
+++ b/source/blender/imbuf/intern/util.c
@@ -389,7 +389,7 @@ bool IMB_isanim(const char *filename)
return (type && type != ANIM_SEQUENCE);
}
-bool IMB_isfloat(ImBuf *ibuf)
+bool IMB_isfloat(const ImBuf *ibuf)
{
const ImFileType *type;