From 2410797ab15d08e5138b8cf10d8f8246513935af Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 11 Jul 2015 23:52:18 +1000 Subject: ImBuf: cleanup, use const for memory passed in --- source/blender/imbuf/intern/openexr/openexr_api.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/imbuf/intern/openexr/openexr_api.cpp') diff --git a/source/blender/imbuf/intern/openexr/openexr_api.cpp b/source/blender/imbuf/intern/openexr/openexr_api.cpp index 6bb1f0cd0d3..36742cb91eb 100644 --- a/source/blender/imbuf/intern/openexr/openexr_api.cpp +++ b/source/blender/imbuf/intern/openexr/openexr_api.cpp @@ -302,7 +302,7 @@ extern "C" * Test presence of OpenEXR file. * \param mem pointer to loaded OpenEXR bitstream */ -int imb_is_a_openexr(unsigned char *mem) +int imb_is_a_openexr(const unsigned char *mem) { return Imf::isImfMagic((const char *)mem); } @@ -1900,7 +1900,7 @@ static bool imb_exr_is_multi(MultiPartInputFile& file) return false; } -struct ImBuf *imb_load_openexr(unsigned char *mem, size_t size, int flags, char colorspace[IM_MAX_SPACE]) +struct ImBuf *imb_load_openexr(const unsigned char *mem, size_t size, int flags, char colorspace[IM_MAX_SPACE]) { struct ImBuf *ibuf = NULL; Mem_IStream *membuf = NULL; @@ -1914,7 +1914,7 @@ struct ImBuf *imb_load_openexr(unsigned char *mem, size_t size, int flags, char { bool is_multi; - membuf = new Mem_IStream(mem, size); + membuf = new Mem_IStream((unsigned char *)mem, size); file = new MultiPartInputFile(*membuf); Box2i dw = file->header(0).dataWindow(); -- cgit v1.2.3