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:
authorPeter Schlaile <peter@schlaile.de>2006-02-05 22:36:32 +0300
committerPeter Schlaile <peter@schlaile.de>2006-02-05 22:36:32 +0300
commit680756393a7be40706826bbbd580269a2a71cc4a (patch)
tree0abcd40078c4c4bbcd568f4c7ca05048fa367715 /source/blender/blenpluginapi
parent6c29ba8494e58b704a34bf86e088c3ec86b6fd97 (diff)
- Header changes to support hdaudio, memcache limitor and framecount boost.
Diffstat (limited to 'source/blender/blenpluginapi')
-rw-r--r--source/blender/blenpluginapi/iff.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/blenpluginapi/iff.h b/source/blender/blenpluginapi/iff.h
index 456291e664b..f0d7a76f0f4 100644
--- a/source/blender/blenpluginapi/iff.h
+++ b/source/blender/blenpluginapi/iff.h
@@ -125,6 +125,8 @@
#define AN_INIT an_stringdec = stringdec; an_stringenc = stringenc;
+struct MEM_CacheLimiterHandle_s;
+
typedef struct ImBuf{
short x,y; /* width in pixels, height in scanlines */
short skipx; /* width in ints to get to the next scanline */
@@ -148,7 +150,11 @@ typedef struct ImBuf{
unsigned char *encodedbuffer;
unsigned int encodedsize;
unsigned int encodedbuffersize;
+
float *rect_float;
+
+ struct MEM_CacheLimiterHandle_s * c_handle;
+ int refcounter;
} ImBuf;
extern struct ImBuf *allocImBuf(short,short,uchar,uint,uchar);