From 84f048fda566c2098ec1baa2ff1ad6c00b7395d5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 26 Aug 2021 12:27:17 +1000 Subject: Cleanup: use C style comments for descriptive text --- source/blender/imbuf/intern/iris.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/imbuf') diff --git a/source/blender/imbuf/intern/iris.c b/source/blender/imbuf/intern/iris.c index 59a17fcc600..df516d2a5c4 100644 --- a/source/blender/imbuf/intern/iris.c +++ b/source/blender/imbuf/intern/iris.c @@ -72,14 +72,14 @@ BLI_STATIC_ASSERT(sizeof(IMAGE) == HEADER_SIZE, "Invalid header size"); // #define TYPEMASK 0xff00 #define BPPMASK 0x00ff -// #define ITYPE_VERBATIM 0x0000 // UNUSED +// #define ITYPE_VERBATIM 0x0000 /* UNUSED */ #define ITYPE_RLE 0x0100 #define ISRLE(type) (((type)&0xff00) == ITYPE_RLE) // #define ISVERBATIM(type) (((type) & 0xff00) == ITYPE_VERBATIM) #define BPP(type) ((type)&BPPMASK) #define RLE(bpp) (ITYPE_RLE | (bpp)) -// #define VERBATIM(bpp) (ITYPE_VERBATIM | (bpp)) // UNUSED -// #define IBUFSIZE(pixels) ((pixels + (pixels >> 6)) << 2) // UNUSED +// #define VERBATIM(bpp) (ITYPE_VERBATIM | (bpp)) /* UNUSED */ +// #define IBUFSIZE(pixels) ((pixels + (pixels >> 6)) << 2) /* UNUSED */ // #define RLE_NOP 0x00 /* local struct for mem access */ -- cgit v1.2.3