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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-05-10 19:10:54 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-05-10 19:10:54 +0400
commit8e9b6daa8ea5d47fad5e9ec4e8a75c2df7f9b2dc (patch)
treec97c7424ae2aa1a999f008b9592e1754953146e3 /intern/cycles/render/graph.h
parent65ed588c8b68b4bbea0e48a0222f5e8844774bd9 (diff)
Fix for recent bugfix with anisotropic node crash, could do invalid memory access.
Diffstat (limited to 'intern/cycles/render/graph.h')
-rw-r--r--intern/cycles/render/graph.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/cycles/render/graph.h b/intern/cycles/render/graph.h
index 8e91a9ddc07..5c4a44af3fc 100644
--- a/intern/cycles/render/graph.h
+++ b/intern/cycles/render/graph.h
@@ -226,6 +226,7 @@ public:
class ShaderGraph {
public:
list<ShaderNode*> nodes;
+ size_t num_node_ids;
bool finalized;
ShaderGraph();