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>2006-02-08 19:51:09 +0300
committerTon Roosendaal <ton@blender.org>2006-02-08 19:51:09 +0300
commit839b338be35dd11d30231d1dee1a3454b952ab55 (patch)
tree6bb9375175ad26f7135adef188a9ca7358b667b5 /source/blender/render/intern/include/renderpipeline.h
parent10acbf00abc679855184da750d295d1115bb515c (diff)
New:
- ZTransp render now also delivers Z values and Speed vectors in passes Note that speed vectors accumulate within a pixel to store the minimum, so rendering ztransp on top of a non-moving plane won't give speed... Best results you get is by rendering it in a separate layer. The Z value stored is the closest visible transparent face in the pixel. Fixes: - Render to 'spare page' has been enabled again. Because of the strict separation of Render and UI, but especially because a 'render result' now can consist of unlimited images, I've not made this a Render feature. Instead, the render-window itself stores the 'spare' image... I also had to change the convention for it a bit. Now, instead of having two "render buffers" (which was a render feature), the RenderWindow will store each previous frame on a re-render. This storing will only start after you've pressed 'Jkey' once, but then always will happen for as long the rendered image is same size as previously. For clarity, I've also renamed the window title, to 'previous frame'. - RenderWindow shows alpha again on Akey - Display of the Zvalues in ImageWindow has been tweaked. White now denotes closest, and the color range goes from camera clip-sta to clip-end. - Bugfix: on splitting/merging/duplicating windows, the 3D Previewrender was not always freed correctly, potentially causing crashes or memory leaks.
Diffstat (limited to 'source/blender/render/intern/include/renderpipeline.h')
-rw-r--r--source/blender/render/intern/include/renderpipeline.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/render/intern/include/renderpipeline.h b/source/blender/render/intern/include/renderpipeline.h
index 5ccb2f318dc..400420c7081 100644
--- a/source/blender/render/intern/include/renderpipeline.h
+++ b/source/blender/render/intern/include/renderpipeline.h
@@ -36,6 +36,7 @@ void *RE_mallocN(int len, char *name);
void *RE_callocN(int len, char *name);
void RE_freeN(void *poin);
+#define PASS_VECTOR_MAX 10000.0f
#endif /* PIPELINE_H */