Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/nla_private.h
| Show First 20 Lines • Show All 107 Lines • ▼ Show 20 Lines | typedef struct NlaEvalChannel { | ||||
| bool is_array; | bool is_array; | ||||
| bool in_blend; | bool in_blend; | ||||
| char mix_mode; | char mix_mode; | ||||
| struct NlaEvalChannel *next_blend; | struct NlaEvalChannel *next_blend; | ||||
| NlaEvalChannelSnapshot *blend_snapshot; | NlaEvalChannelSnapshot *blend_snapshot; | ||||
| /* Mask of array items controlled by NLA. */ | /* Mask of array items controlled by NLA. */ | ||||
| NlaValidMask valid; | NlaValidMask domain; | ||||
| /* Base set of values. */ | /* Base set of values. */ | ||||
| NlaEvalChannelSnapshot base_snapshot; | NlaEvalChannelSnapshot base_snapshot; | ||||
| /* Memory over-allocated to provide space for base_snapshot.values. */ | /* Memory over-allocated to provide space for base_snapshot.values. */ | ||||
| } NlaEvalChannel; | } NlaEvalChannel; | ||||
| /* Set of values for all channels. */ | /* Set of values for all channels. */ | ||||
| typedef struct NlaEvalSnapshot { | typedef struct NlaEvalSnapshot { | ||||
| ▲ Show 20 Lines • Show All 67 Lines • Show Last 20 Lines | |||||