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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-07-21 18:11:51 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-07-21 18:11:51 +0400
commitb5457e8e70aa5f27dd6285cf9f4dccf9637ca0cb (patch)
tree42998f946737ce1d6ddabce3f822a07eb23e8eb8 /source/blender/render/extern/include/RE_pipeline.h
parent0b49dc77deaa5e4bf148be4e17ae73119e6aa769 (diff)
RNA
* Wrapped RenderResult, RenderLayer, RenderPass. * Update RNA_access.h with new structs.
Diffstat (limited to 'source/blender/render/extern/include/RE_pipeline.h')
-rw-r--r--source/blender/render/extern/include/RE_pipeline.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/render/extern/include/RE_pipeline.h b/source/blender/render/extern/include/RE_pipeline.h
index 04f7d264229..e0e78739d39 100644
--- a/source/blender/render/extern/include/RE_pipeline.h
+++ b/source/blender/render/extern/include/RE_pipeline.h
@@ -64,6 +64,7 @@ typedef struct RenderPass {
char name[16]; /* amount defined in openexr_multi.h */
char chan_id[8]; /* amount defined in openexr_multi.h */
float *rect;
+ int rectx, recty;
} RenderPass;
/* a renderlayer is a full image, but with all passes and samples */
@@ -83,6 +84,7 @@ typedef struct RenderLayer {
float *rectf; /* 4 float, standard rgba buffer (read not above!) */
float *acolrect; /* 4 float, optional transparent buffer, needs storage for display updates */
float *scolrect; /* 4 float, optional strand buffer, needs storage for display updates */
+ int rectx, recty;
ListBase passes;