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:
authorKent Mein <mein@cs.umn.edu>2008-04-22 18:53:15 +0400
committerKent Mein <mein@cs.umn.edu>2008-04-22 18:53:15 +0400
commit20f2607c3ab2e4e8c94ed0a15373f2b7edb3c9ea (patch)
tree90bcda6a3ca7d9c0bd691d796bd57c078965be66 /source/blender/blenpluginapi
parent6672bb16cf9a8cc6ab7820bf30517cf6fefde1cf (diff)
Patch from Paprmh (Rob)
forgot to update the check for valid sequence plugin version # (The version bump didn't affect sequence plugins so missed it) This patch also brought the plugin includes back inline with imbuf stuff. I'm putting it on my todo to see if we can't remove this duplication so that this is not a reoccuring issue. Kent
Diffstat (limited to 'source/blender/blenpluginapi')
-rw-r--r--source/blender/blenpluginapi/iff.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenpluginapi/iff.h b/source/blender/blenpluginapi/iff.h
index 19bea621d24..92cbd7dd093 100644
--- a/source/blender/blenpluginapi/iff.h
+++ b/source/blender/blenpluginapi/iff.h
@@ -151,7 +151,7 @@ typedef struct ImBuf {
int userflags; /**< Used to set imbuf to Dirty and other stuff */
int *zbuf; /**< z buffer data, original zbuffer */
float *zbuf_float; /**< z buffer data, camera coordinates */
- void *userdata;
+ void *userdata; /**< temporary storage, only used by baking at the moment */
unsigned char *encodedbuffer; /**< Compressed image only used with png currently */
unsigned int encodedsize; /**< Size of data written to encodedbuffer */
unsigned int encodedbuffersize; /**< Size of encodedbuffer */
@@ -161,6 +161,7 @@ typedef struct ImBuf {
float dither; /**< random dither value, for conversion from float -> byte rect */
struct MEM_CacheLimiterHandle_s * c_handle; /**< handle for cache limiter */
+ struct ImgInfo * img_info;
int refcounter; /**< Refcounter for multiple users */
int index; /**< reference index for ImBuf lists */