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:
authorGaia Clary <gaia.clary@machinimatrix.org>2012-08-18 03:29:39 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2012-08-18 03:29:39 +0400
commit0fee1a3c0b125321ed5acb880958864ac043c88e (patch)
treee768e4d392223d239f0dcd6af1ccf9c7033be5c8 /source/blender/imbuf/IMB_imbuf_types.h
parentb0371f053c70308da5187672134524c13a12c457 (diff)
Suport function for Collada exporter: after a generated image was stored to disk, the new filetype was not always recognized.
Diffstat (limited to 'source/blender/imbuf/IMB_imbuf_types.h')
-rw-r--r--source/blender/imbuf/IMB_imbuf_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/imbuf/IMB_imbuf_types.h b/source/blender/imbuf/IMB_imbuf_types.h
index dcb5cdd7d32..be93d51d7d7 100644
--- a/source/blender/imbuf/IMB_imbuf_types.h
+++ b/source/blender/imbuf/IMB_imbuf_types.h
@@ -165,8 +165,10 @@ typedef struct ImBuf {
/*
* The bit flag is stored in the ImBuf.ftype variable.
- * Note that the lower 10 bits is used for storing custom flags
+ * Note that the lower 10 bits is used for storing custom flags
*/
+#define IB_CUSTOM_FLAGS_MASK 0x3ff
+
#define PNG (1 << 30)
#define TGA (1 << 28)
#define JPG (1 << 27)