Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenloader/BLO_readfile.h
| Show First 20 Lines • Show All 165 Lines • ▼ Show 20 Lines | |||||
| struct LinkNode *BLO_blendhandle_get_datablock_names(BlendHandle *bh, | struct LinkNode *BLO_blendhandle_get_datablock_names(BlendHandle *bh, | ||||
| int ofblocktype, | int ofblocktype, | ||||
| const bool use_assets_only, | const bool use_assets_only, | ||||
| int *r_tot_names); | int *r_tot_names); | ||||
| struct LinkNode *BLO_blendhandle_get_datablock_info(BlendHandle *bh, | struct LinkNode *BLO_blendhandle_get_datablock_info(BlendHandle *bh, | ||||
| int ofblocktype, | int ofblocktype, | ||||
| int *r_tot_info_items); | int *r_tot_info_items); | ||||
| struct LinkNode *BLO_blendhandle_get_previews(BlendHandle *bh, int ofblocktype, int *r_tot_prev); | struct LinkNode *BLO_blendhandle_get_previews(BlendHandle *bh, int ofblocktype, int *r_tot_prev); | ||||
jbakker: We should keep the old implementation as I am tempted to redoing the thumbcache. | |||||
| struct PreviewImage *BLO_blendhandle_get_preview_for_id(BlendHandle *bh, | |||||
| int ofblocktype, | |||||
| const char *name); | |||||
| struct LinkNode *BLO_blendhandle_get_linkable_groups(BlendHandle *bh); | struct LinkNode *BLO_blendhandle_get_linkable_groups(BlendHandle *bh); | ||||
| void BLO_blendhandle_close(BlendHandle *bh); | void BLO_blendhandle_close(BlendHandle *bh); | ||||
| /** \} */ | /** \} */ | ||||
| #define BLO_GROUP_MAX 32 | #define BLO_GROUP_MAX 32 | ||||
| #define BLO_EMBEDDED_STARTUP_BLEND "<startup.blend>" | #define BLO_EMBEDDED_STARTUP_BLEND "<startup.blend>" | ||||
| ▲ Show 20 Lines • Show All 136 Lines • Show Last 20 Lines | |||||
We should keep the old implementation as I am tempted to redoing the thumbcache.