Cleanup: comment blocks

This commit is contained in:
2019-04-18 07:21:26 +02:00
parent 93e876c4f8
commit 333cdbb410
102 changed files with 521 additions and 489 deletions

View File

@@ -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;