[Bf-blender-cvs] [9c24748] alembic_pointcache: Removed deprecated DNA data.

Lukas Tönne noreply at git.blender.org
Thu Oct 16 16:53:38 CEST 2014


Commit: 9c247486aabec5a33b4ed0cfce964ac509088b96
Author: Lukas Tönne
Date:   Thu Nov 28 09:42:38 2013 +0100
Branches: alembic_pointcache
https://developer.blender.org/rB9c247486aabec5a33b4ed0cfce964ac509088b96

Removed deprecated DNA data.

This will break forward compatibility, but this is broken either way,
there's no way we can smoothly convert new point cache data into the old
format without considerable effort. It's just a few settings for cache
behavior anyway, no valuable user work getting lost.

===================================================================

M	source/blender/makesdna/DNA_pointcache_types.h

===================================================================

diff --git a/source/blender/makesdna/DNA_pointcache_types.h b/source/blender/makesdna/DNA_pointcache_types.h
index 1c95ab9..73ccad2 100644
--- a/source/blender/makesdna/DNA_pointcache_types.h
+++ b/source/blender/makesdna/DNA_pointcache_types.h
@@ -80,7 +80,6 @@ typedef struct PTCacheMem {
 } PTCacheMem;
 
 typedef struct PointCache {
-	struct PointCache *next DNA_DEPRECATED, *prev DNA_DEPRECATED;
 	int flag;		/* generic flag */
 	
 	int step;		/* The number of frames between cached frames.
@@ -114,7 +113,6 @@ typedef struct PointCache {
 	char path[1024]; /* file path, 1024 = FILE_MAX */
 	char *cached_frames;	/* array of length endframe-startframe+1 with flags to indicate cached frames */
 							/* can be later used for other per frame flags too if needed */
-	struct ListBase mem_cache DNA_DEPRECATED;
 
 	struct PTCacheEdit *edit;
 	void (*free_edit)(struct PTCacheEdit *edit);	/* free callback */




More information about the Bf-blender-cvs mailing list