Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/image.c
| Show First 20 Lines • Show All 332 Lines • ▼ Show 20 Lines | IDTypeInfo IDType_ID_IM = { | ||||
| .foreach_cache = image_foreach_cache, | .foreach_cache = image_foreach_cache, | ||||
| .blend_write = image_blend_write, | .blend_write = image_blend_write, | ||||
| .blend_read_data = image_blend_read_data, | .blend_read_data = image_blend_read_data, | ||||
| .blend_read_lib = image_blend_read_lib, | .blend_read_lib = image_blend_read_lib, | ||||
| .blend_read_expand = NULL, | .blend_read_expand = NULL, | ||||
| .blend_read_undo_preserve = NULL, | .blend_read_undo_preserve = NULL, | ||||
| .lib_override_apply_post = NULL, | |||||
| }; | }; | ||||
| /* prototypes */ | /* prototypes */ | ||||
| static int image_num_files(struct Image *ima); | static int image_num_files(struct Image *ima); | ||||
| static ImBuf *image_acquire_ibuf(Image *ima, ImageUser *iuser, void **r_lock); | static ImBuf *image_acquire_ibuf(Image *ima, ImageUser *iuser, void **r_lock); | ||||
| static void image_update_views_format(Image *ima, ImageUser *iuser); | static void image_update_views_format(Image *ima, ImageUser *iuser); | ||||
| static void image_add_view(Image *ima, const char *viewname, const char *filepath); | static void image_add_view(Image *ima, const char *viewname, const char *filepath); | ||||
| ▲ Show 20 Lines • Show All 5,598 Lines • Show Last 20 Lines | |||||