[Bf-blender-cvs] [b08c193] object_nodes: EvalData is now deprecated and unused, removed it.

Lukas Tönne noreply at git.blender.org
Thu Dec 10 15:21:39 CET 2015


Commit: b08c193d14859b68699fd5292bb2d738d78714c2
Author: Lukas Tönne
Date:   Thu Dec 10 15:20:25 2015 +0100
Branches: object_nodes
https://developer.blender.org/rBb08c193d14859b68699fd5292bb2d738d78714c2

EvalData is now deprecated and unused, removed it.

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

M	source/blender/blenvm/bvm/bvm_eval.h

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

diff --git a/source/blender/blenvm/bvm/bvm_eval.h b/source/blender/blenvm/bvm/bvm_eval.h
index 840f64c..2480da6 100644
--- a/source/blender/blenvm/bvm/bvm_eval.h
+++ b/source/blender/blenvm/bvm/bvm_eval.h
@@ -56,54 +56,6 @@ struct EvalGlobals {
 	MEM_CXX_CLASS_ALLOC_FUNCS("BVM:EvalGlobals")
 };
 
-struct EffectorEvalData {
-	EffectorEvalData() :
-	    position(0.0f, 0.0f, 0.0f),
-	    velocity(0.0f, 0.0f, 0.0f)
-	{}
-	
-	/* context */
-	PointerRNA object;
-	
-	/* point */
-	float3 position;
-	float3 velocity;
-};
-
-struct TextureEvalData {
-	TextureEvalData() :
-	    co(float3(0.0f, 0.0f, 0.0f)),
-	    dxt(float3(0.0f, 0.0f, 0.0f)),
-	    dyt(float3(0.0f, 0.0f, 0.0f)),
-	    cfra(0),
-	    osatex(0)
-	{}
-	float3 co;
-	float3 dxt, dyt;
-	int cfra;
-	int osatex;
-};
-
-struct ModifierEvalData {
-	ModifierEvalData() :
-	    base_mesh(NULL)
-	{}
-	struct Mesh *base_mesh;
-};
-
-struct EvalData {
-	EvalData() :
-	    iteration(0)
-	{}
-	
-	EffectorEvalData effector;
-	TextureEvalData texture;
-	ModifierEvalData modifier;
-	int iteration;
-
-	MEM_CXX_CLASS_ALLOC_FUNCS("BVM:EvalData")
-};
-
 struct EvalContext {
 	EvalContext();
 	~EvalContext();




More information about the Bf-blender-cvs mailing list