From b499fac975115444e18bcaa3ac6ec5a82592ffaa Mon Sep 17 00:00:00 2001 From: Stefan Gartner Date: Fri, 6 Jun 2003 11:55:16 +0000 Subject: [PATCH] readded IS_jpg() macro --- source/blender/imbuf/IMB_imbuf_types.h | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/imbuf/IMB_imbuf_types.h b/source/blender/imbuf/IMB_imbuf_types.h index c207893575c..bff0665aa71 100644 --- a/source/blender/imbuf/IMB_imbuf_types.h +++ b/source/blender/imbuf/IMB_imbuf_types.h @@ -192,6 +192,7 @@ typedef enum { #define IMAGIC 0732 #define IS_iris(x) (x->ftype == IMAGIC) +#define IS_jpg(x) (x->ftype & JPG) #define IS_stdjpg(x) ((x->ftype & JPG_MSK) == JPG_STD) #define IS_vidjpg(x) ((x->ftype & JPG_MSK) == JPG_VID) #define IS_jstjpg(x) ((x->ftype & JPG_MSK) == JPG_JST)