Changeset View
Changeset View
Standalone View
Standalone View
source/blender/imbuf/intern/thumbs_blend.c
| Show All 26 Lines | |||||
| #include <stdlib.h> | #include <stdlib.h> | ||||
| #include <string.h> | #include <string.h> | ||||
| #include "BLI_utildefines.h" | #include "BLI_utildefines.h" | ||||
| #include "BLI_endian_switch.h" | #include "BLI_endian_switch.h" | ||||
| #include "BLI_fileops.h" | #include "BLI_fileops.h" | ||||
| #include "BLI_linklist.h" | #include "BLI_linklist.h" | ||||
| #include "BLI_listbase.h" | |||||
mont29: Why is this needed???? Or is it a left-over from some merge? | |||||
SeverinAuthorUnsubmitted Not Done Inline ActionsGetting a compile error without it, but it's in BLO_readfile so can easily avoid adding this here. Severin: Getting a compile error without it, but it's in `BLO_readfile` so can easily avoid adding this… | |||||
SeverinAuthorUnsubmitted Not Done Inline ActionsTurns out that even though this can be avoided, it's probably preferable like I did it. Severin: Turns out that even though this can be avoided, it's probably preferable like I did it.
This… | |||||
mont29Unsubmitted Not Done Inline ActionsCleaned up a bit, but indeed looks like we have no choice but to link listbase here… no big deal anyway. mont29: Cleaned up a bit, but indeed looks like we have no choice but to link listbase here… no big… | |||||
| #include "BLO_blend_defs.h" | #include "BLO_blend_defs.h" | ||||
| #include "BLO_readfile.h" | #include "BLO_readfile.h" | ||||
| #include "BKE_global.h" | #include "BKE_global.h" | ||||
| #include "BKE_idcode.h" | #include "BKE_idcode.h" | ||||
| #include "BKE_icons.h" | #include "BKE_icons.h" | ||||
| #include "BKE_library.h" | #include "BKE_library.h" | ||||
| ▲ Show 20 Lines • Show All 134 Lines • Show Last 20 Lines | |||||
Why is this needed???? Or is it a left-over from some merge?