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:
Diffstat (limited to 'source/blender/render/extern/include/RE_pipeline.h')
-rw-r--r--source/blender/render/extern/include/RE_pipeline.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/source/blender/render/extern/include/RE_pipeline.h b/source/blender/render/extern/include/RE_pipeline.h
index 0e7399d4a0d..145508b514e 100644
--- a/source/blender/render/extern/include/RE_pipeline.h
+++ b/source/blender/render/extern/include/RE_pipeline.h
@@ -95,20 +95,23 @@ typedef struct RenderPass {
typedef struct RenderLayer {
struct RenderLayer *next, *prev;
- /* copy of RenderData */
+ /** copy of RenderData */
char name[RE_MAXNAME];
int layflag, passflag, pass_xor;
/* MULTIVIEW_TODO: acolrect and scolrect are not supported by multiview at the moment.
* If they are really required they should be in RenderView instead */
- 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 *display_buffer; /* 4 char, optional color managed display buffer which is used when
- * Save Buffer is enabled to display combined pass of the screen. */
+ /** 4 float, optional transparent buffer, needs storage for display updates */
+ float *acolrect;
+ /** 4 float, optional strand buffer, needs storage for display updates */
+ float *scolrect;
+ /** 4 char, optional color managed display buffer which is used when
+ * Save Buffer is enabled to display combined pass of the screen. */
+ int *display_buffer;
int rectx, recty;
- /* optional saved endresult on disk */
+ /** Optional saved endresult on disk. */
void *exrhandle;
ListBase passes;