Blender Git Commit Log

Git Commits -> Revision 800f86c

Revision 800f86c by Tamito Kajiyama (master)
April 9, 2013, 00:46 (GMT)
Attempt to fix a potential name conflict between Freestyle and the compositor.

A crash in the Freestyle renderer was reported by Ton on IRC with a stack trace
below. Note that #2 is in Freestyle, whereas #1 is in the compositor. The problem
was observed in a debug build on OS X 10.7 (gcc 4.2, openmp disabled, no llvm).

----------------------------------------------------------------------
Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: 13 at address: 0x0000000000000000
[Switching to process 72386 thread 0xf303]
0x0000000100c129f3 in NodeBase::~NodeBase (this=0x10e501c80) at COM_NodeBase.cpp:43
43 delete (this->m_outputsockets.back());
Current language: auto; currently c++
(gdb) where
#0 0x0000000100c129f3 in NodeBase::~NodeBase (this=0x10e501c80) at COM_NodeBase.cpp:43
#1 0x0000000100c29066 in Node::~Node (this=0x10e501c80) at COM_Node.h:49
#2 0x000000010089c273 in NodeShape::~NodeShape (this=0x10e501c80) at NodeShape.cpp:43
#3 0x000000010089910b in NodeGroup::destroy (this=0x10e501da0) at NodeGroup.cpp:61
#4 0x00000001008990cd in NodeGroup::destroy (this=0x10e5014b0) at NodeGroup.cpp:59
#5 0x00000001008990cd in NodeGroup::destroy (this=0x114e18da0) at NodeGroup.cpp:59
#6 0x00000001007e6602 in Controller::ClearRootNode (this=0x114e19640) at Controller.cpp:329
#7 0x00000001007ea52e in Controller::LoadMesh (this=0x114e19640, re=0x10aba4638, srl=0x1140f5258) at Controller.cpp:302
#8 0x00000001008030ad in prepare (re=0x10aba4638, srl=0x1140f5258) at FRS_freestyle.cpp:302
#9 0x000000010080457a in FRS_do_stroke_rendering (re=0x10aba4638, srl=0x1140f5258) at FRS_freestyle.cpp:600
#10 0x00000001006aeb9d in add_freestyle (re=0x10aba4638) at pipeline.c:1584
#11 0x00000001006aceb7 in do_render_3d (re=0x10aba4638) at pipeline.c:1094
#12 0x00000001006ae061 in do_render_fields_blur_3d (re=0x10aba4638) at pipeline.c:1367
#13 0x00000001006afa16 in do_render_composite_fields_blur_3d (re=0x10aba4638) at pipeline.c:1815
#14 0x00000001006b04e4 in do_render_all_options (re=0x10aba4638) at pipeline.c:2021
----------------------------------------------------------------------

Apparently a name conflict between the two Blender modules is taking place.
The present commit hence intends to address it by putting all the Freestyle C++
classes in the namespace 'Freestyle'. This revision will also prevent potential
name conflicts with other Blender modules in the future.

Special thanks to Lukas Toenne for the help with C++ namespace.

Commit Details:

Full Hash: 800f86c8454ced85c29d1dcb04dcb163689a89d3
SVN Revision: 55915
Parent Commit: e6bd510
Lines Changed: +915, -80

233 Modified Paths:

/source/blender/freestyle/intern/application/AppCanvas.cpp (+4, -1) (Diff)
/source/blender/freestyle/intern/application/AppCanvas.h (+4, -0) (Diff)
/source/blender/freestyle/intern/application/AppConfig.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/application/AppConfig.h (+4, -0) (Diff)
/source/blender/freestyle/intern/application/AppView.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/application/AppView.h (+4, -0) (Diff)
/source/blender/freestyle/intern/application/Controller.cpp (+3, -9) (Diff)
/source/blender/freestyle/intern/application/Controller.h (+9, -12) (Diff)
/source/blender/freestyle/intern/blender_interface/BlenderFileLoader.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/blender_interface/BlenderFileLoader.h (+3, -7) (Diff)
/source/blender/freestyle/intern/blender_interface/BlenderStrokeRenderer.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/blender_interface/BlenderStrokeRenderer.h (+4, -7) (Diff)
/source/blender/freestyle/intern/blender_interface/BlenderStyleModule.h (+4, -0) (Diff)
/source/blender/freestyle/intern/blender_interface/BlenderTextureManager.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/blender_interface/BlenderTextureManager.h (+4, -0) (Diff)
/source/blender/freestyle/intern/blender_interface/FRS_freestyle.cpp (+1, -0) (Diff)
/source/blender/freestyle/intern/geometry/BBox.h (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/Bezier.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/Bezier.h (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/FastGrid.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/FastGrid.h (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/FitCurve.cpp (+4, -15) (Diff)
/source/blender/freestyle/intern/geometry/FitCurve.h (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/Geom.h (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/GeomCleaner.cpp (+3, -0) (Diff)
/source/blender/freestyle/intern/geometry/GeomCleaner.h (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/GeomUtils.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/GeomUtils.h (+5, -0) (Diff)
/source/blender/freestyle/intern/geometry/Grid.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/Grid.h (+5, -0) (Diff)
/source/blender/freestyle/intern/geometry/GridHelpers.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/GridHelpers.h (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/HashGrid.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/HashGrid.h (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/matrix_util.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/matrix_util.h (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/Noise.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/Noise.h (+6, -1) (Diff)
/source/blender/freestyle/intern/geometry/normal_cycle.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/normal_cycle.h (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/Polygon.h (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/SweepLine.h (+4, -0) (Diff)
/source/blender/freestyle/intern/geometry/VecMat.h (+4, -0) (Diff)
/source/blender/freestyle/intern/image/GaussianFilter.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/image/GaussianFilter.h (+8, -2) (Diff)
/source/blender/freestyle/intern/image/Image.h (+4, -0) (Diff)
/source/blender/freestyle/intern/image/ImagePyramid.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/image/ImagePyramid.h (+4, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_BBox.h (+3, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_BinaryPredicate0D.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_BinaryPredicate1D.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_ContextFunctions.cpp (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_Convert.h (+3, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_FrsMaterial.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_FrsNoise.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_Id.h (+3, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_IntegrationType.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_Interface0D.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_Interface1D.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_Iterator.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_MediumType.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_Nature.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_Operators.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_SShape.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_StrokeAttribute.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_StrokeShader.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryFunction0D.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryFunction1D.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryPredicate0D.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryPredicate1D.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_ViewMap.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_ViewShape.h (+2, -0) (Diff)
/source/blender/freestyle/intern/python/Director.h (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/DrawingStyle.h (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/FrsMaterial.h (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/IndexedFaceSet.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/IndexedFaceSet.h (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/LineRep.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/LineRep.h (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/Node.h (+5, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/NodeCamera.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/NodeCamera.h (+3, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/NodeDrawingStyle.h (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/NodeGroup.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/NodeGroup.h (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/NodeLight.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/NodeLight.h (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/NodeShape.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/NodeShape.h (+5, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/NodeTransform.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/NodeTransform.h (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/OrientedLineRep.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/OrientedLineRep.h (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/Rep.h (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/ScenePrettyPrinter.h (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/SceneVisitor.h (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/TriangleRep.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/TriangleRep.h (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/VertexRep.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/scene_graph/VertexRep.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/AdvancedFunctions0D.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/AdvancedFunctions0D.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/AdvancedFunctions1D.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/AdvancedPredicates1D.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/AdvancedStrokeShaders.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/AdvancedStrokeShaders.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/BasicStrokeShaders.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/BasicStrokeShaders.h (+5, -0) (Diff)
/source/blender/freestyle/intern/stroke/Canvas.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/Canvas.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/Chain.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/Chain.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/ChainingIterators.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/ChainingIterators.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/ContextFunctions.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/ContextFunctions.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/Curve.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/Curve.h (+5, -0) (Diff)
/source/blender/freestyle/intern/stroke/CurveAdvancedIterators.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/CurveIterators.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/Modifiers.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/Module.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/Operators.cpp (+5, -6) (Diff)
/source/blender/freestyle/intern/stroke/Operators.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/Predicates0D.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/Predicates1D.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/PSStrokeRenderer.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/PSStrokeRenderer.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/QInformationMap.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/Stroke.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/Stroke.h (+3, -0) (Diff)
/source/blender/freestyle/intern/stroke/StrokeAdvancedIterators.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/StrokeIO.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/StrokeIO.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/StrokeIterators.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/StrokeLayer.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/StrokeLayer.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/StrokeRenderer.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/StrokeRenderer.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/StrokeRep.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/StrokeRep.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/StrokeShader.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/StrokeTesselator.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/StrokeTesselator.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/StyleModule.h (+4, -0) (Diff)
/source/blender/freestyle/intern/stroke/TextStrokeRenderer.cpp (+3, -0) (Diff)
/source/blender/freestyle/intern/stroke/TextStrokeRenderer.h (+4, -1) (Diff)
/source/blender/freestyle/intern/system/BaseIterator.h (+4, -0) (Diff)
/source/blender/freestyle/intern/system/BaseObject.h (+4, -0) (Diff)
/source/blender/freestyle/intern/system/Cast.h (+4, -0) (Diff)
/source/blender/freestyle/intern/system/Exception.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/system/Exception.h (+4, -0) (Diff)
/source/blender/freestyle/intern/system/FreestyleConfig.h (+4, -0) (Diff)
/source/blender/freestyle/intern/system/Id.h (+4, -0) (Diff)
/source/blender/freestyle/intern/system/Interpreter.h (+4, -0) (Diff)
/source/blender/freestyle/intern/system/Iterator.h (+4, -0) (Diff)
/source/blender/freestyle/intern/system/PointerSequence.h (+4, -0) (Diff)
/source/blender/freestyle/intern/system/Precision.h (+4, -0) (Diff)
/source/blender/freestyle/intern/system/ProgressBar.h (+4, -0) (Diff)
/source/blender/freestyle/intern/system/PseudoNoise.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/system/PseudoNoise.h (+4, -0) (Diff)
/source/blender/freestyle/intern/system/PythonInterpreter.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/system/PythonInterpreter.h (+4, -2) (Diff)
/source/blender/freestyle/intern/system/RandGen.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/system/RandGen.h (+4, -0) (Diff)
/source/blender/freestyle/intern/system/RenderMonitor.h (+4, -2) (Diff)
/source/blender/freestyle/intern/system/StringUtils.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/system/StringUtils.h (+4, -0) (Diff)
/source/blender/freestyle/intern/system/TimeStamp.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/system/TimeStamp.h (+4, -0) (Diff)
/source/blender/freestyle/intern/system/TimeUtils.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/ArbitraryGridDensityProvider.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/ArbitraryGridDensityProvider.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/AverageAreaGridDensityProvider.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/AverageAreaGridDensityProvider.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/BoxGrid.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/BoxGrid.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/CulledOccluderSource.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/CulledOccluderSource.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/FEdgeXDetector.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/FEdgeXDetector.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/Functions0D.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/Functions0D.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/Functions1D.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/Functions1D.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/GridDensityProvider.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/HeuristicGridDensityProviderFactory.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/HeuristicGridDensityProviderFactory.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/Interface0D.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/Interface1D.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/OccluderSource.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/OccluderSource.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/Pow23GridDensityProvider.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/Pow23GridDensityProvider.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/Silhouette.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/Silhouette.h (+5, -0) (Diff)
/source/blender/freestyle/intern/view_map/SilhouetteGeomEngine.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/SilhouetteGeomEngine.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/SphericalGrid.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/SphericalGrid.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/SteerableViewMap.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/SteerableViewMap.h (+6, -2) (Diff)
/source/blender/freestyle/intern/view_map/ViewEdgeXBuilder.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/ViewEdgeXBuilder.h (+6, -1) (Diff)
/source/blender/freestyle/intern/view_map/ViewMap.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/ViewMap.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/ViewMapAdvancedIterators.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/ViewMapBuilder.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/ViewMapBuilder.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/ViewMapIO.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/ViewMapIO.h (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/ViewMapIterators.h (+3, -0) (Diff)
/source/blender/freestyle/intern/view_map/ViewMapTesselator.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/view_map/ViewMapTesselator.h (+4, -0) (Diff)
/source/blender/freestyle/intern/winged_edge/Curvature.cpp (+4, -0) (Diff)
/source/blender/freestyle/intern/winged_edge/Curvature.h (+4, -0) (Diff)
/source/blender/freestyle/intern/winged_edge/Nature.h (+4, -0) (Diff)
/source/blender/freestyle/intern/winged_edge/WEdge.cpp (+5, -1) (Diff)
/source/blender/freestyle/intern/winged_edge/WEdge.h (+6, -1) (Diff)
/source/blender/freestyle/intern/winged_edge/WFillGrid.cpp (+5, -1) (Diff)
/source/blender/freestyle/intern/winged_edge/WFillGrid.h (+5, -1) (Diff)
/source/blender/freestyle/intern/winged_edge/WingedEdgeBuilder.cpp (+5, -1) (Diff)
/source/blender/freestyle/intern/winged_edge/WingedEdgeBuilder.h (+4, -0) (Diff)
/source/blender/freestyle/intern/winged_edge/WSFillGrid.cpp (+5, -1) (Diff)
/source/blender/freestyle/intern/winged_edge/WSFillGrid.h (+4, -0) (Diff)
/source/blender/freestyle/intern/winged_edge/WXEdge.cpp (+5, -1) (Diff)
/source/blender/freestyle/intern/winged_edge/WXEdge.h (+5, -1) (Diff)
/source/blender/freestyle/intern/winged_edge/WXEdgeBuilder.cpp (+5, -1) (Diff)
/source/blender/freestyle/intern/winged_edge/WXEdgeBuilder.h (+5, -1) (Diff)
/source/blender/makesdna/DNA_freestyle_types.h (+8, -0) (Diff)
By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021