Comments for link-list types

This commit is contained in:
Campbell Barton 2015-10-23 16:46:57 +11:00
parent 6222505739
commit b2f8da1c53
4 changed files with 4 additions and 4 deletions

View File

@ -61,7 +61,7 @@ typedef struct ColorManagedDisplay {
struct ColorManagedDisplay *next, *prev;
int index;
char name[MAX_COLORSPACE_NAME];
ListBase views;
ListBase views; /* LinkData.data -> ColorManagedView */
struct OCIO_ConstProcessorRcPtr *to_scene_linear;
struct OCIO_ConstProcessorRcPtr *from_scene_linear;

View File

@ -145,7 +145,7 @@ typedef struct Image {
/* Multiview */
char eye; /* for viewer node stereoscopy */
char views_format;
ListBase views;
ListBase views; /* ImageView */
struct Stereo3dFormat *stereo3d_format;
RenderSlot render_slots[8]; /* 8 = IMA_MAX_RENDER_SLOT */

View File

@ -698,7 +698,7 @@ typedef struct RenderData {
short pad;
/* MultiView */
ListBase views;
ListBase views; /* SceneRenderView */
short actview;
short views_format;
short pad8[2];

View File

@ -159,7 +159,7 @@ typedef struct RenderResult {
ListBase layers;
/* multiView maps to a StringVector in OpenEXR */
ListBase views;
ListBase views; /* RenderView */
/* allowing live updates: */
volatile rcti renrect;