Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_image.h
| Show First 20 Lines • Show All 167 Lines • ▼ Show 20 Lines | typedef struct ImageFrameRange { | ||||
| struct ImageFrameRange *next, *prev; | struct ImageFrameRange *next, *prev; | ||||
| /** Absolute file path of the first file in the range. */ | /** Absolute file path of the first file in the range. */ | ||||
| char filepath[FILE_MAX]; | char filepath[FILE_MAX]; | ||||
| /* Sequence parameters. */ | /* Sequence parameters. */ | ||||
| int length; | int length; | ||||
| int offset; | int offset; | ||||
| /* UDIM tiles. */ | /* UDIM tiles. */ | ||||
| bool udims_detected; | |||||
| ListBase udim_tiles; | ListBase udim_tiles; | ||||
| /* Temporary data. */ | /* Temporary data. */ | ||||
| ListBase frames; | ListBase frames; | ||||
| } ImageFrameRange; | } ImageFrameRange; | ||||
| /** | /** | ||||
| * Used for both images and volume file loading. | * Used for both images and volume file loading. | ||||
| */ | */ | ||||
| ListBase ED_image_filesel_detect_sequences(struct Main *bmain, | ListBase ED_image_filesel_detect_sequences(struct Main *bmain, | ||||
| struct wmOperator *op, | struct wmOperator *op, | ||||
| bool detect_udim); | bool detect_udim); | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } | } | ||||
| #endif | #endif | ||||