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:
authorTon Roosendaal <ton@blender.org>2005-05-25 20:19:00 +0400
committerTon Roosendaal <ton@blender.org>2005-05-25 20:19:00 +0400
commit6969c118de953db52656c5bf61b57ffaf282b352 (patch)
tree71b17ad59b41b82f9b9a5b30c9955b541b627cda /source/blender/imbuf
parent2a1fe1b0cbbb45cbec7d9864ad79b1b321880da0 (diff)
Removed unused rect_float variable from imbuf structure. Was added for the
openEXR testing only. It broke sequence plugins... Note: adding variables in end of Imbuf struct at least doesn't crash old sequence plugins immediately. :)
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/IMB_imbuf_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/imbuf/IMB_imbuf_types.h b/source/blender/imbuf/IMB_imbuf_types.h
index bba9875cd85..70ff5f14269 100644
--- a/source/blender/imbuf/IMB_imbuf_types.h
+++ b/source/blender/imbuf/IMB_imbuf_types.h
@@ -66,6 +66,8 @@ struct Mdec;
* to source/blender/blenpluginapi/iff.h too, OTHERWISE PLUGINS WON'T
* WORK CORRECTLY!
*
+ * Also; add new variables to the end to save pain!
+ *
* Also, that iff.h needs to be in the final release "plugins/include" dir, too!
*/
typedef struct ImBuf{
@@ -80,7 +82,6 @@ typedef struct ImBuf{
int ftype; /**< File type */
unsigned int *cmap; /**< Color map data. */
unsigned int *rect; /**< databuffer */
- float *rect_float; /**< databuffer in Float format, unclampled !! */
unsigned int **planes; /**< bitplanes */
int flags; /**< Controls which components should exist. */
int mall; /**< what is malloced internal, and can be freed */