Merging r48810 through r48812 from trunk into soc-2011-tomato
This commit is contained in:
@@ -42,7 +42,7 @@ extern "C" {
|
||||
* and keep comment above the defines.
|
||||
* Use STRINGIFY() rather than defining with quotes */
|
||||
#define BLENDER_VERSION 263
|
||||
#define BLENDER_SUBVERSION 13
|
||||
#define BLENDER_SUBVERSION 14
|
||||
|
||||
#define BLENDER_MINVERSION 250
|
||||
#define BLENDER_MINSUBVERSION 0
|
||||
|
||||
@@ -7890,7 +7890,7 @@ static void do_versions(FileData *fd, Library *lib, Main *main)
|
||||
ntreetype->foreach_nodetree(main, NULL, do_version_ntree_dilateerode_264);
|
||||
}
|
||||
|
||||
{
|
||||
if (main->versionfile < 263 || (main->versionfile == 263 && main->subversionfile < 14)) {
|
||||
bNodeTreeType *ntreetype = ntreeGetType(NTREE_COMPOSIT);
|
||||
|
||||
if (ntreetype && ntreetype->foreach_nodetree)
|
||||
|
||||
@@ -152,8 +152,9 @@ static void check_unused_keys(MovieCache *cache)
|
||||
|
||||
remove = !item->ibuf;
|
||||
|
||||
if (remove)
|
||||
if (remove) {
|
||||
PRINT("%s: cache '%s' remove item %p without buffer\n", __func__, cache->name, item);
|
||||
}
|
||||
|
||||
if (remove)
|
||||
BLI_ghash_remove(cache->hash, key, moviecache_keyfree, moviecache_valfree);
|
||||
|
||||
Reference in New Issue
Block a user