Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/DEG_depsgraph_build.h2
-rw-r--r--source/blender/depsgraph/DEG_depsgraph_physics.h2
-rw-r--r--source/blender/depsgraph/DEG_depsgraph_query.h2
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_nodes.h28
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_relations.h34
-rw-r--r--source/blender/depsgraph/intern/depsgraph.h8
-rw-r--r--source/blender/depsgraph/intern/depsgraph_intern.h2
-rw-r--r--source/blender/depsgraph/intern/depsgraph_types.h6
-rw-r--r--source/blender/depsgraph/intern/nodes/deg_node.h4
-rw-r--r--source/blender/depsgraph/intern/nodes/deg_node_component.h6
10 files changed, 47 insertions, 47 deletions
diff --git a/source/blender/depsgraph/DEG_depsgraph_build.h b/source/blender/depsgraph/DEG_depsgraph_build.h
index a81dd4c8852..d783e49dd29 100644
--- a/source/blender/depsgraph/DEG_depsgraph_build.h
+++ b/source/blender/depsgraph/DEG_depsgraph_build.h
@@ -41,8 +41,8 @@ struct Depsgraph;
/* ------------------------------------------------ */
struct CacheFile;
-struct EffectorWeights;
struct Collection;
+struct EffectorWeights;
struct ID;
struct Main;
struct ModifierData;
diff --git a/source/blender/depsgraph/DEG_depsgraph_physics.h b/source/blender/depsgraph/DEG_depsgraph_physics.h
index a76134e080b..6dfd73a03c2 100644
--- a/source/blender/depsgraph/DEG_depsgraph_physics.h
+++ b/source/blender/depsgraph/DEG_depsgraph_physics.h
@@ -33,8 +33,8 @@
#include "DEG_depsgraph.h"
struct Colllection;
-struct Depsgraph;
struct DepsNodeHandle;
+struct Depsgraph;
struct EffectorWeights;
struct ListBase;
struct Object;
diff --git a/source/blender/depsgraph/DEG_depsgraph_query.h b/source/blender/depsgraph/DEG_depsgraph_query.h
index 11a4ebee8c6..46a9d2c5d72 100644
--- a/source/blender/depsgraph/DEG_depsgraph_query.h
+++ b/source/blender/depsgraph/DEG_depsgraph_query.h
@@ -38,8 +38,8 @@
struct ID;
-struct Base;
struct BLI_Iterator;
+struct Base;
struct Depsgraph;
struct DupliObject;
struct ListBase;
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_nodes.h b/source/blender/depsgraph/intern/builder/deg_builder_nodes.h
index 3357f6cb0a2..1db3f5d4e99 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_nodes.h
+++ b/source/blender/depsgraph/intern/builder/deg_builder_nodes.h
@@ -38,47 +38,47 @@
#include "intern/nodes/deg_node_id.h"
struct Base;
-struct bArmature;
-struct bAction;
struct CacheFile;
struct Camera;
-struct bGPdata;
-struct ListBase;
+struct Collection;
+struct FCurve;
struct GHash;
struct ID;
struct Image;
-struct FCurve;
-struct Collection;
struct Key;
struct Lamp;
struct LayerCollection;
struct LightProbe;
+struct ListBase;
+struct MTex;
struct Main;
-struct Material;
struct Mask;
-struct MTex;
+struct Material;
struct MovieClip;
-struct bNodeTree;
struct Object;
struct ParticleSettings;
struct Probe;
-struct bPoseChannel;
-struct bConstraint;
struct Scene;
struct Speaker;
struct Tex;
struct World;
+struct bAction;
+struct bArmature;
+struct bConstraint;
+struct bGPdata;
+struct bNodeTree;
+struct bPoseChannel;
struct PropertyRNA;
namespace DEG {
-struct Depsgraph;
+struct ComponentDepsNode;
struct DepsNode;
+struct Depsgraph;
struct IDDepsNode;
-struct TimeSourceDepsNode;
-struct ComponentDepsNode;
struct OperationDepsNode;
+struct TimeSourceDepsNode;
struct DepsgraphNodeBuilder {
DepsgraphNodeBuilder(Main *bmain, Depsgraph *graph);
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations.h b/source/blender/depsgraph/intern/builder/deg_builder_relations.h
index c8e01476b66..55c7657dcad 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_relations.h
+++ b/source/blender/depsgraph/intern/builder/deg_builder_relations.h
@@ -50,53 +50,53 @@
#include "intern/nodes/deg_node_operation.h"
struct Base;
-struct bArmature;
-struct bAction;
-struct bGPdata;
struct CacheFile;
struct Camera;
-struct ListBase;
+struct Collection;
+struct EffectorWeights;
+struct FCurve;
struct GHash;
struct ID;
-struct FCurve;
-struct Collection;
struct Key;
struct Lamp;
struct LayerCollection;
struct LightProbe;
+struct ListBase;
+struct MTex;
struct Main;
struct Mask;
struct Material;
-struct MTex;
struct ModifierData;
struct MovieClip;
-struct bNodeTree;
struct Object;
-struct bPoseChannel;
-struct bConstraint;
-struct ParticleSystem;
struct ParticleSettings;
+struct ParticleSystem;
struct Scene;
struct Speaker;
-struct ViewLayer;
struct Tex;
+struct ViewLayer;
struct World;
-struct EffectorWeights;
+struct bAction;
+struct bArmature;
+struct bConstraint;
+struct bGPdata;
+struct bNodeTree;
+struct bPoseChannel;
struct PropertyRNA;
namespace DEG {
-struct Depsgraph;
+struct ComponentDepsNode;
struct DepsNode;
struct DepsNodeHandle;
struct DepsRelation;
-struct RootDepsNode;
+struct Depsgraph;
struct IDDepsNode;
-struct TimeSourceDepsNode;
-struct ComponentDepsNode;
struct OperationDepsNode;
+struct RootDepsNode;
struct RootPChanMap;
+struct TimeSourceDepsNode;
struct TimeSourceKey
{
diff --git a/source/blender/depsgraph/intern/depsgraph.h b/source/blender/depsgraph/intern/depsgraph.h
index f3c4b52828f..948b200a33c 100644
--- a/source/blender/depsgraph/intern/depsgraph.h
+++ b/source/blender/depsgraph/intern/depsgraph.h
@@ -49,10 +49,10 @@
#include "intern/depsgraph_types.h"
-struct ID;
struct GHash;
-struct Main;
struct GSet;
+struct ID;
+struct Main;
struct PointerRNA;
struct PropertyRNA;
struct Scene;
@@ -60,11 +60,11 @@ struct ViewLayer;
namespace DEG {
+struct ComponentDepsNode;
struct DepsNode;
-struct TimeSourceDepsNode;
struct IDDepsNode;
-struct ComponentDepsNode;
struct OperationDepsNode;
+struct TimeSourceDepsNode;
/* *************************** */
/* Relationships Between Nodes */
diff --git a/source/blender/depsgraph/intern/depsgraph_intern.h b/source/blender/depsgraph/intern/depsgraph_intern.h
index 069407e855e..1f8364a5174 100644
--- a/source/blender/depsgraph/intern/depsgraph_intern.h
+++ b/source/blender/depsgraph/intern/depsgraph_intern.h
@@ -48,8 +48,8 @@ extern "C" {
#include "DEG_depsgraph_debug.h"
-struct DEGEditorUpdateContext;
struct Collection;
+struct DEGEditorUpdateContext;
struct ListBase;
struct Main;
struct Scene;
diff --git a/source/blender/depsgraph/intern/depsgraph_types.h b/source/blender/depsgraph/intern/depsgraph_types.h
index 5d51e367394..3910475f295 100644
--- a/source/blender/depsgraph/intern/depsgraph_types.h
+++ b/source/blender/depsgraph/intern/depsgraph_types.h
@@ -45,12 +45,12 @@
#include <vector>
#include <algorithm>
-struct bAction;
struct ChannelDriver;
+struct Depsgraph;
+struct FCurve;
struct ModifierData;
struct PointerRNA;
-struct FCurve;
-struct Depsgraph;
+struct bAction;
namespace DEG {
diff --git a/source/blender/depsgraph/intern/nodes/deg_node.h b/source/blender/depsgraph/intern/nodes/deg_node.h
index 7a837d17ceb..409fd83e3ac 100644
--- a/source/blender/depsgraph/intern/nodes/deg_node.h
+++ b/source/blender/depsgraph/intern/nodes/deg_node.h
@@ -34,14 +34,14 @@
#include "BLI_utildefines.h"
-struct ID;
struct GHash;
+struct ID;
struct Scene;
namespace DEG {
-struct Depsgraph;
struct DepsRelation;
+struct Depsgraph;
struct OperationDepsNode;
/* *********************************** */
diff --git a/source/blender/depsgraph/intern/nodes/deg_node_component.h b/source/blender/depsgraph/intern/nodes/deg_node_component.h
index 151e37f7772..5e1d97f6502 100644
--- a/source/blender/depsgraph/intern/nodes/deg_node_component.h
+++ b/source/blender/depsgraph/intern/nodes/deg_node_component.h
@@ -35,16 +35,16 @@
#include "BLI_utildefines.h"
#include "BLI_string.h"
+struct GHash;
struct ID;
struct bPoseChannel;
-struct GHash;
namespace DEG {
-struct Depsgraph;
-struct OperationDepsNode;
struct BoneComponentDepsNode;
+struct Depsgraph;
struct IDDepsNode;
+struct OperationDepsNode;
/* ID Component - Base type for all components */
struct ComponentDepsNode : public DepsNode {