├── .arcconfig ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── COPYING ├── GNUmakefile ├── doc ├── blender_file_format │ ├── BlendFileDnaExporter_25.py │ ├── BlendFileReader.py │ ├── README │ ├── mystery_of_the_blend.css │ └── mystery_of_the_blend.html ├── doxygen │ ├── Doxyfile │ ├── doxygen.extern.h │ ├── doxygen.intern.h │ ├── doxygen.main.h │ ├── doxygen.source.h │ └── footer.html ├── guides │ ├── blender-guardedalloc.txt │ ├── interface_API.txt │ └── python-dev-guide.txt ├── license │ ├── BL-license.txt │ ├── GPL-license.txt │ ├── GPL3-license.txt │ └── bf-members.txt ├── manpage │ └── blender.1.py └── python_api │ ├── blender-org │ ├── layout.html │ ├── page.html │ ├── static │ │ ├── bg.png │ │ ├── default.css_t │ │ ├── favicon.ico │ │ ├── jquery.sidebar.js │ │ ├── pygments.css │ │ ├── rnd.png │ │ ├── rndbl.png │ │ └── rndbr.png │ └── theme.conf │ ├── examples │ ├── aud.py │ ├── bge.constraints.py │ ├── bge.texture.1.py │ ├── bge.texture.2.py │ ├── bge.texture.py │ ├── blf.py │ ├── bmesh.ops.1.py │ ├── bpy.app.handlers.1.py │ ├── bpy.app.handlers.py │ ├── bpy.app.translations.py │ ├── bpy.data.py │ ├── bpy.ops.1.py │ ├── bpy.ops.2.py │ ├── bpy.ops.3.py │ ├── bpy.ops.py │ ├── bpy.props.1.py │ ├── bpy.props.2.py │ ├── bpy.props.3.py │ ├── bpy.props.4.py │ ├── bpy.props.5.py │ ├── bpy.props.py │ ├── bpy.types.AddonPreferences.1.py │ ├── bpy.types.BlendDataLibraries.load.py │ ├── bpy.types.BlendDataLibraries.write.py │ ├── bpy.types.ID.user_clear.1.py │ ├── bpy.types.Menu.1.py │ ├── bpy.types.Menu.2.py │ ├── bpy.types.Menu.3.py │ ├── bpy.types.Menu.py │ ├── bpy.types.Mesh.py │ ├── bpy.types.NodeTree.py │ ├── bpy.types.Object.py │ ├── bpy.types.Operator.1.py │ ├── bpy.types.Operator.2.py │ ├── bpy.types.Operator.3.py │ ├── bpy.types.Operator.4.py │ ├── bpy.types.Operator.5.py │ ├── bpy.types.Operator.py │ ├── bpy.types.Panel.1.py │ ├── bpy.types.Panel.2.py │ ├── bpy.types.Panel.py │ ├── bpy.types.PropertyGroup.py │ ├── bpy.types.RenderEngine.py │ ├── bpy.types.UIList.1.py │ ├── bpy.types.UIList.2.py │ ├── bpy.types.WindowManager.popup_menu.py │ ├── bpy.types.bpy_prop_collection.foreach_get.py │ ├── bpy.types.bpy_prop_collection.foreach_set.py │ ├── bpy.types.bpy_struct.keyframe_insert.1.py │ ├── bpy.types.bpy_struct.keyframe_insert.py │ ├── gpu.offscreen.1.py │ ├── mathutils.Color.py │ ├── mathutils.Euler.py │ ├── mathutils.Matrix.py │ ├── mathutils.Quaternion.py │ ├── mathutils.Vector.py │ ├── mathutils.kdtree.py │ └── mathutils.py │ ├── rst │ ├── bge.app.rst │ ├── bge.constraints.rst │ ├── bge.events.rst │ ├── bge.logic.rst │ ├── bge.render.rst │ ├── bge.texture.rst │ ├── bge.types.rst │ ├── bge_types │ │ ├── bge.types.BL_ActionActuator.rst │ │ ├── bge.types.BL_ArmatureActuator.rst │ │ ├── bge.types.BL_ArmatureBone.rst │ │ ├── bge.types.BL_ArmatureChannel.rst │ │ ├── bge.types.BL_ArmatureConstraint.rst │ │ ├── bge.types.BL_ArmatureObject.rst │ │ ├── bge.types.BL_Shader.rst │ │ ├── bge.types.BL_ShapeActionActuator.rst │ │ ├── bge.types.CListValue.rst │ │ ├── bge.types.CPropValue.rst │ │ ├── bge.types.CValue.rst │ │ ├── bge.types.KX_ArmatureSensor.rst │ │ ├── bge.types.KX_BlenderMaterial.rst │ │ ├── bge.types.KX_Camera.rst │ │ ├── bge.types.KX_CameraActuator.rst │ │ ├── bge.types.KX_CharacterWrapper.rst │ │ ├── bge.types.KX_ConstraintActuator.rst │ │ ├── bge.types.KX_ConstraintWrapper.rst │ │ ├── bge.types.KX_FontObject.rst │ │ ├── bge.types.KX_GameActuator.rst │ │ ├── bge.types.KX_GameObject.rst │ │ ├── bge.types.KX_LibLoadStatus.rst │ │ ├── bge.types.KX_LightObject.rst │ │ ├── bge.types.KX_MeshProxy.rst │ │ ├── bge.types.KX_MouseActuator.rst │ │ ├── bge.types.KX_MouseFocusSensor.rst │ │ ├── bge.types.KX_NavMeshObject.rst │ │ ├── bge.types.KX_NearSensor.rst │ │ ├── bge.types.KX_NetworkMessageActuator.rst │ │ ├── bge.types.KX_NetworkMessageSensor.rst │ │ ├── bge.types.KX_ObjectActuator.rst │ │ ├── bge.types.KX_ParentActuator.rst │ │ ├── bge.types.KX_PolyProxy.rst │ │ ├── bge.types.KX_RadarSensor.rst │ │ ├── bge.types.KX_RaySensor.rst │ │ ├── bge.types.KX_SCA_AddObjectActuator.rst │ │ ├── bge.types.KX_SCA_DynamicActuator.rst │ │ ├── bge.types.KX_SCA_EndObjectActuator.rst │ │ ├── bge.types.KX_SCA_ReplaceMeshActuator.rst │ │ ├── bge.types.KX_Scene.rst │ │ ├── bge.types.KX_SceneActuator.rst │ │ ├── bge.types.KX_SoundActuator.rst │ │ ├── bge.types.KX_StateActuator.rst │ │ ├── bge.types.KX_SteeringActuator.rst │ │ ├── bge.types.KX_TouchSensor.rst │ │ ├── bge.types.KX_TrackToActuator.rst │ │ ├── bge.types.KX_VehicleWrapper.rst │ │ ├── bge.types.KX_VertexProxy.rst │ │ ├── bge.types.KX_VisibilityActuator.rst │ │ ├── bge.types.KX_WorldInfo.rst │ │ ├── bge.types.PyObjectPlus.rst │ │ ├── bge.types.SCA_2DFilterActuator.rst │ │ ├── bge.types.SCA_ANDController.rst │ │ ├── bge.types.SCA_ActuatorSensor.rst │ │ ├── bge.types.SCA_AlwaysSensor.rst │ │ ├── bge.types.SCA_DelaySensor.rst │ │ ├── bge.types.SCA_IActuator.rst │ │ ├── bge.types.SCA_IController.rst │ │ ├── bge.types.SCA_ILogicBrick.rst │ │ ├── bge.types.SCA_IObject.rst │ │ ├── bge.types.SCA_ISensor.rst │ │ ├── bge.types.SCA_JoystickSensor.rst │ │ ├── bge.types.SCA_KeyboardSensor.rst │ │ ├── bge.types.SCA_MouseSensor.rst │ │ ├── bge.types.SCA_NANDController.rst │ │ ├── bge.types.SCA_NORController.rst │ │ ├── bge.types.SCA_ORController.rst │ │ ├── bge.types.SCA_PropertyActuator.rst │ │ ├── bge.types.SCA_PropertySensor.rst │ │ ├── bge.types.SCA_PythonController.rst │ │ ├── bge.types.SCA_PythonJoystick.rst │ │ ├── bge.types.SCA_PythonKeyboard.rst │ │ ├── bge.types.SCA_PythonMouse.rst │ │ ├── bge.types.SCA_RandomActuator.rst │ │ ├── bge.types.SCA_RandomSensor.rst │ │ ├── bge.types.SCA_XNORController.rst │ │ └── bge.types.SCA_XORController.rst │ ├── bgl.rst │ ├── change_log.rst │ ├── gpu.rst │ ├── include__bmesh.rst │ ├── info_api_reference.rst │ ├── info_best_practice.rst │ ├── info_gotcha.rst │ ├── info_overview.rst │ ├── info_quickstart.rst │ ├── info_tips_and_tricks.rst │ └── info_tutorial_addon.rst │ ├── rst_from_bmesh_opdefines.py │ ├── sphinx_changelog_gen.py │ ├── sphinx_doc_gen.py │ ├── sphinx_doc_gen.sh │ ├── sphinx_doc_gen_monkeypatch.py │ └── sphinx_doc_update.py ├── extern ├── CMakeLists.txt ├── Eigen3 │ ├── Eigen │ │ ├── Array │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigen2Support │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── LU │ │ ├── LeastSquares │ │ ├── MetisSupport │ │ ├── OrderingMethods │ │ ├── PaStiXSupport │ │ ├── PardisoSupport │ │ ├── QR │ │ ├── QtAlignedMalloc │ │ ├── SPQRSupport │ │ ├── SVD │ │ ├── Sparse │ │ ├── SparseCholesky │ │ ├── SparseCore │ │ ├── SparseLU │ │ ├── SparseQR │ │ ├── StdDeque │ │ ├── StdList │ │ ├── StdVector │ │ ├── SuperLUSupport │ │ ├── UmfPackSupport │ │ └── src │ │ │ ├── Cholesky │ │ │ ├── LDLT.h │ │ │ ├── LLT.h │ │ │ └── LLT_MKL.h │ │ │ ├── CholmodSupport │ │ │ └── CholmodSupport.h │ │ │ ├── Core │ │ │ ├── Array.h │ │ │ ├── ArrayBase.h │ │ │ ├── ArrayWrapper.h │ │ │ ├── Assign.h │ │ │ ├── Assign_MKL.h │ │ │ ├── BandMatrix.h │ │ │ ├── Block.h │ │ │ ├── BooleanRedux.h │ │ │ ├── CommaInitializer.h │ │ │ ├── CoreIterators.h │ │ │ ├── CwiseBinaryOp.h │ │ │ ├── CwiseNullaryOp.h │ │ │ ├── CwiseUnaryOp.h │ │ │ ├── CwiseUnaryView.h │ │ │ ├── DenseBase.h │ │ │ ├── DenseCoeffsBase.h │ │ │ ├── DenseStorage.h │ │ │ ├── Diagonal.h │ │ │ ├── DiagonalMatrix.h │ │ │ ├── DiagonalProduct.h │ │ │ ├── Dot.h │ │ │ ├── EigenBase.h │ │ │ ├── Flagged.h │ │ │ ├── ForceAlignedAccess.h │ │ │ ├── Functors.h │ │ │ ├── Fuzzy.h │ │ │ ├── GeneralProduct.h │ │ │ ├── GenericPacketMath.h │ │ │ ├── GlobalFunctions.h │ │ │ ├── IO.h │ │ │ ├── Map.h │ │ │ ├── MapBase.h │ │ │ ├── MathFunctions.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixBase.h │ │ │ ├── NestByValue.h │ │ │ ├── NoAlias.h │ │ │ ├── NumTraits.h │ │ │ ├── PermutationMatrix.h │ │ │ ├── PlainObjectBase.h │ │ │ ├── Product.h │ │ │ ├── ProductBase.h │ │ │ ├── Random.h │ │ │ ├── Redux.h │ │ │ ├── Ref.h │ │ │ ├── Replicate.h │ │ │ ├── ReturnByValue.h │ │ │ ├── Reverse.h │ │ │ ├── Select.h │ │ │ ├── SelfAdjointView.h │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ ├── SolveTriangular.h │ │ │ ├── StableNorm.h │ │ │ ├── Stride.h │ │ │ ├── Swap.h │ │ │ ├── Transpose.h │ │ │ ├── Transpositions.h │ │ │ ├── TriangularMatrix.h │ │ │ ├── VectorBlock.h │ │ │ ├── VectorwiseOp.h │ │ │ ├── Visitor.h │ │ │ ├── arch │ │ │ │ ├── AltiVec │ │ │ │ │ ├── Complex.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── Default │ │ │ │ │ └── Settings.h │ │ │ │ ├── NEON │ │ │ │ │ ├── Complex.h │ │ │ │ │ └── PacketMath.h │ │ │ │ └── SSE │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ ├── products │ │ │ │ ├── CoeffBasedProduct.h │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ ├── GeneralMatrixMatrixTriangular_MKL.h │ │ │ │ ├── GeneralMatrixMatrix_MKL.h │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ ├── GeneralMatrixVector_MKL.h │ │ │ │ ├── Parallelizer.h │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ ├── SelfadjointMatrixMatrix_MKL.h │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ ├── SelfadjointMatrixVector_MKL.h │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ ├── TriangularMatrixMatrix_MKL.h │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ ├── TriangularMatrixVector_MKL.h │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ ├── TriangularSolverMatrix_MKL.h │ │ │ │ └── TriangularSolverVector.h │ │ │ └── util │ │ │ │ ├── BlasUtil.h │ │ │ │ ├── Constants.h │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ ├── MKL_support.h │ │ │ │ ├── Macros.h │ │ │ │ ├── Memory.h │ │ │ │ ├── Meta.h │ │ │ │ ├── NonMPL2.h │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ ├── StaticAssert.h │ │ │ │ └── XprHelper.h │ │ │ ├── Eigen2Support │ │ │ ├── Block.h │ │ │ ├── Cwise.h │ │ │ ├── CwiseOperators.h │ │ │ ├── Geometry │ │ │ │ ├── AlignedBox.h │ │ │ │ ├── All.h │ │ │ │ ├── AngleAxis.h │ │ │ │ ├── Hyperplane.h │ │ │ │ ├── ParametrizedLine.h │ │ │ │ ├── Quaternion.h │ │ │ │ ├── Rotation2D.h │ │ │ │ ├── RotationBase.h │ │ │ │ ├── Scaling.h │ │ │ │ ├── Transform.h │ │ │ │ └── Translation.h │ │ │ ├── LU.h │ │ │ ├── Lazy.h │ │ │ ├── LeastSquares.h │ │ │ ├── Macros.h │ │ │ ├── MathFunctions.h │ │ │ ├── Memory.h │ │ │ ├── Meta.h │ │ │ ├── Minor.h │ │ │ ├── QR.h │ │ │ ├── SVD.h │ │ │ ├── TriangularSolver.h │ │ │ └── VectorBlock.h │ │ │ ├── Eigenvalues │ │ │ ├── ComplexEigenSolver.h │ │ │ ├── ComplexSchur.h │ │ │ ├── ComplexSchur_MKL.h │ │ │ ├── EigenSolver.h │ │ │ ├── GeneralizedEigenSolver.h │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ ├── HessenbergDecomposition.h │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ ├── RealQZ.h │ │ │ ├── RealSchur.h │ │ │ ├── RealSchur_MKL.h │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ ├── SelfAdjointEigenSolver_MKL.h │ │ │ └── Tridiagonalization.h │ │ │ ├── Geometry │ │ │ ├── AlignedBox.h │ │ │ ├── AngleAxis.h │ │ │ ├── EulerAngles.h │ │ │ ├── Homogeneous.h │ │ │ ├── Hyperplane.h │ │ │ ├── OrthoMethods.h │ │ │ ├── ParametrizedLine.h │ │ │ ├── Quaternion.h │ │ │ ├── Rotation2D.h │ │ │ ├── RotationBase.h │ │ │ ├── Scaling.h │ │ │ ├── Transform.h │ │ │ ├── Translation.h │ │ │ ├── Umeyama.h │ │ │ └── arch │ │ │ │ └── Geometry_SSE.h │ │ │ ├── Householder │ │ │ ├── BlockHouseholder.h │ │ │ ├── Householder.h │ │ │ └── HouseholderSequence.h │ │ │ ├── IterativeLinearSolvers │ │ │ ├── BasicPreconditioners.h │ │ │ ├── BiCGSTAB.h │ │ │ ├── ConjugateGradient.h │ │ │ ├── IncompleteLUT.h │ │ │ └── IterativeSolverBase.h │ │ │ ├── Jacobi │ │ │ └── Jacobi.h │ │ │ ├── LU │ │ │ ├── Determinant.h │ │ │ ├── FullPivLU.h │ │ │ ├── Inverse.h │ │ │ ├── PartialPivLU.h │ │ │ ├── PartialPivLU_MKL.h │ │ │ └── arch │ │ │ │ └── Inverse_SSE.h │ │ │ ├── MetisSupport │ │ │ └── MetisSupport.h │ │ │ ├── OrderingMethods │ │ │ ├── Amd.h │ │ │ ├── Eigen_Colamd.h │ │ │ └── Ordering.h │ │ │ ├── PaStiXSupport │ │ │ └── PaStiXSupport.h │ │ │ ├── PardisoSupport │ │ │ └── PardisoSupport.h │ │ │ ├── QR │ │ │ ├── ColPivHouseholderQR.h │ │ │ ├── ColPivHouseholderQR_MKL.h │ │ │ ├── FullPivHouseholderQR.h │ │ │ ├── HouseholderQR.h │ │ │ └── HouseholderQR_MKL.h │ │ │ ├── SPQRSupport │ │ │ └── SuiteSparseQRSupport.h │ │ │ ├── SVD │ │ │ ├── JacobiSVD.h │ │ │ ├── JacobiSVD_MKL.h │ │ │ └── UpperBidiagonalization.h │ │ │ ├── SparseCholesky │ │ │ ├── SimplicialCholesky.h │ │ │ └── SimplicialCholesky_impl.h │ │ │ ├── SparseCore │ │ │ ├── AmbiVector.h │ │ │ ├── CompressedStorage.h │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ ├── CoreIterators.h │ │ │ ├── MappedSparseMatrix.h │ │ │ ├── SparseAssign.h │ │ │ ├── SparseBlock.h │ │ │ ├── SparseColEtree.h │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ ├── SparseDenseProduct.h │ │ │ ├── SparseDiagonalProduct.h │ │ │ ├── SparseDot.h │ │ │ ├── SparseFuzzy.h │ │ │ ├── SparseMatrix.h │ │ │ ├── SparseMatrixBase.h │ │ │ ├── SparsePermutation.h │ │ │ ├── SparseProduct.h │ │ │ ├── SparseRedux.h │ │ │ ├── SparseSelfAdjointView.h │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ ├── SparseTranspose.h │ │ │ ├── SparseTriangularView.h │ │ │ ├── SparseUtil.h │ │ │ ├── SparseVector.h │ │ │ ├── SparseView.h │ │ │ └── TriangularSolver.h │ │ │ ├── SparseLU │ │ │ ├── SparseLU.h │ │ │ ├── SparseLUImpl.h │ │ │ ├── SparseLU_Memory.h │ │ │ ├── SparseLU_Structs.h │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ ├── SparseLU_Utils.h │ │ │ ├── SparseLU_column_bmod.h │ │ │ ├── SparseLU_column_dfs.h │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ ├── SparseLU_panel_bmod.h │ │ │ ├── SparseLU_panel_dfs.h │ │ │ ├── SparseLU_pivotL.h │ │ │ ├── SparseLU_pruneL.h │ │ │ └── SparseLU_relax_snode.h │ │ │ ├── SparseQR │ │ │ └── SparseQR.h │ │ │ ├── StlSupport │ │ │ ├── StdDeque.h │ │ │ ├── StdList.h │ │ │ ├── StdVector.h │ │ │ └── details.h │ │ │ ├── SuperLUSupport │ │ │ └── SuperLUSupport.h │ │ │ ├── UmfPackSupport │ │ │ └── UmfPackSupport.h │ │ │ ├── misc │ │ │ ├── Image.h │ │ │ ├── Kernel.h │ │ │ ├── Solve.h │ │ │ ├── SparseSolve.h │ │ │ └── blas.h │ │ │ └── plugins │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ ├── BlockMethods.h │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ └── MatrixCwiseUnaryOps.h │ ├── README.blender │ └── eigen-update.sh ├── binreloc │ ├── CMakeLists.txt │ ├── README.blender │ ├── binreloc.c │ └── include │ │ └── binreloc.h ├── bullet2 │ ├── CMakeLists.txt │ ├── patches │ │ └── blender.patch │ ├── readme.txt │ └── src │ │ ├── Bullet-C-Api.h │ │ ├── BulletCollision │ │ ├── BroadphaseCollision │ │ │ ├── btAxisSweep3.cpp │ │ │ ├── btAxisSweep3.h │ │ │ ├── btBroadphaseInterface.h │ │ │ ├── btBroadphaseProxy.cpp │ │ │ ├── btBroadphaseProxy.h │ │ │ ├── btCollisionAlgorithm.cpp │ │ │ ├── btCollisionAlgorithm.h │ │ │ ├── btDbvt.cpp │ │ │ ├── btDbvt.h │ │ │ ├── btDbvtBroadphase.cpp │ │ │ ├── btDbvtBroadphase.h │ │ │ ├── btDispatcher.cpp │ │ │ ├── btDispatcher.h │ │ │ ├── btMultiSapBroadphase.cpp │ │ │ ├── btMultiSapBroadphase.h │ │ │ ├── btOverlappingPairCache.cpp │ │ │ ├── btOverlappingPairCache.h │ │ │ ├── btOverlappingPairCallback.h │ │ │ ├── btQuantizedBvh.cpp │ │ │ ├── btQuantizedBvh.h │ │ │ ├── btSimpleBroadphase.cpp │ │ │ └── btSimpleBroadphase.h │ │ ├── CollisionDispatch │ │ │ ├── SphereTriangleDetector.cpp │ │ │ ├── SphereTriangleDetector.h │ │ │ ├── btActivatingCollisionAlgorithm.cpp │ │ │ ├── btActivatingCollisionAlgorithm.h │ │ │ ├── btBox2dBox2dCollisionAlgorithm.cpp │ │ │ ├── btBox2dBox2dCollisionAlgorithm.h │ │ │ ├── btBoxBoxCollisionAlgorithm.cpp │ │ │ ├── btBoxBoxCollisionAlgorithm.h │ │ │ ├── btBoxBoxDetector.cpp │ │ │ ├── btBoxBoxDetector.h │ │ │ ├── btCollisionConfiguration.h │ │ │ ├── btCollisionCreateFunc.h │ │ │ ├── btCollisionDispatcher.cpp │ │ │ ├── btCollisionDispatcher.h │ │ │ ├── btCollisionObject.cpp │ │ │ ├── btCollisionObject.h │ │ │ ├── btCollisionObjectWrapper.h │ │ │ ├── btCollisionWorld.cpp │ │ │ ├── btCollisionWorld.h │ │ │ ├── btCollisionWorldImporter.cpp │ │ │ ├── btCollisionWorldImporter.h │ │ │ ├── btCompoundCollisionAlgorithm.cpp │ │ │ ├── btCompoundCollisionAlgorithm.h │ │ │ ├── btCompoundCompoundCollisionAlgorithm.cpp │ │ │ ├── btCompoundCompoundCollisionAlgorithm.h │ │ │ ├── btConvex2dConvex2dAlgorithm.cpp │ │ │ ├── btConvex2dConvex2dAlgorithm.h │ │ │ ├── btConvexConcaveCollisionAlgorithm.cpp │ │ │ ├── btConvexConcaveCollisionAlgorithm.h │ │ │ ├── btConvexConvexAlgorithm.cpp │ │ │ ├── btConvexConvexAlgorithm.h │ │ │ ├── btConvexPlaneCollisionAlgorithm.cpp │ │ │ ├── btConvexPlaneCollisionAlgorithm.h │ │ │ ├── btDefaultCollisionConfiguration.cpp │ │ │ ├── btDefaultCollisionConfiguration.h │ │ │ ├── btEmptyCollisionAlgorithm.cpp │ │ │ ├── btEmptyCollisionAlgorithm.h │ │ │ ├── btGhostObject.cpp │ │ │ ├── btGhostObject.h │ │ │ ├── btHashedSimplePairCache.cpp │ │ │ ├── btHashedSimplePairCache.h │ │ │ ├── btInternalEdgeUtility.cpp │ │ │ ├── btInternalEdgeUtility.h │ │ │ ├── btManifoldResult.cpp │ │ │ ├── btManifoldResult.h │ │ │ ├── btSimulationIslandManager.cpp │ │ │ ├── btSimulationIslandManager.h │ │ │ ├── btSphereBoxCollisionAlgorithm.cpp │ │ │ ├── btSphereBoxCollisionAlgorithm.h │ │ │ ├── btSphereSphereCollisionAlgorithm.cpp │ │ │ ├── btSphereSphereCollisionAlgorithm.h │ │ │ ├── btSphereTriangleCollisionAlgorithm.cpp │ │ │ ├── btSphereTriangleCollisionAlgorithm.h │ │ │ ├── btUnionFind.cpp │ │ │ └── btUnionFind.h │ │ ├── CollisionShapes │ │ │ ├── btBox2dShape.cpp │ │ │ ├── btBox2dShape.h │ │ │ ├── btBoxShape.cpp │ │ │ ├── btBoxShape.h │ │ │ ├── btBvhTriangleMeshShape.cpp │ │ │ ├── btBvhTriangleMeshShape.h │ │ │ ├── btCapsuleShape.cpp │ │ │ ├── btCapsuleShape.h │ │ │ ├── btCollisionMargin.h │ │ │ ├── btCollisionShape.cpp │ │ │ ├── btCollisionShape.h │ │ │ ├── btCompoundShape.cpp │ │ │ ├── btCompoundShape.h │ │ │ ├── btConcaveShape.cpp │ │ │ ├── btConcaveShape.h │ │ │ ├── btConeShape.cpp │ │ │ ├── btConeShape.h │ │ │ ├── btConvex2dShape.cpp │ │ │ ├── btConvex2dShape.h │ │ │ ├── btConvexHullShape.cpp │ │ │ ├── btConvexHullShape.h │ │ │ ├── btConvexInternalShape.cpp │ │ │ ├── btConvexInternalShape.h │ │ │ ├── btConvexPointCloudShape.cpp │ │ │ ├── btConvexPointCloudShape.h │ │ │ ├── btConvexPolyhedron.cpp │ │ │ ├── btConvexPolyhedron.h │ │ │ ├── btConvexShape.cpp │ │ │ ├── btConvexShape.h │ │ │ ├── btConvexTriangleMeshShape.cpp │ │ │ ├── btConvexTriangleMeshShape.h │ │ │ ├── btCylinderShape.cpp │ │ │ ├── btCylinderShape.h │ │ │ ├── btEmptyShape.cpp │ │ │ ├── btEmptyShape.h │ │ │ ├── btHeightfieldTerrainShape.cpp │ │ │ ├── btHeightfieldTerrainShape.h │ │ │ ├── btMaterial.h │ │ │ ├── btMinkowskiSumShape.cpp │ │ │ ├── btMinkowskiSumShape.h │ │ │ ├── btMultiSphereShape.cpp │ │ │ ├── btMultiSphereShape.h │ │ │ ├── btMultimaterialTriangleMeshShape.cpp │ │ │ ├── btMultimaterialTriangleMeshShape.h │ │ │ ├── btOptimizedBvh.cpp │ │ │ ├── btOptimizedBvh.h │ │ │ ├── btPolyhedralConvexShape.cpp │ │ │ ├── btPolyhedralConvexShape.h │ │ │ ├── btScaledBvhTriangleMeshShape.cpp │ │ │ ├── btScaledBvhTriangleMeshShape.h │ │ │ ├── btShapeHull.cpp │ │ │ ├── btShapeHull.h │ │ │ ├── btSphereShape.cpp │ │ │ ├── btSphereShape.h │ │ │ ├── btStaticPlaneShape.cpp │ │ │ ├── btStaticPlaneShape.h │ │ │ ├── btStridingMeshInterface.cpp │ │ │ ├── btStridingMeshInterface.h │ │ │ ├── btTetrahedronShape.cpp │ │ │ ├── btTetrahedronShape.h │ │ │ ├── btTriangleBuffer.cpp │ │ │ ├── btTriangleBuffer.h │ │ │ ├── btTriangleCallback.cpp │ │ │ ├── btTriangleCallback.h │ │ │ ├── btTriangleIndexVertexArray.cpp │ │ │ ├── btTriangleIndexVertexArray.h │ │ │ ├── btTriangleIndexVertexMaterialArray.cpp │ │ │ ├── btTriangleIndexVertexMaterialArray.h │ │ │ ├── btTriangleInfoMap.h │ │ │ ├── btTriangleMesh.cpp │ │ │ ├── btTriangleMesh.h │ │ │ ├── btTriangleMeshShape.cpp │ │ │ ├── btTriangleMeshShape.h │ │ │ ├── btTriangleShape.h │ │ │ ├── btUniformScalingShape.cpp │ │ │ └── btUniformScalingShape.h │ │ ├── Gimpact │ │ │ ├── btBoxCollision.h │ │ │ ├── btClipPolygon.h │ │ │ ├── btCompoundFromGimpact.h │ │ │ ├── btContactProcessing.cpp │ │ │ ├── btContactProcessing.h │ │ │ ├── btGImpactBvh.cpp │ │ │ ├── btGImpactBvh.h │ │ │ ├── btGImpactCollisionAlgorithm.cpp │ │ │ ├── btGImpactCollisionAlgorithm.h │ │ │ ├── btGImpactMassUtil.h │ │ │ ├── btGImpactQuantizedBvh.cpp │ │ │ ├── btGImpactQuantizedBvh.h │ │ │ ├── btGImpactShape.cpp │ │ │ ├── btGImpactShape.h │ │ │ ├── btGenericPoolAllocator.cpp │ │ │ ├── btGenericPoolAllocator.h │ │ │ ├── btGeometryOperations.h │ │ │ ├── btQuantization.h │ │ │ ├── btTriangleShapeEx.cpp │ │ │ ├── btTriangleShapeEx.h │ │ │ ├── gim_array.h │ │ │ ├── gim_basic_geometry_operations.h │ │ │ ├── gim_bitset.h │ │ │ ├── gim_box_collision.h │ │ │ ├── gim_box_set.cpp │ │ │ ├── gim_box_set.h │ │ │ ├── gim_clip_polygon.h │ │ │ ├── gim_contact.cpp │ │ │ ├── gim_contact.h │ │ │ ├── gim_geom_types.h │ │ │ ├── gim_geometry.h │ │ │ ├── gim_hash_table.h │ │ │ ├── gim_linear_math.h │ │ │ ├── gim_math.h │ │ │ ├── gim_memory.cpp │ │ │ ├── gim_memory.h │ │ │ ├── gim_radixsort.h │ │ │ ├── gim_tri_collision.cpp │ │ │ └── gim_tri_collision.h │ │ └── NarrowPhaseCollision │ │ │ ├── btComputeGjkEpaPenetration.h │ │ │ ├── btContinuousConvexCollision.cpp │ │ │ ├── btContinuousConvexCollision.h │ │ │ ├── btConvexCast.cpp │ │ │ ├── btConvexCast.h │ │ │ ├── btConvexPenetrationDepthSolver.h │ │ │ ├── btDiscreteCollisionDetectorInterface.h │ │ │ ├── btGjkCollisionDescription.h │ │ │ ├── btGjkConvexCast.cpp │ │ │ ├── btGjkConvexCast.h │ │ │ ├── btGjkEpa2.cpp │ │ │ ├── btGjkEpa2.h │ │ │ ├── btGjkEpa3.h │ │ │ ├── btGjkEpaPenetrationDepthSolver.cpp │ │ │ ├── btGjkEpaPenetrationDepthSolver.h │ │ │ ├── btGjkPairDetector.cpp │ │ │ ├── btGjkPairDetector.h │ │ │ ├── btManifoldPoint.h │ │ │ ├── btMinkowskiPenetrationDepthSolver.cpp │ │ │ ├── btMinkowskiPenetrationDepthSolver.h │ │ │ ├── btMprPenetration.h │ │ │ ├── btPersistentManifold.cpp │ │ │ ├── btPersistentManifold.h │ │ │ ├── btPointCollector.h │ │ │ ├── btPolyhedralContactClipping.cpp │ │ │ ├── btPolyhedralContactClipping.h │ │ │ ├── btRaycastCallback.cpp │ │ │ ├── btRaycastCallback.h │ │ │ ├── btSimplexSolverInterface.h │ │ │ ├── btSubSimplexConvexCast.cpp │ │ │ ├── btSubSimplexConvexCast.h │ │ │ ├── btVoronoiSimplexSolver.cpp │ │ │ └── btVoronoiSimplexSolver.h │ │ ├── BulletDynamics │ │ ├── Character │ │ │ ├── btCharacterControllerInterface.h │ │ │ ├── btKinematicCharacterController.cpp │ │ │ └── btKinematicCharacterController.h │ │ ├── ConstraintSolver │ │ │ ├── btConeTwistConstraint.cpp │ │ │ ├── btConeTwistConstraint.h │ │ │ ├── btConstraintSolver.h │ │ │ ├── btContactConstraint.cpp │ │ │ ├── btContactConstraint.h │ │ │ ├── btContactSolverInfo.h │ │ │ ├── btFixedConstraint.cpp │ │ │ ├── btFixedConstraint.h │ │ │ ├── btGearConstraint.cpp │ │ │ ├── btGearConstraint.h │ │ │ ├── btGeneric6DofConstraint.cpp │ │ │ ├── btGeneric6DofConstraint.h │ │ │ ├── btGeneric6DofSpring2Constraint.cpp │ │ │ ├── btGeneric6DofSpring2Constraint.h │ │ │ ├── btGeneric6DofSpringConstraint.cpp │ │ │ ├── btGeneric6DofSpringConstraint.h │ │ │ ├── btHinge2Constraint.cpp │ │ │ ├── btHinge2Constraint.h │ │ │ ├── btHingeConstraint.cpp │ │ │ ├── btHingeConstraint.h │ │ │ ├── btJacobianEntry.h │ │ │ ├── btNNCGConstraintSolver.cpp │ │ │ ├── btNNCGConstraintSolver.h │ │ │ ├── btPoint2PointConstraint.cpp │ │ │ ├── btPoint2PointConstraint.h │ │ │ ├── btSequentialImpulseConstraintSolver.cpp │ │ │ ├── btSequentialImpulseConstraintSolver.h │ │ │ ├── btSliderConstraint.cpp │ │ │ ├── btSliderConstraint.h │ │ │ ├── btSolve2LinearConstraint.cpp │ │ │ ├── btSolve2LinearConstraint.h │ │ │ ├── btSolverBody.h │ │ │ ├── btSolverConstraint.h │ │ │ ├── btTypedConstraint.cpp │ │ │ ├── btTypedConstraint.h │ │ │ ├── btUniversalConstraint.cpp │ │ │ └── btUniversalConstraint.h │ │ ├── Dynamics │ │ │ ├── Bullet-C-API.cpp │ │ │ ├── btActionInterface.h │ │ │ ├── btDiscreteDynamicsWorld.cpp │ │ │ ├── btDiscreteDynamicsWorld.h │ │ │ ├── btDynamicsWorld.h │ │ │ ├── btRigidBody.cpp │ │ │ ├── btRigidBody.h │ │ │ ├── btSimpleDynamicsWorld.cpp │ │ │ └── btSimpleDynamicsWorld.h │ │ ├── Featherstone │ │ │ ├── btMultiBody.cpp │ │ │ ├── btMultiBody.h │ │ │ ├── btMultiBodyConstraint.cpp │ │ │ ├── btMultiBodyConstraint.h │ │ │ ├── btMultiBodyConstraintSolver.cpp │ │ │ ├── btMultiBodyConstraintSolver.h │ │ │ ├── btMultiBodyDynamicsWorld.cpp │ │ │ ├── btMultiBodyDynamicsWorld.h │ │ │ ├── btMultiBodyJointFeedback.h │ │ │ ├── btMultiBodyJointLimitConstraint.cpp │ │ │ ├── btMultiBodyJointLimitConstraint.h │ │ │ ├── btMultiBodyJointMotor.cpp │ │ │ ├── btMultiBodyJointMotor.h │ │ │ ├── btMultiBodyLink.h │ │ │ ├── btMultiBodyLinkCollider.h │ │ │ ├── btMultiBodyPoint2Point.cpp │ │ │ ├── btMultiBodyPoint2Point.h │ │ │ └── btMultiBodySolverConstraint.h │ │ ├── MLCPSolvers │ │ │ ├── btDantzigLCP.cpp │ │ │ ├── btDantzigLCP.h │ │ │ ├── btDantzigSolver.h │ │ │ ├── btLemkeAlgorithm.cpp │ │ │ ├── btLemkeAlgorithm.h │ │ │ ├── btLemkeSolver.h │ │ │ ├── btMLCPSolver.cpp │ │ │ ├── btMLCPSolver.h │ │ │ ├── btMLCPSolverInterface.h │ │ │ ├── btPATHSolver.h │ │ │ └── btSolveProjectedGaussSeidel.h │ │ └── Vehicle │ │ │ ├── btRaycastVehicle.cpp │ │ │ ├── btRaycastVehicle.h │ │ │ ├── btVehicleRaycaster.h │ │ │ ├── btWheelInfo.cpp │ │ │ └── btWheelInfo.h │ │ ├── BulletSoftBody │ │ ├── btDefaultSoftBodySolver.cpp │ │ ├── btDefaultSoftBodySolver.h │ │ ├── btSoftBody.cpp │ │ ├── btSoftBody.h │ │ ├── btSoftBodyConcaveCollisionAlgorithm.cpp │ │ ├── btSoftBodyConcaveCollisionAlgorithm.h │ │ ├── btSoftBodyData.h │ │ ├── btSoftBodyHelpers.cpp │ │ ├── btSoftBodyHelpers.h │ │ ├── btSoftBodyInternals.h │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.cpp │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.h │ │ ├── btSoftBodySolverVertexBuffer.h │ │ ├── btSoftBodySolvers.h │ │ ├── btSoftRigidCollisionAlgorithm.cpp │ │ ├── btSoftRigidCollisionAlgorithm.h │ │ ├── btSoftRigidDynamicsWorld.cpp │ │ ├── btSoftRigidDynamicsWorld.h │ │ ├── btSoftSoftCollisionAlgorithm.cpp │ │ ├── btSoftSoftCollisionAlgorithm.h │ │ └── btSparseSDF.h │ │ ├── LinearMath │ │ ├── btAabbUtil2.h │ │ ├── btAlignedAllocator.cpp │ │ ├── btAlignedAllocator.h │ │ ├── btAlignedObjectArray.h │ │ ├── btConvexHull.cpp │ │ ├── btConvexHull.h │ │ ├── btConvexHullComputer.cpp │ │ ├── btConvexHullComputer.h │ │ ├── btCpuFeatureUtility.h │ │ ├── btDefaultMotionState.h │ │ ├── btGeometryUtil.cpp │ │ ├── btGeometryUtil.h │ │ ├── btGrahamScan2dConvexHull.h │ │ ├── btHashMap.h │ │ ├── btIDebugDraw.h │ │ ├── btList.h │ │ ├── btMatrix3x3.h │ │ ├── btMatrixX.h │ │ ├── btMinMax.h │ │ ├── btMotionState.h │ │ ├── btPolarDecomposition.cpp │ │ ├── btPolarDecomposition.h │ │ ├── btPoolAllocator.h │ │ ├── btQuadWord.h │ │ ├── btQuaternion.h │ │ ├── btQuickprof.cpp │ │ ├── btQuickprof.h │ │ ├── btRandom.h │ │ ├── btScalar.h │ │ ├── btSerializer.cpp │ │ ├── btSerializer.h │ │ ├── btSpatialAlgebra.h │ │ ├── btStackAlloc.h │ │ ├── btTransform.h │ │ ├── btTransformUtil.h │ │ ├── btVector3.cpp │ │ └── btVector3.h │ │ ├── btBulletCollisionCommon.h │ │ └── btBulletDynamicsCommon.h ├── carve │ ├── CMakeLists.txt │ ├── LICENSE.GPL2 │ ├── LICENSE.GPL3 │ ├── README.blender │ ├── bundle.sh │ ├── carve-capi.cc │ ├── carve-capi.h │ ├── carve-util.cc │ ├── carve-util.h │ ├── files.txt │ ├── include │ │ └── carve │ │ │ ├── aabb.hpp │ │ │ ├── aabb_impl.hpp │ │ │ ├── carve.hpp │ │ │ ├── cbrt.h │ │ │ ├── classification.hpp │ │ │ ├── collection.hpp │ │ │ ├── collection │ │ │ ├── unordered.hpp │ │ │ └── unordered │ │ │ │ ├── boost_impl.hpp │ │ │ │ ├── fallback_impl.hpp │ │ │ │ ├── libstdcpp_impl.hpp │ │ │ │ ├── std_impl.hpp │ │ │ │ ├── tr1_impl.hpp │ │ │ │ └── vcpp_impl.hpp │ │ │ ├── collection_types.hpp │ │ │ ├── colour.hpp │ │ │ ├── config.h │ │ │ ├── convex_hull.hpp │ │ │ ├── csg.hpp │ │ │ ├── csg_triangulator.hpp │ │ │ ├── debug_hooks.hpp │ │ │ ├── djset.hpp │ │ │ ├── edge_decl.hpp │ │ │ ├── edge_impl.hpp │ │ │ ├── exact.hpp │ │ │ ├── face_decl.hpp │ │ │ ├── face_impl.hpp │ │ │ ├── faceloop.hpp │ │ │ ├── geom.hpp │ │ │ ├── geom2d.hpp │ │ │ ├── geom3d.hpp │ │ │ ├── geom_impl.hpp │ │ │ ├── gnu_cxx.h │ │ │ ├── heap.hpp │ │ │ ├── input.hpp │ │ │ ├── interpolator.hpp │ │ │ ├── intersection.hpp │ │ │ ├── iobj.hpp │ │ │ ├── kd_node.hpp │ │ │ ├── math.hpp │ │ │ ├── math_constants.hpp │ │ │ ├── matrix.hpp │ │ │ ├── mesh.hpp │ │ │ ├── mesh_impl.hpp │ │ │ ├── mesh_ops.hpp │ │ │ ├── mesh_simplify.hpp │ │ │ ├── octree_decl.hpp │ │ │ ├── octree_impl.hpp │ │ │ ├── pointset.hpp │ │ │ ├── pointset_decl.hpp │ │ │ ├── pointset_impl.hpp │ │ │ ├── pointset_iter.hpp │ │ │ ├── poly.hpp │ │ │ ├── poly_decl.hpp │ │ │ ├── poly_impl.hpp │ │ │ ├── polyhedron_base.hpp │ │ │ ├── polyhedron_decl.hpp │ │ │ ├── polyhedron_impl.hpp │ │ │ ├── polyline.hpp │ │ │ ├── polyline_decl.hpp │ │ │ ├── polyline_impl.hpp │ │ │ ├── polyline_iter.hpp │ │ │ ├── random │ │ │ └── random.h │ │ │ ├── rescale.hpp │ │ │ ├── rtree.hpp │ │ │ ├── spacetree.hpp │ │ │ ├── tag.hpp │ │ │ ├── timing.hpp │ │ │ ├── tree.hpp │ │ │ ├── triangle_intersection.hpp │ │ │ ├── triangulator.hpp │ │ │ ├── triangulator_impl.hpp │ │ │ ├── util.hpp │ │ │ ├── vcpp_config.h │ │ │ ├── vector.hpp │ │ │ ├── vertex_decl.hpp │ │ │ ├── vertex_impl.hpp │ │ │ └── win32.h │ ├── lib │ │ ├── carve.cpp │ │ ├── convex_hull.cpp │ │ ├── csg.cpp │ │ ├── csg_collector.cpp │ │ ├── csg_collector.hpp │ │ ├── csg_data.hpp │ │ ├── csg_detail.hpp │ │ ├── face.cpp │ │ ├── geom2d.cpp │ │ ├── geom3d.cpp │ │ ├── intersect.cpp │ │ ├── intersect_classify_common.hpp │ │ ├── intersect_classify_common_impl.hpp │ │ ├── intersect_classify_edge.cpp │ │ ├── intersect_classify_group.cpp │ │ ├── intersect_common.hpp │ │ ├── intersect_debug.cpp │ │ ├── intersect_debug.hpp │ │ ├── intersect_face_division.cpp │ │ ├── intersect_group.cpp │ │ ├── intersect_half_classify_group.cpp │ │ ├── intersection.cpp │ │ ├── math.cpp │ │ ├── mesh.cpp │ │ ├── octree.cpp │ │ ├── pointset.cpp │ │ ├── polyhedron.cpp │ │ ├── polyline.cpp │ │ ├── tag.cpp │ │ ├── timing.cpp │ │ └── triangulator.cpp │ ├── mkfiles.sh │ └── patches │ │ ├── clang_is_heap_fix.patch │ │ ├── face_hole_merge_workaround.patch │ │ ├── files │ │ ├── config.h │ │ └── random.h │ │ ├── gcc46.patch │ │ ├── includes.patch │ │ ├── interpolator_reorder.patch │ │ ├── memory_leak_fix.patch │ │ ├── mesh_iterator.patch │ │ ├── mesh_simplify_dissolve_edges.patch │ │ ├── mesh_simplify_uninitialized_var.patch │ │ ├── mingw.patch │ │ ├── mingw_w64.patch │ │ ├── msvc_fix.patch │ │ ├── random.patch │ │ ├── series │ │ ├── strict_flags.patch │ │ └── win32.patch ├── ceres │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── LICENSE │ ├── README │ ├── README.blender │ ├── bundle.sh │ ├── config │ │ └── ceres │ │ │ └── internal │ │ │ └── config.h │ ├── files.txt │ ├── include │ │ └── ceres │ │ │ ├── autodiff_cost_function.h │ │ │ ├── autodiff_local_parameterization.h │ │ │ ├── c_api.h │ │ │ ├── ceres.h │ │ │ ├── conditioned_cost_function.h │ │ │ ├── cost_function.h │ │ │ ├── cost_function_to_functor.h │ │ │ ├── covariance.h │ │ │ ├── crs_matrix.h │ │ │ ├── dynamic_autodiff_cost_function.h │ │ │ ├── dynamic_cost_function_to_functor.h │ │ │ ├── dynamic_numeric_diff_cost_function.h │ │ │ ├── fpclassify.h │ │ │ ├── gradient_checker.h │ │ │ ├── gradient_problem.h │ │ │ ├── gradient_problem_solver.h │ │ │ ├── internal │ │ │ ├── autodiff.h │ │ │ ├── disable_warnings.h │ │ │ ├── eigen.h │ │ │ ├── fixed_array.h │ │ │ ├── macros.h │ │ │ ├── manual_constructor.h │ │ │ ├── numeric_diff.h │ │ │ ├── port.h │ │ │ ├── reenable_warnings.h │ │ │ ├── scoped_ptr.h │ │ │ └── variadic_evaluate.h │ │ │ ├── iteration_callback.h │ │ │ ├── jet.h │ │ │ ├── local_parameterization.h │ │ │ ├── loss_function.h │ │ │ ├── normal_prior.h │ │ │ ├── numeric_diff_cost_function.h │ │ │ ├── numeric_diff_options.h │ │ │ ├── ordered_groups.h │ │ │ ├── problem.h │ │ │ ├── rotation.h │ │ │ ├── sized_cost_function.h │ │ │ ├── solver.h │ │ │ ├── types.h │ │ │ └── version.h │ ├── internal │ │ └── ceres │ │ │ ├── array_utils.cc │ │ │ ├── array_utils.h │ │ │ ├── blas.cc │ │ │ ├── blas.h │ │ │ ├── block_evaluate_preparer.cc │ │ │ ├── block_evaluate_preparer.h │ │ │ ├── block_jacobi_preconditioner.cc │ │ │ ├── block_jacobi_preconditioner.h │ │ │ ├── block_jacobian_writer.cc │ │ │ ├── block_jacobian_writer.h │ │ │ ├── block_random_access_dense_matrix.cc │ │ │ ├── block_random_access_dense_matrix.h │ │ │ ├── block_random_access_diagonal_matrix.cc │ │ │ ├── block_random_access_diagonal_matrix.h │ │ │ ├── block_random_access_matrix.cc │ │ │ ├── block_random_access_matrix.h │ │ │ ├── block_random_access_sparse_matrix.cc │ │ │ ├── block_random_access_sparse_matrix.h │ │ │ ├── block_sparse_matrix.cc │ │ │ ├── block_sparse_matrix.h │ │ │ ├── block_structure.cc │ │ │ ├── block_structure.h │ │ │ ├── c_api.cc │ │ │ ├── callbacks.cc │ │ │ ├── callbacks.h │ │ │ ├── casts.h │ │ │ ├── cgnr_linear_operator.h │ │ │ ├── cgnr_solver.cc │ │ │ ├── cgnr_solver.h │ │ │ ├── collections_port.h │ │ │ ├── compressed_col_sparse_matrix_utils.cc │ │ │ ├── compressed_col_sparse_matrix_utils.h │ │ │ ├── compressed_row_jacobian_writer.cc │ │ │ ├── compressed_row_jacobian_writer.h │ │ │ ├── compressed_row_sparse_matrix.cc │ │ │ ├── compressed_row_sparse_matrix.h │ │ │ ├── conditioned_cost_function.cc │ │ │ ├── conjugate_gradients_solver.cc │ │ │ ├── conjugate_gradients_solver.h │ │ │ ├── coordinate_descent_minimizer.cc │ │ │ ├── coordinate_descent_minimizer.h │ │ │ ├── corrector.cc │ │ │ ├── corrector.h │ │ │ ├── covariance.cc │ │ │ ├── covariance_impl.cc │ │ │ ├── covariance_impl.h │ │ │ ├── cxsparse.h │ │ │ ├── dense_jacobian_writer.h │ │ │ ├── dense_normal_cholesky_solver.cc │ │ │ ├── dense_normal_cholesky_solver.h │ │ │ ├── dense_qr_solver.cc │ │ │ ├── dense_qr_solver.h │ │ │ ├── dense_sparse_matrix.cc │ │ │ ├── dense_sparse_matrix.h │ │ │ ├── detect_structure.cc │ │ │ ├── detect_structure.h │ │ │ ├── dogleg_strategy.cc │ │ │ ├── dogleg_strategy.h │ │ │ ├── dynamic_compressed_row_finalizer.h │ │ │ ├── dynamic_compressed_row_jacobian_writer.cc │ │ │ ├── dynamic_compressed_row_jacobian_writer.h │ │ │ ├── dynamic_compressed_row_sparse_matrix.cc │ │ │ ├── dynamic_compressed_row_sparse_matrix.h │ │ │ ├── evaluator.cc │ │ │ ├── evaluator.h │ │ │ ├── execution_summary.h │ │ │ ├── file.cc │ │ │ ├── file.h │ │ │ ├── generate_eliminator_specialization.py │ │ │ ├── generate_partitioned_matrix_view_specializations.py │ │ │ ├── generated │ │ │ ├── partitioned_matrix_view_2_2_2.cc │ │ │ ├── partitioned_matrix_view_2_2_3.cc │ │ │ ├── partitioned_matrix_view_2_2_4.cc │ │ │ ├── partitioned_matrix_view_2_2_d.cc │ │ │ ├── partitioned_matrix_view_2_3_3.cc │ │ │ ├── partitioned_matrix_view_2_3_4.cc │ │ │ ├── partitioned_matrix_view_2_3_6.cc │ │ │ ├── partitioned_matrix_view_2_3_9.cc │ │ │ ├── partitioned_matrix_view_2_3_d.cc │ │ │ ├── partitioned_matrix_view_2_4_3.cc │ │ │ ├── partitioned_matrix_view_2_4_4.cc │ │ │ ├── partitioned_matrix_view_2_4_8.cc │ │ │ ├── partitioned_matrix_view_2_4_9.cc │ │ │ ├── partitioned_matrix_view_2_4_d.cc │ │ │ ├── partitioned_matrix_view_2_d_d.cc │ │ │ ├── partitioned_matrix_view_4_4_2.cc │ │ │ ├── partitioned_matrix_view_4_4_3.cc │ │ │ ├── partitioned_matrix_view_4_4_4.cc │ │ │ ├── partitioned_matrix_view_4_4_d.cc │ │ │ ├── partitioned_matrix_view_d_d_d.cc │ │ │ ├── schur_eliminator_2_2_2.cc │ │ │ ├── schur_eliminator_2_2_3.cc │ │ │ ├── schur_eliminator_2_2_4.cc │ │ │ ├── schur_eliminator_2_2_d.cc │ │ │ ├── schur_eliminator_2_3_3.cc │ │ │ ├── schur_eliminator_2_3_4.cc │ │ │ ├── schur_eliminator_2_3_6.cc │ │ │ ├── schur_eliminator_2_3_9.cc │ │ │ ├── schur_eliminator_2_3_d.cc │ │ │ ├── schur_eliminator_2_4_3.cc │ │ │ ├── schur_eliminator_2_4_4.cc │ │ │ ├── schur_eliminator_2_4_8.cc │ │ │ ├── schur_eliminator_2_4_9.cc │ │ │ ├── schur_eliminator_2_4_d.cc │ │ │ ├── schur_eliminator_2_d_d.cc │ │ │ ├── schur_eliminator_4_4_2.cc │ │ │ ├── schur_eliminator_4_4_3.cc │ │ │ ├── schur_eliminator_4_4_4.cc │ │ │ ├── schur_eliminator_4_4_d.cc │ │ │ └── schur_eliminator_d_d_d.cc │ │ │ ├── gradient_checker.cc │ │ │ ├── gradient_checking_cost_function.cc │ │ │ ├── gradient_checking_cost_function.h │ │ │ ├── gradient_problem.cc │ │ │ ├── gradient_problem_evaluator.h │ │ │ ├── gradient_problem_solver.cc │ │ │ ├── graph.h │ │ │ ├── graph_algorithms.h │ │ │ ├── householder_vector.h │ │ │ ├── implicit_schur_complement.cc │ │ │ ├── implicit_schur_complement.h │ │ │ ├── integral_types.h │ │ │ ├── is_close.cc │ │ │ ├── is_close.h │ │ │ ├── iterative_schur_complement_solver.cc │ │ │ ├── iterative_schur_complement_solver.h │ │ │ ├── lapack.cc │ │ │ ├── lapack.h │ │ │ ├── levenberg_marquardt_strategy.cc │ │ │ ├── levenberg_marquardt_strategy.h │ │ │ ├── line_search.cc │ │ │ ├── line_search.h │ │ │ ├── line_search_direction.cc │ │ │ ├── line_search_direction.h │ │ │ ├── line_search_minimizer.cc │ │ │ ├── line_search_minimizer.h │ │ │ ├── line_search_preprocessor.cc │ │ │ ├── line_search_preprocessor.h │ │ │ ├── linear_least_squares_problems.cc │ │ │ ├── linear_least_squares_problems.h │ │ │ ├── linear_operator.cc │ │ │ ├── linear_operator.h │ │ │ ├── linear_solver.cc │ │ │ ├── linear_solver.h │ │ │ ├── local_parameterization.cc │ │ │ ├── loss_function.cc │ │ │ ├── low_rank_inverse_hessian.cc │ │ │ ├── low_rank_inverse_hessian.h │ │ │ ├── map_util.h │ │ │ ├── minimizer.cc │ │ │ ├── minimizer.h │ │ │ ├── mutex.h │ │ │ ├── normal_prior.cc │ │ │ ├── parameter_block.h │ │ │ ├── parameter_block_ordering.cc │ │ │ ├── parameter_block_ordering.h │ │ │ ├── partitioned_matrix_view.cc │ │ │ ├── partitioned_matrix_view.h │ │ │ ├── partitioned_matrix_view_impl.h │ │ │ ├── polynomial.cc │ │ │ ├── polynomial.h │ │ │ ├── preconditioner.cc │ │ │ ├── preconditioner.h │ │ │ ├── preprocessor.cc │ │ │ ├── preprocessor.h │ │ │ ├── problem.cc │ │ │ ├── problem_impl.cc │ │ │ ├── problem_impl.h │ │ │ ├── program.cc │ │ │ ├── program.h │ │ │ ├── program_evaluator.h │ │ │ ├── random.h │ │ │ ├── reorder_program.cc │ │ │ ├── reorder_program.h │ │ │ ├── residual_block.cc │ │ │ ├── residual_block.h │ │ │ ├── residual_block_utils.cc │ │ │ ├── residual_block_utils.h │ │ │ ├── schur_complement_solver.cc │ │ │ ├── schur_complement_solver.h │ │ │ ├── schur_eliminator.cc │ │ │ ├── schur_eliminator.h │ │ │ ├── schur_eliminator_impl.h │ │ │ ├── schur_jacobi_preconditioner.cc │ │ │ ├── schur_jacobi_preconditioner.h │ │ │ ├── scratch_evaluate_preparer.cc │ │ │ ├── scratch_evaluate_preparer.h │ │ │ ├── small_blas.h │ │ │ ├── solver.cc │ │ │ ├── solver_utils.cc │ │ │ ├── solver_utils.h │ │ │ ├── sparse_matrix.cc │ │ │ ├── sparse_matrix.h │ │ │ ├── sparse_normal_cholesky_solver.cc │ │ │ ├── sparse_normal_cholesky_solver.h │ │ │ ├── split.cc │ │ │ ├── split.h │ │ │ ├── stl_util.h │ │ │ ├── stringprintf.cc │ │ │ ├── stringprintf.h │ │ │ ├── suitesparse.h │ │ │ ├── triplet_sparse_matrix.cc │ │ │ ├── triplet_sparse_matrix.h │ │ │ ├── trust_region_minimizer.cc │ │ │ ├── trust_region_minimizer.h │ │ │ ├── trust_region_preprocessor.cc │ │ │ ├── trust_region_preprocessor.h │ │ │ ├── trust_region_step_evaluator.cc │ │ │ ├── trust_region_step_evaluator.h │ │ │ ├── trust_region_strategy.cc │ │ │ ├── trust_region_strategy.h │ │ │ ├── types.cc │ │ │ ├── visibility_based_preconditioner.h │ │ │ ├── wall_time.cc │ │ │ └── wall_time.h │ ├── mkfiles.sh │ └── patches │ │ └── series ├── clew │ ├── CMakeLists.txt │ ├── README.blender │ ├── include │ │ └── clew.h │ └── src │ │ └── clew.c ├── cuew │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README │ ├── README.blender │ ├── include │ │ └── cuew.h │ └── src │ │ └── cuew.c ├── curve_fit_nd │ ├── CMakeLists.txt │ ├── README.blender │ ├── curve_fit_nd.h │ └── intern │ │ ├── curve_fit_corners_detect.c │ │ ├── curve_fit_cubic.c │ │ ├── curve_fit_cubic_refit.c │ │ ├── curve_fit_inline.h │ │ ├── generic_alloc_impl.h │ │ ├── generic_heap.c │ │ └── generic_heap.h ├── gflags │ ├── AUTHORS.txt │ ├── CMakeLists.txt │ ├── COPYING.txt │ ├── ChangeLog.txt │ ├── NEWS.txt │ ├── README.blender │ ├── README.md │ └── src │ │ ├── config.h │ │ ├── gflags.cc │ │ ├── gflags │ │ ├── gflags.h │ │ ├── gflags_completions.h │ │ ├── gflags_declare.h │ │ └── gflags_gflags.h │ │ ├── gflags_completions.cc │ │ ├── gflags_reporting.cc │ │ ├── mutex.h │ │ ├── util.h │ │ ├── windows_port.cc │ │ └── windows_port.h ├── glew-es │ ├── CMakeLists.txt │ ├── include │ │ └── GL │ │ │ ├── eglew.h │ │ │ ├── glesew.h │ │ │ ├── glew.h │ │ │ ├── glxew.h │ │ │ └── wglew.h │ └── src │ │ └── glew.c ├── glew │ ├── CMakeLists.txt │ ├── include │ │ └── GL │ │ │ ├── glew.h │ │ │ ├── glxew.h │ │ │ └── wglew.h │ └── src │ │ └── glew.c ├── glog │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── NEWS │ ├── README │ ├── README.blender │ └── src │ │ ├── base │ │ ├── commandlineflags.h │ │ ├── googleinit.h │ │ └── mutex.h │ │ ├── config.h │ │ ├── config_freebsd.h │ │ ├── config_hurd.h │ │ ├── config_linux.h │ │ ├── config_mac.h │ │ ├── demangle.cc │ │ ├── demangle.h │ │ ├── glog │ │ ├── log_severity.h │ │ ├── logging.h │ │ ├── raw_logging.h │ │ └── vlog_is_on.h │ │ ├── logging.cc │ │ ├── raw_logging.cc │ │ ├── signalhandler.cc │ │ ├── stacktrace.h │ │ ├── stacktrace_generic-inl.h │ │ ├── stacktrace_libunwind-inl.h │ │ ├── stacktrace_powerpc-inl.h │ │ ├── stacktrace_x86-inl.h │ │ ├── stacktrace_x86_64-inl.h │ │ ├── symbolize.cc │ │ ├── symbolize.h │ │ ├── utilities.cc │ │ ├── utilities.h │ │ ├── vlog_is_on.cc │ │ └── windows │ │ ├── config.h │ │ ├── glog │ │ ├── log_severity.h │ │ ├── logging.h │ │ ├── raw_logging.h │ │ └── vlog_is_on.h │ │ ├── port.cc │ │ ├── port.h │ │ └── preprocess.sh ├── gmock │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.blender │ ├── README.md │ ├── include │ │ └── gmock │ │ │ ├── gmock-actions.h │ │ │ ├── gmock-cardinalities.h │ │ │ ├── gmock-generated-actions.h │ │ │ ├── gmock-generated-function-mockers.h │ │ │ ├── gmock-generated-matchers.h │ │ │ ├── gmock-generated-nice-strict.h │ │ │ ├── gmock-matchers.h │ │ │ ├── gmock-more-actions.h │ │ │ ├── gmock-more-matchers.h │ │ │ ├── gmock-spec-builders.h │ │ │ ├── gmock.h │ │ │ └── internal │ │ │ ├── custom │ │ │ ├── gmock-generated-actions.h │ │ │ ├── gmock-matchers.h │ │ │ └── gmock-port.h │ │ │ ├── gmock-generated-internal-utils.h │ │ │ ├── gmock-internal-utils.h │ │ │ └── gmock-port.h │ └── src │ │ ├── gmock-all.cc │ │ ├── gmock-cardinalities.cc │ │ ├── gmock-internal-utils.cc │ │ ├── gmock-matchers.cc │ │ ├── gmock-spec-builders.cc │ │ ├── gmock.cc │ │ └── gmock_main.cc ├── gtest │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.blender │ ├── include │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── custom │ │ │ ├── gtest-port.h │ │ │ ├── gtest-printers.h │ │ │ └── gtest.h │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port-arch.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ └── gtest-type-util.h │ └── src │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc ├── libopenjpeg │ ├── CMakeLists.txt │ ├── README.blender │ ├── bio.c │ ├── bio.h │ ├── cidx_manager.c │ ├── cidx_manager.h │ ├── cio.c │ ├── cio.h │ ├── dwt.c │ ├── dwt.h │ ├── event.c │ ├── event.h │ ├── fix.h │ ├── image.c │ ├── image.h │ ├── indexbox_manager.h │ ├── int.h │ ├── j2k.c │ ├── j2k.h │ ├── j2k_lib.c │ ├── j2k_lib.h │ ├── jp2.c │ ├── jp2.h │ ├── jpt.c │ ├── jpt.h │ ├── license.txt │ ├── mct.c │ ├── mct.h │ ├── mqc.c │ ├── mqc.h │ ├── openjpeg.c │ ├── openjpeg.h │ ├── opj_config.h │ ├── opj_includes.h │ ├── opj_malloc.h │ ├── phix_manager.c │ ├── pi.c │ ├── pi.h │ ├── ppix_manager.c │ ├── raw.c │ ├── raw.h │ ├── t1.c │ ├── t1.h │ ├── t1_luts.h │ ├── t2.c │ ├── t2.h │ ├── tcd.c │ ├── tcd.h │ ├── tgt.c │ ├── tgt.h │ ├── thix_manager.c │ └── tpix_manager.c ├── lzma │ ├── Alloc.c │ ├── Alloc.h │ ├── CMakeLists.txt │ ├── LzFind.c │ ├── LzFind.h │ ├── LzHash.h │ ├── LzmaDec.c │ ├── LzmaDec.h │ ├── LzmaEnc.c │ ├── LzmaEnc.h │ ├── LzmaLib.c │ ├── LzmaLib.h │ ├── Types.h │ ├── history.txt │ └── lzma.txt ├── lzo │ ├── CMakeLists.txt │ └── minilzo │ │ ├── COPYING │ │ ├── README.LZO │ │ ├── lzoconf.h │ │ ├── lzodefs.h │ │ ├── minilzo.c │ │ └── minilzo.h ├── rangetree │ ├── CMakeLists.txt │ ├── README.blender │ ├── intern │ │ ├── generic_alloc_impl.h │ │ └── range_tree.c │ └── range_tree.h ├── recastnavigation │ ├── CMakeLists.txt │ ├── Detour │ │ ├── Include │ │ │ ├── DetourCommon.h │ │ │ ├── DetourNode.h │ │ │ ├── DetourStatNavMesh.h │ │ │ ├── DetourStatNavMeshBuilder.h │ │ │ ├── DetourTileNavMesh.h │ │ │ └── DetourTileNavMeshBuilder.h │ │ └── Source │ │ │ ├── DetourCommon.cpp │ │ │ ├── DetourNode.cpp │ │ │ ├── DetourStatNavMesh.cpp │ │ │ ├── DetourStatNavMeshBuilder.cpp │ │ │ ├── DetourTileNavMesh.cpp │ │ │ └── DetourTileNavMeshBuilder.cpp │ ├── License.txt │ ├── Readme.txt │ ├── Recast │ │ ├── Include │ │ │ ├── Recast.h │ │ │ ├── RecastAlloc.h │ │ │ └── RecastAssert.h │ │ └── Source │ │ │ ├── Recast.cpp │ │ │ ├── RecastAlloc.cpp │ │ │ ├── RecastArea.cpp │ │ │ ├── RecastContour.cpp │ │ │ ├── RecastFilter.cpp │ │ │ ├── RecastLayers.cpp │ │ │ ├── RecastMesh.cpp │ │ │ ├── RecastMeshDetail.cpp │ │ │ ├── RecastRasterization.cpp │ │ │ └── RecastRegion.cpp │ ├── readme-blender.txt │ ├── recast-capi.cpp │ └── recast-capi.h ├── sdlew │ ├── CMakeLists.txt │ ├── README.blender │ ├── include │ │ ├── SDL2 │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_gamecontroller.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_test.h │ │ │ ├── SDL_test_assert.h │ │ │ ├── SDL_test_common.h │ │ │ ├── SDL_test_compare.h │ │ │ ├── SDL_test_crc32.h │ │ │ ├── SDL_test_font.h │ │ │ ├── SDL_test_fuzzer.h │ │ │ ├── SDL_test_harness.h │ │ │ ├── SDL_test_images.h │ │ │ ├── SDL_test_log.h │ │ │ ├── SDL_test_md5.h │ │ │ ├── SDL_test_random.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ └── sdlew.h │ └── src │ │ ├── sdlew.c │ │ └── sdlew.map ├── wcwidth │ ├── CMakeLists.txt │ ├── README.blender │ ├── wcwidth.c │ └── wcwidth.h └── xdnd │ ├── CMakeLists.txt │ ├── README.blender │ ├── xdnd.c │ └── xdnd.h ├── intern ├── CMakeLists.txt ├── atomic │ ├── atomic_ops.h │ └── intern │ │ ├── atomic_ops_ext.h │ │ ├── atomic_ops_msvc.h │ │ ├── atomic_ops_unix.h │ │ └── atomic_ops_utils.h ├── audaspace │ ├── CMakeLists.txt │ ├── COPYING │ ├── FX │ │ ├── AUD_AccumulatorFactory.cpp │ │ ├── AUD_AccumulatorFactory.h │ │ ├── AUD_BandpassCalculator.cpp │ │ ├── AUD_BandpassCalculator.h │ │ ├── AUD_BaseIIRFilterReader.cpp │ │ ├── AUD_BaseIIRFilterReader.h │ │ ├── AUD_ButterworthCalculator.cpp │ │ ├── AUD_ButterworthCalculator.h │ │ ├── AUD_ButterworthFactory.cpp │ │ ├── AUD_ButterworthFactory.h │ │ ├── AUD_CallbackIIRFilterReader.cpp │ │ ├── AUD_CallbackIIRFilterReader.h │ │ ├── AUD_DelayFactory.cpp │ │ ├── AUD_DelayFactory.h │ │ ├── AUD_DelayReader.cpp │ │ ├── AUD_DelayReader.h │ │ ├── AUD_DoubleFactory.cpp │ │ ├── AUD_DoubleFactory.h │ │ ├── AUD_DoubleReader.cpp │ │ ├── AUD_DoubleReader.h │ │ ├── AUD_DynamicIIRFilterFactory.cpp │ │ ├── AUD_DynamicIIRFilterFactory.h │ │ ├── AUD_DynamicIIRFilterReader.cpp │ │ ├── AUD_DynamicIIRFilterReader.h │ │ ├── AUD_EffectFactory.cpp │ │ ├── AUD_EffectFactory.h │ │ ├── AUD_EffectReader.cpp │ │ ├── AUD_EffectReader.h │ │ ├── AUD_EnvelopeFactory.cpp │ │ ├── AUD_EnvelopeFactory.h │ │ ├── AUD_FaderFactory.cpp │ │ ├── AUD_FaderFactory.h │ │ ├── AUD_FaderReader.cpp │ │ ├── AUD_FaderReader.h │ │ ├── AUD_HighpassCalculator.cpp │ │ ├── AUD_HighpassCalculator.h │ │ ├── AUD_HighpassFactory.cpp │ │ ├── AUD_HighpassFactory.h │ │ ├── AUD_IDynamicIIRFilterCalculator.h │ │ ├── AUD_IIRFilterFactory.cpp │ │ ├── AUD_IIRFilterFactory.h │ │ ├── AUD_IIRFilterReader.cpp │ │ ├── AUD_IIRFilterReader.h │ │ ├── AUD_LimiterFactory.cpp │ │ ├── AUD_LimiterFactory.h │ │ ├── AUD_LimiterReader.cpp │ │ ├── AUD_LimiterReader.h │ │ ├── AUD_LoopFactory.cpp │ │ ├── AUD_LoopFactory.h │ │ ├── AUD_LoopReader.cpp │ │ ├── AUD_LoopReader.h │ │ ├── AUD_LowpassCalculator.cpp │ │ ├── AUD_LowpassCalculator.h │ │ ├── AUD_LowpassFactory.cpp │ │ ├── AUD_LowpassFactory.h │ │ ├── AUD_PingPongFactory.cpp │ │ ├── AUD_PingPongFactory.h │ │ ├── AUD_PitchFactory.cpp │ │ ├── AUD_PitchFactory.h │ │ ├── AUD_PitchReader.cpp │ │ ├── AUD_PitchReader.h │ │ ├── AUD_RectifyFactory.cpp │ │ ├── AUD_RectifyFactory.h │ │ ├── AUD_ReverseFactory.cpp │ │ ├── AUD_ReverseFactory.h │ │ ├── AUD_ReverseReader.cpp │ │ ├── AUD_ReverseReader.h │ │ ├── AUD_SquareFactory.cpp │ │ ├── AUD_SquareFactory.h │ │ ├── AUD_SumFactory.cpp │ │ ├── AUD_SumFactory.h │ │ ├── AUD_SuperposeFactory.cpp │ │ ├── AUD_SuperposeFactory.h │ │ ├── AUD_SuperposeReader.cpp │ │ ├── AUD_SuperposeReader.h │ │ ├── AUD_VolumeFactory.cpp │ │ └── AUD_VolumeFactory.h │ ├── OpenAL │ │ ├── AUD_OpenALDevice.cpp │ │ └── AUD_OpenALDevice.h │ ├── Python │ │ ├── AUD_PyAPI.cpp │ │ └── AUD_PyAPI.h │ ├── SDL │ │ ├── AUD_SDLDevice.cpp │ │ └── AUD_SDLDevice.h │ ├── SRC │ │ ├── AUD_SRCResampleFactory.cpp │ │ ├── AUD_SRCResampleFactory.h │ │ ├── AUD_SRCResampleReader.cpp │ │ └── AUD_SRCResampleReader.h │ ├── ffmpeg │ │ ├── AUD_FFMPEGFactory.cpp │ │ ├── AUD_FFMPEGFactory.h │ │ ├── AUD_FFMPEGReader.cpp │ │ ├── AUD_FFMPEGReader.h │ │ ├── AUD_FFMPEGWriter.cpp │ │ └── AUD_FFMPEGWriter.h │ ├── fftw │ │ ├── AUD_BandPassFactory.cpp │ │ ├── AUD_BandPassFactory.h │ │ ├── AUD_BandPassReader.cpp │ │ └── AUD_BandPassReader.h │ ├── intern │ │ ├── AUD_3DMath.h │ │ ├── AUD_AnimateableProperty.cpp │ │ ├── AUD_AnimateableProperty.h │ │ ├── AUD_Buffer.cpp │ │ ├── AUD_Buffer.h │ │ ├── AUD_BufferReader.cpp │ │ ├── AUD_BufferReader.h │ │ ├── AUD_C-API.cpp │ │ ├── AUD_C-API.h │ │ ├── AUD_ChannelMapperFactory.cpp │ │ ├── AUD_ChannelMapperFactory.h │ │ ├── AUD_ChannelMapperReader.cpp │ │ ├── AUD_ChannelMapperReader.h │ │ ├── AUD_ConverterFactory.cpp │ │ ├── AUD_ConverterFactory.h │ │ ├── AUD_ConverterFunctions.cpp │ │ ├── AUD_ConverterFunctions.h │ │ ├── AUD_ConverterReader.cpp │ │ ├── AUD_ConverterReader.h │ │ ├── AUD_FileFactory.cpp │ │ ├── AUD_FileFactory.h │ │ ├── AUD_FileWriter.cpp │ │ ├── AUD_FileWriter.h │ │ ├── AUD_I3DDevice.h │ │ ├── AUD_I3DHandle.h │ │ ├── AUD_IDevice.h │ │ ├── AUD_IFactory.h │ │ ├── AUD_IHandle.h │ │ ├── AUD_ILockable.h │ │ ├── AUD_IReader.h │ │ ├── AUD_IWriter.h │ │ ├── AUD_JOSResampleFactory.cpp │ │ ├── AUD_JOSResampleFactory.h │ │ ├── AUD_JOSResampleReader.cpp │ │ ├── AUD_JOSResampleReader.h │ │ ├── AUD_JOSResampleReaderCoeff.cpp │ │ ├── AUD_LinearResampleFactory.cpp │ │ ├── AUD_LinearResampleFactory.h │ │ ├── AUD_LinearResampleReader.cpp │ │ ├── AUD_LinearResampleReader.h │ │ ├── AUD_Mixer.cpp │ │ ├── AUD_Mixer.h │ │ ├── AUD_MixerFactory.cpp │ │ ├── AUD_MixerFactory.h │ │ ├── AUD_MutexLock.h │ │ ├── AUD_NULLDevice.cpp │ │ ├── AUD_NULLDevice.h │ │ ├── AUD_PyInit.cpp │ │ ├── AUD_PyInit.h │ │ ├── AUD_ReadDevice.cpp │ │ ├── AUD_ReadDevice.h │ │ ├── AUD_ResampleFactory.h │ │ ├── AUD_ResampleReader.cpp │ │ ├── AUD_ResampleReader.h │ │ ├── AUD_Sequencer.cpp │ │ ├── AUD_Sequencer.h │ │ ├── AUD_SequencerEntry.cpp │ │ ├── AUD_SequencerEntry.h │ │ ├── AUD_SequencerFactory.cpp │ │ ├── AUD_SequencerFactory.h │ │ ├── AUD_SequencerHandle.cpp │ │ ├── AUD_SequencerHandle.h │ │ ├── AUD_SequencerReader.cpp │ │ ├── AUD_SequencerReader.h │ │ ├── AUD_Set.cpp │ │ ├── AUD_Set.h │ │ ├── AUD_SilenceFactory.cpp │ │ ├── AUD_SilenceFactory.h │ │ ├── AUD_SilenceReader.cpp │ │ ├── AUD_SilenceReader.h │ │ ├── AUD_SinusFactory.cpp │ │ ├── AUD_SinusFactory.h │ │ ├── AUD_SinusReader.cpp │ │ ├── AUD_SinusReader.h │ │ ├── AUD_SoftwareDevice.cpp │ │ ├── AUD_SoftwareDevice.h │ │ ├── AUD_Space.h │ │ ├── AUD_StreamBufferFactory.cpp │ │ └── AUD_StreamBufferFactory.h │ ├── jack │ │ ├── AUD_JackDevice.cpp │ │ ├── AUD_JackDevice.h │ │ ├── AUD_JackLibrary.cpp │ │ └── AUD_JackLibrary.h │ └── sndfile │ │ ├── AUD_SndFileFactory.cpp │ │ ├── AUD_SndFileFactory.h │ │ ├── AUD_SndFileReader.cpp │ │ ├── AUD_SndFileReader.h │ │ ├── AUD_SndFileWriter.cpp │ │ └── AUD_SndFileWriter.h ├── container │ ├── CMakeLists.txt │ ├── CTR_HashedPtr.h │ └── CTR_Map.h ├── cycles │ ├── CMakeLists.txt │ ├── app │ │ ├── CMakeLists.txt │ │ ├── cycles_server.cpp │ │ ├── cycles_standalone.cpp │ │ ├── cycles_xml.cpp │ │ ├── cycles_xml.h │ │ └── io_export_cycles_xml.py │ ├── blender │ │ ├── CCL_api.h │ │ ├── CMakeLists.txt │ │ ├── addon │ │ │ ├── __init__.py │ │ │ ├── engine.py │ │ │ ├── osl.py │ │ │ ├── presets.py │ │ │ ├── properties.py │ │ │ ├── ui.py │ │ │ └── version_update.py │ │ ├── blender_camera.cpp │ │ ├── blender_curves.cpp │ │ ├── blender_logging.cpp │ │ ├── blender_mesh.cpp │ │ ├── blender_object.cpp │ │ ├── blender_object_cull.cpp │ │ ├── blender_object_cull.h │ │ ├── blender_particles.cpp │ │ ├── blender_python.cpp │ │ ├── blender_session.cpp │ │ ├── blender_session.h │ │ ├── blender_shader.cpp │ │ ├── blender_sync.cpp │ │ ├── blender_sync.h │ │ ├── blender_texture.cpp │ │ ├── blender_texture.h │ │ └── blender_util.h │ ├── bvh │ │ ├── CMakeLists.txt │ │ ├── bvh.cpp │ │ ├── bvh.h │ │ ├── bvh2.cpp │ │ ├── bvh2.h │ │ ├── bvh4.cpp │ │ ├── bvh4.h │ │ ├── bvh_binning.cpp │ │ ├── bvh_binning.h │ │ ├── bvh_build.cpp │ │ ├── bvh_build.h │ │ ├── bvh_node.cpp │ │ ├── bvh_node.h │ │ ├── bvh_params.h │ │ ├── bvh_sort.cpp │ │ ├── bvh_sort.h │ │ ├── bvh_split.cpp │ │ ├── bvh_split.h │ │ ├── bvh_unaligned.cpp │ │ └── bvh_unaligned.h │ ├── cmake │ │ └── external_libs.cmake │ ├── device │ │ ├── CMakeLists.txt │ │ ├── device.cpp │ │ ├── device.h │ │ ├── device_cpu.cpp │ │ ├── device_cuda.cpp │ │ ├── device_intern.h │ │ ├── device_memory.h │ │ ├── device_multi.cpp │ │ ├── device_network.cpp │ │ ├── device_network.h │ │ ├── device_opencl.cpp │ │ ├── device_split_kernel.cpp │ │ ├── device_split_kernel.h │ │ ├── device_task.cpp │ │ ├── device_task.h │ │ └── opencl │ │ │ ├── opencl.h │ │ │ ├── opencl_base.cpp │ │ │ ├── opencl_mega.cpp │ │ │ ├── opencl_split.cpp │ │ │ └── opencl_util.cpp │ ├── doc │ │ ├── CMakeLists.txt │ │ └── license │ │ │ ├── Apache_2.0.txt │ │ │ ├── Boost.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── ILM.txt │ │ │ ├── NVidia.txt │ │ │ ├── OSL.txt │ │ │ ├── Sobol.txt │ │ │ └── readme.txt │ ├── graph │ │ ├── CMakeLists.txt │ │ ├── node.cpp │ │ ├── node.h │ │ ├── node_enum.h │ │ ├── node_type.cpp │ │ ├── node_type.h │ │ ├── node_xml.cpp │ │ └── node_xml.h │ ├── kernel │ │ ├── CMakeLists.txt │ │ ├── bvh │ │ │ ├── bvh.h │ │ │ ├── bvh_nodes.h │ │ │ ├── bvh_shadow_all.h │ │ │ ├── bvh_subsurface.h │ │ │ ├── bvh_traversal.h │ │ │ ├── bvh_types.h │ │ │ ├── bvh_volume.h │ │ │ ├── bvh_volume_all.h │ │ │ ├── qbvh_nodes.h │ │ │ ├── qbvh_shadow_all.h │ │ │ ├── qbvh_subsurface.h │ │ │ ├── qbvh_traversal.h │ │ │ ├── qbvh_volume.h │ │ │ └── qbvh_volume_all.h │ │ ├── closure │ │ │ ├── alloc.h │ │ │ ├── bsdf.h │ │ │ ├── bsdf_ashikhmin_shirley.h │ │ │ ├── bsdf_ashikhmin_velvet.h │ │ │ ├── bsdf_diffuse.h │ │ │ ├── bsdf_diffuse_ramp.h │ │ │ ├── bsdf_hair.h │ │ │ ├── bsdf_microfacet.h │ │ │ ├── bsdf_microfacet_multi.h │ │ │ ├── bsdf_microfacet_multi_impl.h │ │ │ ├── bsdf_oren_nayar.h │ │ │ ├── bsdf_phong_ramp.h │ │ │ ├── bsdf_principled_diffuse.h │ │ │ ├── bsdf_principled_sheen.h │ │ │ ├── bsdf_reflection.h │ │ │ ├── bsdf_refraction.h │ │ │ ├── bsdf_toon.h │ │ │ ├── bsdf_transparent.h │ │ │ ├── bsdf_util.h │ │ │ ├── bssrdf.h │ │ │ ├── emissive.h │ │ │ └── volume.h │ │ ├── geom │ │ │ ├── geom.h │ │ │ ├── geom_attribute.h │ │ │ ├── geom_curve.h │ │ │ ├── geom_motion_curve.h │ │ │ ├── geom_motion_triangle.h │ │ │ ├── geom_motion_triangle_intersect.h │ │ │ ├── geom_motion_triangle_shader.h │ │ │ ├── geom_object.h │ │ │ ├── geom_patch.h │ │ │ ├── geom_primitive.h │ │ │ ├── geom_subd_triangle.h │ │ │ ├── geom_triangle.h │ │ │ ├── geom_triangle_intersect.h │ │ │ └── geom_volume.h │ │ ├── kernel.h │ │ ├── kernel_accumulate.h │ │ ├── kernel_bake.h │ │ ├── kernel_camera.h │ │ ├── kernel_compat_cpu.h │ │ ├── kernel_compat_cuda.h │ │ ├── kernel_compat_opencl.h │ │ ├── kernel_debug.h │ │ ├── kernel_differential.h │ │ ├── kernel_emission.h │ │ ├── kernel_film.h │ │ ├── kernel_globals.h │ │ ├── kernel_image_opencl.h │ │ ├── kernel_jitter.h │ │ ├── kernel_light.h │ │ ├── kernel_math.h │ │ ├── kernel_montecarlo.h │ │ ├── kernel_passes.h │ │ ├── kernel_path.h │ │ ├── kernel_path_branched.h │ │ ├── kernel_path_common.h │ │ ├── kernel_path_state.h │ │ ├── kernel_path_subsurface.h │ │ ├── kernel_path_surface.h │ │ ├── kernel_path_volume.h │ │ ├── kernel_projection.h │ │ ├── kernel_queues.h │ │ ├── kernel_random.h │ │ ├── kernel_shader.h │ │ ├── kernel_shadow.h │ │ ├── kernel_subsurface.h │ │ ├── kernel_textures.h │ │ ├── kernel_types.h │ │ ├── kernel_volume.h │ │ ├── kernel_work_stealing.h │ │ ├── kernels │ │ │ ├── cpu │ │ │ │ ├── kernel.cpp │ │ │ │ ├── kernel_avx.cpp │ │ │ │ ├── kernel_avx2.cpp │ │ │ │ ├── kernel_cpu.h │ │ │ │ ├── kernel_cpu_image.h │ │ │ │ ├── kernel_cpu_impl.h │ │ │ │ ├── kernel_split.cpp │ │ │ │ ├── kernel_split_avx.cpp │ │ │ │ ├── kernel_split_avx2.cpp │ │ │ │ ├── kernel_split_sse2.cpp │ │ │ │ ├── kernel_split_sse3.cpp │ │ │ │ ├── kernel_split_sse41.cpp │ │ │ │ ├── kernel_sse2.cpp │ │ │ │ ├── kernel_sse3.cpp │ │ │ │ └── kernel_sse41.cpp │ │ │ ├── cuda │ │ │ │ ├── kernel.cu │ │ │ │ ├── kernel_config.h │ │ │ │ └── kernel_split.cu │ │ │ └── opencl │ │ │ │ ├── kernel.cl │ │ │ │ ├── kernel_buffer_update.cl │ │ │ │ ├── kernel_data_init.cl │ │ │ │ ├── kernel_direct_lighting.cl │ │ │ │ ├── kernel_do_volume.cl │ │ │ │ ├── kernel_holdout_emission_blurring_pathtermination_ao.cl │ │ │ │ ├── kernel_indirect_background.cl │ │ │ │ ├── kernel_indirect_subsurface.cl │ │ │ │ ├── kernel_lamp_emission.cl │ │ │ │ ├── kernel_next_iteration_setup.cl │ │ │ │ ├── kernel_path_init.cl │ │ │ │ ├── kernel_queue_enqueue.cl │ │ │ │ ├── kernel_scene_intersect.cl │ │ │ │ ├── kernel_shader_eval.cl │ │ │ │ ├── kernel_shadow_blocked_ao.cl │ │ │ │ ├── kernel_shadow_blocked_dl.cl │ │ │ │ ├── kernel_split.cl │ │ │ │ ├── kernel_state_buffer_size.cl │ │ │ │ └── kernel_subsurface_scatter.cl │ │ ├── osl │ │ │ ├── CMakeLists.txt │ │ │ ├── background.cpp │ │ │ ├── bsdf_diffuse_ramp.cpp │ │ │ ├── bsdf_phong_ramp.cpp │ │ │ ├── emissive.cpp │ │ │ ├── osl_bssrdf.cpp │ │ │ ├── osl_closures.cpp │ │ │ ├── osl_closures.h │ │ │ ├── osl_globals.h │ │ │ ├── osl_services.cpp │ │ │ ├── osl_services.h │ │ │ ├── osl_shader.cpp │ │ │ └── osl_shader.h │ │ ├── shaders │ │ │ ├── CMakeLists.txt │ │ │ ├── node_absorption_volume.osl │ │ │ ├── node_add_closure.osl │ │ │ ├── node_ambient_occlusion.osl │ │ │ ├── node_anisotropic_bsdf.osl │ │ │ ├── node_attribute.osl │ │ │ ├── node_background.osl │ │ │ ├── node_blackbody.osl │ │ │ ├── node_brick_texture.osl │ │ │ ├── node_brightness.osl │ │ │ ├── node_bump.osl │ │ │ ├── node_camera.osl │ │ │ ├── node_checker_texture.osl │ │ │ ├── node_color.h │ │ │ ├── node_combine_hsv.osl │ │ │ ├── node_combine_rgb.osl │ │ │ ├── node_combine_xyz.osl │ │ │ ├── node_convert_from_color.osl │ │ │ ├── node_convert_from_float.osl │ │ │ ├── node_convert_from_int.osl │ │ │ ├── node_convert_from_normal.osl │ │ │ ├── node_convert_from_point.osl │ │ │ ├── node_convert_from_string.osl │ │ │ ├── node_convert_from_vector.osl │ │ │ ├── node_diffuse_bsdf.osl │ │ │ ├── node_emission.osl │ │ │ ├── node_environment_texture.osl │ │ │ ├── node_fresnel.h │ │ │ ├── node_fresnel.osl │ │ │ ├── node_gamma.osl │ │ │ ├── node_geometry.osl │ │ │ ├── node_glass_bsdf.osl │ │ │ ├── node_glossy_bsdf.osl │ │ │ ├── node_gradient_texture.osl │ │ │ ├── node_hair_bsdf.osl │ │ │ ├── node_hair_info.osl │ │ │ ├── node_holdout.osl │ │ │ ├── node_hsv.osl │ │ │ ├── node_image_texture.osl │ │ │ ├── node_invert.osl │ │ │ ├── node_layer_weight.osl │ │ │ ├── node_light_falloff.osl │ │ │ ├── node_light_path.osl │ │ │ ├── node_magic_texture.osl │ │ │ ├── node_mapping.osl │ │ │ ├── node_math.osl │ │ │ ├── node_mix.osl │ │ │ ├── node_mix_closure.osl │ │ │ ├── node_musgrave_texture.osl │ │ │ ├── node_noise_texture.osl │ │ │ ├── node_normal.osl │ │ │ ├── node_normal_map.osl │ │ │ ├── node_object_info.osl │ │ │ ├── node_output_displacement.osl │ │ │ ├── node_output_surface.osl │ │ │ ├── node_output_volume.osl │ │ │ ├── node_particle_info.osl │ │ │ ├── node_principled_bsdf.osl │ │ │ ├── node_ramp_util.h │ │ │ ├── node_refraction_bsdf.osl │ │ │ ├── node_rgb_curves.osl │ │ │ ├── node_rgb_ramp.osl │ │ │ ├── node_rgb_to_bw.osl │ │ │ ├── node_scatter_volume.osl │ │ │ ├── node_separate_hsv.osl │ │ │ ├── node_separate_rgb.osl │ │ │ ├── node_separate_xyz.osl │ │ │ ├── node_set_normal.osl │ │ │ ├── node_sky_texture.osl │ │ │ ├── node_subsurface_scattering.osl │ │ │ ├── node_tangent.osl │ │ │ ├── node_texture.h │ │ │ ├── node_texture_coordinate.osl │ │ │ ├── node_toon_bsdf.osl │ │ │ ├── node_translucent_bsdf.osl │ │ │ ├── node_transparent_bsdf.osl │ │ │ ├── node_uv_map.osl │ │ │ ├── node_value.osl │ │ │ ├── node_vector_curves.osl │ │ │ ├── node_vector_math.osl │ │ │ ├── node_vector_transform.osl │ │ │ ├── node_velvet_bsdf.osl │ │ │ ├── node_voronoi_texture.osl │ │ │ ├── node_voxel_texture.osl │ │ │ ├── node_wave_texture.osl │ │ │ ├── node_wavelength.osl │ │ │ ├── node_wireframe.osl │ │ │ ├── oslutil.h │ │ │ └── stdosl.h │ │ ├── split │ │ │ ├── kernel_buffer_update.h │ │ │ ├── kernel_data_init.h │ │ │ ├── kernel_direct_lighting.h │ │ │ ├── kernel_do_volume.h │ │ │ ├── kernel_holdout_emission_blurring_pathtermination_ao.h │ │ │ ├── kernel_indirect_background.h │ │ │ ├── kernel_indirect_subsurface.h │ │ │ ├── kernel_lamp_emission.h │ │ │ ├── kernel_next_iteration_setup.h │ │ │ ├── kernel_path_init.h │ │ │ ├── kernel_queue_enqueue.h │ │ │ ├── kernel_scene_intersect.h │ │ │ ├── kernel_shader_eval.h │ │ │ ├── kernel_shadow_blocked.h │ │ │ ├── kernel_shadow_blocked_ao.h │ │ │ ├── kernel_shadow_blocked_dl.h │ │ │ ├── kernel_split_common.h │ │ │ ├── kernel_split_data.h │ │ │ ├── kernel_split_data_types.h │ │ │ └── kernel_subsurface_scatter.h │ │ └── svm │ │ │ ├── svm.h │ │ │ ├── svm_aov.h │ │ │ ├── svm_attribute.h │ │ │ ├── svm_blackbody.h │ │ │ ├── svm_brick.h │ │ │ ├── svm_brightness.h │ │ │ ├── svm_bump.h │ │ │ ├── svm_camera.h │ │ │ ├── svm_checker.h │ │ │ ├── svm_closure.h │ │ │ ├── svm_color_util.h │ │ │ ├── svm_convert.h │ │ │ ├── svm_displace.h │ │ │ ├── svm_fresnel.h │ │ │ ├── svm_gamma.h │ │ │ ├── svm_geometry.h │ │ │ ├── svm_gradient.h │ │ │ ├── svm_hsv.h │ │ │ ├── svm_image.h │ │ │ ├── svm_invert.h │ │ │ ├── svm_light_path.h │ │ │ ├── svm_magic.h │ │ │ ├── svm_mapping.h │ │ │ ├── svm_math.h │ │ │ ├── svm_math_util.h │ │ │ ├── svm_mix.h │ │ │ ├── svm_musgrave.h │ │ │ ├── svm_noise.h │ │ │ ├── svm_noisetex.h │ │ │ ├── svm_normal.h │ │ │ ├── svm_ramp.h │ │ │ ├── svm_ramp_util.h │ │ │ ├── svm_sepcomb_hsv.h │ │ │ ├── svm_sepcomb_vector.h │ │ │ ├── svm_sky.h │ │ │ ├── svm_tex_coord.h │ │ │ ├── svm_texture.h │ │ │ ├── svm_types.h │ │ │ ├── svm_value.h │ │ │ ├── svm_vector_transform.h │ │ │ ├── svm_voronoi.h │ │ │ ├── svm_voxel.h │ │ │ ├── svm_wave.h │ │ │ ├── svm_wavelength.h │ │ │ └── svm_wireframe.h │ ├── render │ │ ├── CMakeLists.txt │ │ ├── attribute.cpp │ │ ├── attribute.h │ │ ├── background.cpp │ │ ├── background.h │ │ ├── bake.cpp │ │ ├── bake.h │ │ ├── buffers.cpp │ │ ├── buffers.h │ │ ├── camera.cpp │ │ ├── camera.h │ │ ├── constant_fold.cpp │ │ ├── constant_fold.h │ │ ├── coverage.cpp │ │ ├── coverage.h │ │ ├── curves.cpp │ │ ├── curves.h │ │ ├── film.cpp │ │ ├── film.h │ │ ├── graph.cpp │ │ ├── graph.h │ │ ├── image.cpp │ │ ├── image.h │ │ ├── integrator.cpp │ │ ├── integrator.h │ │ ├── light.cpp │ │ ├── light.h │ │ ├── mesh.cpp │ │ ├── mesh.h │ │ ├── mesh_displace.cpp │ │ ├── mesh_subdivision.cpp │ │ ├── nodes.cpp │ │ ├── nodes.h │ │ ├── object.cpp │ │ ├── object.h │ │ ├── osl.cpp │ │ ├── osl.h │ │ ├── particles.cpp │ │ ├── particles.h │ │ ├── scene.cpp │ │ ├── scene.h │ │ ├── session.cpp │ │ ├── session.h │ │ ├── shader.cpp │ │ ├── shader.h │ │ ├── sobol.cpp │ │ ├── sobol.h │ │ ├── svm.cpp │ │ ├── svm.h │ │ ├── tables.cpp │ │ ├── tables.h │ │ ├── tile.cpp │ │ └── tile.h │ ├── subd │ │ ├── CMakeLists.txt │ │ ├── subd_dice.cpp │ │ ├── subd_dice.h │ │ ├── subd_patch.cpp │ │ ├── subd_patch.h │ │ ├── subd_patch_table.cpp │ │ ├── subd_patch_table.h │ │ ├── subd_split.cpp │ │ └── subd_split.h │ ├── test │ │ ├── CMakeLists.txt │ │ ├── render_graph_finalize_test.cpp │ │ ├── util_aligned_malloc_test.cpp │ │ ├── util_path_test.cpp │ │ ├── util_string_test.cpp │ │ └── util_task_test.cpp │ └── util │ │ ├── CMakeLists.txt │ │ ├── util_algorithm.h │ │ ├── util_aligned_malloc.cpp │ │ ├── util_aligned_malloc.h │ │ ├── util_args.h │ │ ├── util_atomic.h │ │ ├── util_avxf.h │ │ ├── util_boundbox.h │ │ ├── util_color.h │ │ ├── util_debug.cpp │ │ ├── util_debug.h │ │ ├── util_foreach.h │ │ ├── util_function.h │ │ ├── util_guarded_allocator.cpp │ │ ├── util_guarded_allocator.h │ │ ├── util_half.h │ │ ├── util_hash.h │ │ ├── util_image.h │ │ ├── util_image_impl.h │ │ ├── util_list.h │ │ ├── util_logging.cpp │ │ ├── util_logging.h │ │ ├── util_map.h │ │ ├── util_math.h │ │ ├── util_math_cdf.cpp │ │ ├── util_math_cdf.h │ │ ├── util_math_fast.h │ │ ├── util_math_intersect.h │ │ ├── util_md5.cpp │ │ ├── util_md5.h │ │ ├── util_murmurhash.h │ │ ├── util_opengl.h │ │ ├── util_optimization.h │ │ ├── util_param.h │ │ ├── util_path.cpp │ │ ├── util_path.h │ │ ├── util_progress.h │ │ ├── util_queue.h │ │ ├── util_set.h │ │ ├── util_simd.cpp │ │ ├── util_simd.h │ │ ├── util_sky_model.cpp │ │ ├── util_sky_model.h │ │ ├── util_sky_model_data.h │ │ ├── util_sseb.h │ │ ├── util_ssef.h │ │ ├── util_ssei.h │ │ ├── util_stack_allocator.h │ │ ├── util_static_assert.h │ │ ├── util_stats.h │ │ ├── util_string.cpp │ │ ├── util_string.h │ │ ├── util_system.cpp │ │ ├── util_system.h │ │ ├── util_task.cpp │ │ ├── util_task.h │ │ ├── util_texture.h │ │ ├── util_thread.cpp │ │ ├── util_thread.h │ │ ├── util_time.cpp │ │ ├── util_time.h │ │ ├── util_transform.cpp │ │ ├── util_transform.h │ │ ├── util_types.h │ │ ├── util_vector.h │ │ ├── util_version.h │ │ ├── util_view.cpp │ │ ├── util_view.h │ │ ├── util_windows.cpp │ │ ├── util_windows.h │ │ └── util_xml.h ├── decklink │ ├── CMakeLists.txt │ ├── DeckLinkAPI.cpp │ ├── DeckLinkAPI.h │ ├── linux │ │ ├── DeckLinkAPI.h │ │ ├── DeckLinkAPIConfiguration.h │ │ ├── DeckLinkAPIDeckControl.h │ │ ├── DeckLinkAPIDiscovery.h │ │ ├── DeckLinkAPIDispatch.cpp │ │ ├── DeckLinkAPIModes.h │ │ ├── DeckLinkAPITypes.h │ │ ├── DeckLinkAPIVersion.h │ │ └── LinuxCOM.h │ └── win │ │ ├── DeckLinkAPI_h.h │ │ └── DeckLinkAPI_i.c ├── dualcon │ ├── CMakeLists.txt │ ├── dualcon.h │ └── intern │ │ ├── GeoCommon.h │ │ ├── MemoryAllocator.h │ │ ├── ModelReader.h │ │ ├── Projections.cpp │ │ ├── Projections.h │ │ ├── Queue.h │ │ ├── cubes.h │ │ ├── dualcon_c_api.cpp │ │ ├── manifold_table.cpp │ │ ├── manifold_table.h │ │ ├── marching_cubes_table.cpp │ │ ├── marching_cubes_table.h │ │ ├── octree.cpp │ │ ├── octree.h │ │ └── readme.txt ├── eigen │ ├── CMakeLists.txt │ ├── eigen_capi.h │ └── intern │ │ ├── eigenvalues.cc │ │ ├── eigenvalues.h │ │ ├── linear_solver.cc │ │ ├── linear_solver.h │ │ ├── svd.cc │ │ └── svd.h ├── elbeem │ ├── CMakeLists.txt │ ├── COPYING │ ├── COPYING_trimesh2 │ ├── extern │ │ ├── LBM_fluidsim.h │ │ └── elbeem.h │ └── intern │ │ ├── attributes.cpp │ │ ├── attributes.h │ │ ├── controlparticles.cpp │ │ ├── controlparticles.h │ │ ├── elbeem.cpp │ │ ├── elbeem_control.cpp │ │ ├── elbeem_control.h │ │ ├── globals.h │ │ ├── isosurface.cpp │ │ ├── isosurface.h │ │ ├── loop_tools.h │ │ ├── mcubes_tables.h │ │ ├── mvmcoords.cpp │ │ ├── mvmcoords.h │ │ ├── ntl_blenderdumper.cpp │ │ ├── ntl_blenderdumper.h │ │ ├── ntl_bsptree.cpp │ │ ├── ntl_bsptree.h │ │ ├── ntl_geometryclass.h │ │ ├── ntl_geometrymodel.cpp │ │ ├── ntl_geometrymodel.h │ │ ├── ntl_geometryobject.cpp │ │ ├── ntl_geometryobject.h │ │ ├── ntl_geometryshader.h │ │ ├── ntl_lighting.cpp │ │ ├── ntl_lighting.h │ │ ├── ntl_matrices.h │ │ ├── ntl_ray.cpp │ │ ├── ntl_ray.h │ │ ├── ntl_vector3dim.h │ │ ├── ntl_world.cpp │ │ ├── ntl_world.h │ │ ├── paraloopend.h │ │ ├── parametrizer.cpp │ │ ├── parametrizer.h │ │ ├── particletracer.cpp │ │ ├── particletracer.h │ │ ├── simulation_object.cpp │ │ ├── simulation_object.h │ │ ├── solver_adap.cpp │ │ ├── solver_class.h │ │ ├── solver_control.cpp │ │ ├── solver_control.h │ │ ├── solver_init.cpp │ │ ├── solver_interface.cpp │ │ ├── solver_interface.h │ │ ├── solver_main.cpp │ │ ├── solver_relax.h │ │ ├── solver_util.cpp │ │ ├── utilities.cpp │ │ └── utilities.h ├── ffmpeg │ └── ffmpeg_compat.h ├── ghost │ ├── CMakeLists.txt │ ├── GHOST_C-api.h │ ├── GHOST_IEvent.h │ ├── GHOST_IEventConsumer.h │ ├── GHOST_ISystem.h │ ├── GHOST_ISystemPaths.h │ ├── GHOST_ITimerTask.h │ ├── GHOST_IWindow.h │ ├── GHOST_Path-api.h │ ├── GHOST_Rect.h │ ├── GHOST_Types.h │ ├── intern │ │ ├── GHOST_Buttons.cpp │ │ ├── GHOST_Buttons.h │ │ ├── GHOST_C-api.cpp │ │ ├── GHOST_CallbackEventConsumer.cpp │ │ ├── GHOST_CallbackEventConsumer.h │ │ ├── GHOST_Context.cpp │ │ ├── GHOST_Context.h │ │ ├── GHOST_ContextCGL.h │ │ ├── GHOST_ContextCGL.mm │ │ ├── GHOST_ContextEGL.cpp │ │ ├── GHOST_ContextEGL.h │ │ ├── GHOST_ContextGLX.cpp │ │ ├── GHOST_ContextGLX.h │ │ ├── GHOST_ContextNone.cpp │ │ ├── GHOST_ContextNone.h │ │ ├── GHOST_ContextSDL.cpp │ │ ├── GHOST_ContextSDL.h │ │ ├── GHOST_ContextWGL.cpp │ │ ├── GHOST_ContextWGL.h │ │ ├── GHOST_Debug.h │ │ ├── GHOST_DisplayManager.cpp │ │ ├── GHOST_DisplayManager.h │ │ ├── GHOST_DisplayManagerCocoa.h │ │ ├── GHOST_DisplayManagerCocoa.mm │ │ ├── GHOST_DisplayManagerNULL.h │ │ ├── GHOST_DisplayManagerSDL.cpp │ │ ├── GHOST_DisplayManagerSDL.h │ │ ├── GHOST_DisplayManagerWin32.cpp │ │ ├── GHOST_DisplayManagerWin32.h │ │ ├── GHOST_DisplayManagerX11.cpp │ │ ├── GHOST_DisplayManagerX11.h │ │ ├── GHOST_DropTargetWin32.cpp │ │ ├── GHOST_DropTargetWin32.h │ │ ├── GHOST_DropTargetX11.cpp │ │ ├── GHOST_DropTargetX11.h │ │ ├── GHOST_Event.h │ │ ├── GHOST_EventButton.h │ │ ├── GHOST_EventCursor.h │ │ ├── GHOST_EventDragnDrop.h │ │ ├── GHOST_EventKey.h │ │ ├── GHOST_EventManager.cpp │ │ ├── GHOST_EventManager.h │ │ ├── GHOST_EventNDOF.h │ │ ├── GHOST_EventPrinter.cpp │ │ ├── GHOST_EventPrinter.h │ │ ├── GHOST_EventString.h │ │ ├── GHOST_EventTrackpad.h │ │ ├── GHOST_EventWheel.h │ │ ├── GHOST_ISystem.cpp │ │ ├── GHOST_ISystemPaths.cpp │ │ ├── GHOST_ImeWin32.cpp │ │ ├── GHOST_ImeWin32.h │ │ ├── GHOST_ModifierKeys.cpp │ │ ├── GHOST_ModifierKeys.h │ │ ├── GHOST_NDOFManager.cpp │ │ ├── GHOST_NDOFManager.h │ │ ├── GHOST_NDOFManagerCocoa.h │ │ ├── GHOST_NDOFManagerCocoa.mm │ │ ├── GHOST_NDOFManagerUnix.cpp │ │ ├── GHOST_NDOFManagerUnix.h │ │ ├── GHOST_NDOFManagerWin32.cpp │ │ ├── GHOST_NDOFManagerWin32.h │ │ ├── GHOST_Path-api.cpp │ │ ├── GHOST_Rect.cpp │ │ ├── GHOST_System.cpp │ │ ├── GHOST_System.h │ │ ├── GHOST_SystemCocoa.h │ │ ├── GHOST_SystemCocoa.mm │ │ ├── GHOST_SystemNULL.h │ │ ├── GHOST_SystemPaths.h │ │ ├── GHOST_SystemPathsCocoa.h │ │ ├── GHOST_SystemPathsCocoa.mm │ │ ├── GHOST_SystemPathsUnix.cpp │ │ ├── GHOST_SystemPathsUnix.h │ │ ├── GHOST_SystemPathsWin32.cpp │ │ ├── GHOST_SystemPathsWin32.h │ │ ├── GHOST_SystemSDL.cpp │ │ ├── GHOST_SystemSDL.h │ │ ├── GHOST_SystemWin32.cpp │ │ ├── GHOST_SystemWin32.h │ │ ├── GHOST_SystemX11.cpp │ │ ├── GHOST_SystemX11.h │ │ ├── GHOST_TaskbarWin32.h │ │ ├── GHOST_TimerManager.cpp │ │ ├── GHOST_TimerManager.h │ │ ├── GHOST_TimerTask.h │ │ ├── GHOST_Window.cpp │ │ ├── GHOST_Window.h │ │ ├── GHOST_WindowCocoa.h │ │ ├── GHOST_WindowCocoa.mm │ │ ├── GHOST_WindowManager.cpp │ │ ├── GHOST_WindowManager.h │ │ ├── GHOST_WindowNULL.h │ │ ├── GHOST_WindowSDL.cpp │ │ ├── GHOST_WindowSDL.h │ │ ├── GHOST_WindowWin32.cpp │ │ ├── GHOST_WindowWin32.h │ │ ├── GHOST_WindowX11.cpp │ │ └── GHOST_WindowX11.h │ └── test │ │ ├── CMakeLists.txt │ │ ├── gears │ │ ├── GHOST_C-Test.c │ │ └── GHOST_Test.cpp │ │ └── multitest │ │ ├── Basic.c │ │ ├── Basic.h │ │ ├── EventToBuf.c │ │ ├── EventToBuf.h │ │ ├── GL.h │ │ ├── MultiTest.c │ │ ├── ScrollBar.c │ │ ├── ScrollBar.h │ │ ├── Util.c │ │ ├── Util.h │ │ ├── WindowData.c │ │ ├── WindowData.h │ │ └── stubs.c ├── glew-mx │ ├── CMakeLists.txt │ ├── glew-mx.h │ └── intern │ │ ├── gl-deprecated.h │ │ ├── glew-mx.c │ │ └── symbol-binding.h ├── gpudirect │ ├── CMakeLists.txt │ ├── dvpapi.cpp │ └── dvpapi.h ├── guardedalloc │ ├── CMakeLists.txt │ ├── MEM_guardedalloc.h │ ├── cpp │ │ └── mallocn.cpp │ ├── intern │ │ ├── mallocn.c │ │ ├── mallocn_guarded_impl.c │ │ ├── mallocn_intern.h │ │ ├── mallocn_lockfree_impl.c │ │ └── mmap_win.c │ ├── mmap_win.h │ └── test │ │ └── simpletest │ │ └── memtest.c ├── iksolver │ ├── CMakeLists.txt │ ├── extern │ │ └── IK_solver.h │ └── intern │ │ ├── IK_Math.h │ │ ├── IK_QJacobian.cpp │ │ ├── IK_QJacobian.h │ │ ├── IK_QJacobianSolver.cpp │ │ ├── IK_QJacobianSolver.h │ │ ├── IK_QSegment.cpp │ │ ├── IK_QSegment.h │ │ ├── IK_QTask.cpp │ │ ├── IK_QTask.h │ │ └── IK_Solver.cpp ├── itasc │ ├── Armature.cpp │ ├── Armature.hpp │ ├── CMakeLists.txt │ ├── Cache.cpp │ ├── Cache.hpp │ ├── ConstraintSet.cpp │ ├── ConstraintSet.hpp │ ├── ControlledObject.cpp │ ├── ControlledObject.hpp │ ├── CopyPose.cpp │ ├── CopyPose.hpp │ ├── Distance.cpp │ ├── Distance.hpp │ ├── FixedObject.cpp │ ├── FixedObject.hpp │ ├── MovingFrame.cpp │ ├── MovingFrame.hpp │ ├── Object.hpp │ ├── Scene.cpp │ ├── Scene.hpp │ ├── Solver.hpp │ ├── UncontrolledObject.cpp │ ├── UncontrolledObject.hpp │ ├── WDLSSolver.cpp │ ├── WDLSSolver.hpp │ ├── WSDLSSolver.cpp │ ├── WSDLSSolver.hpp │ ├── WorldObject.cpp │ ├── WorldObject.hpp │ ├── eigen_types.cpp │ ├── eigen_types.hpp │ ├── kdl │ │ ├── chain.cpp │ │ ├── chain.hpp │ │ ├── chainfksolver.hpp │ │ ├── chainfksolverpos_recursive.cpp │ │ ├── chainfksolverpos_recursive.hpp │ │ ├── chainjnttojacsolver.cpp │ │ ├── chainjnttojacsolver.hpp │ │ ├── frameacc.cpp │ │ ├── frameacc.hpp │ │ ├── frameacc.inl │ │ ├── frames.cpp │ │ ├── frames.hpp │ │ ├── frames.inl │ │ ├── frames_io.cpp │ │ ├── frames_io.hpp │ │ ├── framevel.cpp │ │ ├── framevel.hpp │ │ ├── framevel.inl │ │ ├── inertia.cpp │ │ ├── inertia.hpp │ │ ├── jacobian.cpp │ │ ├── jacobian.hpp │ │ ├── jntarray.cpp │ │ ├── jntarray.hpp │ │ ├── jntarrayacc.cpp │ │ ├── jntarrayacc.hpp │ │ ├── jntarrayvel.cpp │ │ ├── jntarrayvel.hpp │ │ ├── joint.cpp │ │ ├── joint.hpp │ │ ├── kinfam_io.cpp │ │ ├── kinfam_io.hpp │ │ ├── segment.cpp │ │ ├── segment.hpp │ │ ├── tree.cpp │ │ ├── tree.hpp │ │ ├── treefksolver.hpp │ │ ├── treefksolverpos_recursive.cpp │ │ ├── treefksolverpos_recursive.hpp │ │ ├── treejnttojacsolver.cpp │ │ ├── treejnttojacsolver.hpp │ │ └── utilities │ │ │ ├── error.h │ │ │ ├── error_stack.cpp │ │ │ ├── error_stack.h │ │ │ ├── kdl-config.h │ │ │ ├── rall1d.h │ │ │ ├── rall2d.h │ │ │ ├── svd_eigen_HH.hpp │ │ │ ├── traits.h │ │ │ ├── utility.cpp │ │ │ ├── utility.h │ │ │ ├── utility_io.cpp │ │ │ └── utility_io.h │ └── ublas_types.hpp ├── libmv │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── bundle.sh │ ├── files.txt │ ├── intern │ │ ├── autotrack.cc │ │ ├── autotrack.h │ │ ├── camera_intrinsics.cc │ │ ├── camera_intrinsics.h │ │ ├── detector.cc │ │ ├── detector.h │ │ ├── frame_accessor.cc │ │ ├── frame_accessor.h │ │ ├── homography.cc │ │ ├── homography.h │ │ ├── image.cc │ │ ├── image.h │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── reconstruction.cc │ │ ├── reconstruction.h │ │ ├── region.h │ │ ├── stub.cc │ │ ├── track_region.cc │ │ ├── track_region.h │ │ ├── tracks.cc │ │ ├── tracks.h │ │ ├── tracksN.cc │ │ ├── tracksN.h │ │ └── utildefines.h │ ├── libmv-capi.h │ ├── libmv │ │ ├── autotrack │ │ │ ├── autotrack.cc │ │ │ ├── autotrack.h │ │ │ ├── callbacks.h │ │ │ ├── frame_accessor.h │ │ │ ├── marker.h │ │ │ ├── model.h │ │ │ ├── predict_tracks.cc │ │ │ ├── predict_tracks.h │ │ │ ├── predict_tracks_test.cc │ │ │ ├── quad.h │ │ │ ├── reconstruction.h │ │ │ ├── region.h │ │ │ ├── tracks.cc │ │ │ ├── tracks.h │ │ │ └── tracks_test.cc │ │ ├── base │ │ │ ├── aligned_malloc.cc │ │ │ ├── aligned_malloc.h │ │ │ ├── id_generator.h │ │ │ ├── scoped_ptr.h │ │ │ ├── scoped_ptr_test.cc │ │ │ ├── vector.h │ │ │ ├── vector_test.cc │ │ │ └── vector_utils.h │ │ ├── image │ │ │ ├── array_nd.cc │ │ │ ├── array_nd.h │ │ │ ├── array_nd_test.cc │ │ │ ├── convolve.cc │ │ │ ├── convolve.h │ │ │ ├── convolve_test.cc │ │ │ ├── correlation.h │ │ │ ├── image.h │ │ │ ├── image_converter.h │ │ │ ├── image_drawing.h │ │ │ ├── image_test.cc │ │ │ ├── sample.h │ │ │ ├── sample_test.cc │ │ │ ├── tuple.h │ │ │ └── tuple_test.cc │ │ ├── logging │ │ │ └── logging.h │ │ ├── multiview │ │ │ ├── conditioning.cc │ │ │ ├── conditioning.h │ │ │ ├── euclidean_resection.cc │ │ │ ├── euclidean_resection.h │ │ │ ├── euclidean_resection_test.cc │ │ │ ├── fundamental.cc │ │ │ ├── fundamental.h │ │ │ ├── fundamental_test.cc │ │ │ ├── homography.cc │ │ │ ├── homography.h │ │ │ ├── homography_error.h │ │ │ ├── homography_parameterization.h │ │ │ ├── homography_test.cc │ │ │ ├── nviewtriangulation.h │ │ │ ├── nviewtriangulation_test.cc │ │ │ ├── panography.cc │ │ │ ├── panography.h │ │ │ ├── panography_kernel.cc │ │ │ ├── panography_kernel.h │ │ │ ├── panography_test.cc │ │ │ ├── projection.cc │ │ │ ├── projection.h │ │ │ ├── projection_test.cc │ │ │ ├── resection.h │ │ │ ├── resection_test.cc │ │ │ ├── test_data_sets.cc │ │ │ ├── test_data_sets.h │ │ │ ├── triangulation.cc │ │ │ ├── triangulation.h │ │ │ ├── triangulation_test.cc │ │ │ └── two_view_kernel.h │ │ ├── numeric │ │ │ ├── dogleg.h │ │ │ ├── dogleg_test.cc │ │ │ ├── function_derivative.h │ │ │ ├── function_derivative_test.cc │ │ │ ├── levenberg_marquardt.h │ │ │ ├── levenberg_marquardt_test.cc │ │ │ ├── numeric.cc │ │ │ ├── numeric.h │ │ │ ├── numeric_test.cc │ │ │ ├── poly.cc │ │ │ ├── poly.h │ │ │ └── poly_test.cc │ │ ├── simple_pipeline │ │ │ ├── bundle.cc │ │ │ ├── bundle.h │ │ │ ├── callbacks.h │ │ │ ├── camera_intrinsics.cc │ │ │ ├── camera_intrinsics.h │ │ │ ├── camera_intrinsics_impl.h │ │ │ ├── camera_intrinsics_test.cc │ │ │ ├── detect.cc │ │ │ ├── detect.h │ │ │ ├── detect_test.cc │ │ │ ├── distortion_models.cc │ │ │ ├── distortion_models.h │ │ │ ├── initialize_reconstruction.cc │ │ │ ├── initialize_reconstruction.h │ │ │ ├── intersect.cc │ │ │ ├── intersect.h │ │ │ ├── intersect_test.cc │ │ │ ├── keyframe_selection.cc │ │ │ ├── keyframe_selection.h │ │ │ ├── keyframe_selection_test.cc │ │ │ ├── modal_solver.cc │ │ │ ├── modal_solver.h │ │ │ ├── modal_solver_test.cc │ │ │ ├── pipeline.cc │ │ │ ├── pipeline.h │ │ │ ├── reconstruction.cc │ │ │ ├── reconstruction.h │ │ │ ├── reconstruction_scale.cc │ │ │ ├── reconstruction_scale.h │ │ │ ├── resect.cc │ │ │ ├── resect.h │ │ │ ├── resect_test.cc │ │ │ ├── tracks.cc │ │ │ └── tracks.h │ │ └── tracking │ │ │ ├── brute_region_tracker.cc │ │ │ ├── brute_region_tracker.h │ │ │ ├── brute_region_tracker_test.cc │ │ │ ├── hybrid_region_tracker.cc │ │ │ ├── hybrid_region_tracker.h │ │ │ ├── kalman_filter.h │ │ │ ├── klt_region_tracker.cc │ │ │ ├── klt_region_tracker.h │ │ │ ├── klt_region_tracker_test.cc │ │ │ ├── pyramid_region_tracker.cc │ │ │ ├── pyramid_region_tracker.h │ │ │ ├── pyramid_region_tracker_test.cc │ │ │ ├── region_tracker.h │ │ │ ├── retrack_region_tracker.cc │ │ │ ├── retrack_region_tracker.h │ │ │ ├── track_region.cc │ │ │ ├── track_region.h │ │ │ ├── trklt_region_tracker.cc │ │ │ └── trklt_region_tracker.h │ ├── mkfiles.sh │ └── third_party │ │ └── msinttypes │ │ ├── README.libmv │ │ ├── inttypes.h │ │ └── stdint.h ├── locale │ ├── CMakeLists.txt │ ├── boost_locale_wrapper.cpp │ ├── boost_locale_wrapper.h │ ├── msgfmt.cc │ └── osx_user_locale.mm ├── memutil │ ├── CMakeLists.txt │ ├── MEM_Allocator.h │ ├── MEM_CacheLimiter.h │ ├── MEM_CacheLimiterC-Api.h │ ├── MEM_RefCounted.h │ ├── MEM_RefCountedC-Api.h │ └── intern │ │ ├── MEM_CacheLimiterC-Api.cpp │ │ └── MEM_RefCountedC-Api.cpp ├── mikktspace │ ├── CMakeLists.txt │ ├── mikktspace.c │ └── mikktspace.h ├── moto │ ├── CMakeLists.txt │ ├── include │ │ ├── MT_CmMatrix4x4.h │ │ ├── MT_Matrix3x3.h │ │ ├── MT_Matrix3x3.inl │ │ ├── MT_Matrix4x4.h │ │ ├── MT_Matrix4x4.inl │ │ ├── MT_MinMax.h │ │ ├── MT_Optimize.h │ │ ├── MT_Point2.h │ │ ├── MT_Point2.inl │ │ ├── MT_Point3.h │ │ ├── MT_Point3.inl │ │ ├── MT_Quaternion.h │ │ ├── MT_Quaternion.inl │ │ ├── MT_Scalar.h │ │ ├── MT_Stream.h │ │ ├── MT_Transform.h │ │ ├── MT_Tuple2.h │ │ ├── MT_Tuple3.h │ │ ├── MT_Tuple4.h │ │ ├── MT_Vector2.h │ │ ├── MT_Vector2.inl │ │ ├── MT_Vector3.h │ │ ├── MT_Vector3.inl │ │ ├── MT_Vector4.h │ │ ├── MT_Vector4.inl │ │ ├── MT_assert.h │ │ └── MT_random.h │ └── intern │ │ ├── MT_Assert.cpp │ │ ├── MT_CmMatrix4x4.cpp │ │ ├── MT_Matrix3x3.cpp │ │ ├── MT_Matrix4x4.cpp │ │ ├── MT_Point3.cpp │ │ ├── MT_Quaternion.cpp │ │ ├── MT_Transform.cpp │ │ ├── MT_Vector2.cpp │ │ ├── MT_Vector3.cpp │ │ ├── MT_Vector4.cpp │ │ └── MT_random.cpp ├── opencolorio │ ├── CMakeLists.txt │ ├── fallback_impl.cc │ ├── gpu_shader_display_transform.glsl │ ├── ocio_capi.cc │ ├── ocio_capi.h │ ├── ocio_impl.cc │ ├── ocio_impl.h │ └── ocio_impl_glsl.cc ├── opensubdiv │ ├── CMakeLists.txt │ ├── gpu_shader_opensubdiv_fragment.glsl │ ├── gpu_shader_opensubdiv_geometry.glsl │ ├── gpu_shader_opensubdiv_vertex.glsl │ ├── opensubdiv_capi.cc │ ├── opensubdiv_capi.h │ ├── opensubdiv_converter.cc │ ├── opensubdiv_converter_capi.h │ ├── opensubdiv_device_context_cuda.cc │ ├── opensubdiv_device_context_cuda.h │ ├── opensubdiv_device_context_opencl.cc │ ├── opensubdiv_device_context_opencl.h │ ├── opensubdiv_evaluator_capi.cc │ ├── opensubdiv_gpu_capi.cc │ ├── opensubdiv_intern.h │ ├── opensubdiv_topology_refiner.h │ └── opensubdiv_utils_capi.cc ├── openvdb │ ├── CMakeLists.txt │ ├── intern │ │ ├── openvdb_dense_convert.cc │ │ ├── openvdb_dense_convert.h │ │ ├── openvdb_reader.cc │ │ ├── openvdb_reader.h │ │ ├── openvdb_writer.cc │ │ └── openvdb_writer.h │ ├── openvdb_capi.cc │ ├── openvdb_capi.h │ ├── openvdb_util.cc │ └── openvdb_util.h ├── rigidbody │ ├── CMakeLists.txt │ ├── RBI_api.h │ └── rb_bullet_api.cpp ├── smoke │ ├── CMakeLists.txt │ ├── extern │ │ └── smoke_API.h │ └── intern │ │ ├── EIGENVALUE_HELPER.cpp │ │ ├── EIGENVALUE_HELPER.h │ │ ├── FFT_NOISE.h │ │ ├── FLUID_3D.cpp │ │ ├── FLUID_3D.h │ │ ├── FLUID_3D_SOLVERS.cpp │ │ ├── FLUID_3D_STATIC.cpp │ │ ├── IMAGE.h │ │ ├── INTERPOLATE.h │ │ ├── LICENSE.txt │ │ ├── LU_HELPER.cpp │ │ ├── LU_HELPER.h │ │ ├── MERSENNETWISTER.h │ │ ├── Makefile.FFT │ │ ├── Makefile.cygwin │ │ ├── Makefile.linux │ │ ├── Makefile.mac │ │ ├── OBSTACLE.h │ │ ├── SPHERE.cpp │ │ ├── SPHERE.h │ │ ├── VEC3.h │ │ ├── WAVELET_NOISE.h │ │ ├── WTURBULENCE.cpp │ │ ├── WTURBULENCE.h │ │ ├── smoke_API.cpp │ │ └── tnt │ │ ├── jama_eig.h │ │ ├── jama_lu.h │ │ ├── tnt.h │ │ ├── tnt_array1d.h │ │ ├── tnt_array1d_utils.h │ │ ├── tnt_array2d.h │ │ ├── tnt_array2d_utils.h │ │ ├── tnt_array3d.h │ │ ├── tnt_array3d_utils.h │ │ ├── tnt_cmat.h │ │ ├── tnt_fortran_array1d.h │ │ ├── tnt_fortran_array1d_utils.h │ │ ├── tnt_fortran_array2d.h │ │ ├── tnt_fortran_array2d_utils.h │ │ ├── tnt_fortran_array3d.h │ │ ├── tnt_fortran_array3d_utils.h │ │ ├── tnt_i_refvec.h │ │ ├── tnt_math_utils.h │ │ ├── tnt_sparse_matrix_csr.h │ │ ├── tnt_stopwatch.h │ │ ├── tnt_subscript.h │ │ ├── tnt_vec.h │ │ └── tnt_version.h ├── string │ ├── CMakeLists.txt │ ├── STR_HashedString.h │ ├── STR_String.h │ └── intern │ │ └── STR_String.cpp └── utfconv │ ├── CMakeLists.txt │ ├── utf_winfunc.c │ ├── utf_winfunc.h │ ├── utfconv.c │ └── utfconv.h ├── make.bat ├── release ├── bin │ ├── blender-softwaregl │ └── blender-thumbnailer.py ├── darwin │ ├── README_codesigning.txt │ ├── blender.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── blender │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ ├── blender file icon.icns │ │ │ └── blender icon.icns │ └── blenderplayer.app │ │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── blenderplayer │ │ ├── PkgInfo │ │ └── Resources │ │ ├── blender file icon.icns │ │ └── blender player icon.icns ├── datafiles │ ├── DejaVuSans-Lite.sfd.bz2 │ ├── LICENSE-bfont.ttf.txt │ ├── LICENSE-bmonofont-i18n.ttf.txt │ ├── LICENSE-droidsans.ttf.txt │ ├── bfont.pfb │ ├── bfont.ttf │ ├── blender_icons.svg │ ├── blender_icons16 │ │ ├── icon16_action.dat │ │ ├── icon16_action_tweak.dat │ │ ├── icon16_aliased.dat │ │ ├── icon16_align.dat │ │ ├── icon16_anim.dat │ │ ├── icon16_anim_data.dat │ │ ├── icon16_antialiased.dat │ │ ├── icon16_append_blend.dat │ │ ├── icon16_armature_data.dat │ │ ├── icon16_arrow_leftright.dat │ │ ├── icon16_asset_manager.dat │ │ ├── icon16_auto.dat │ │ ├── icon16_automerge_off.dat │ │ ├── icon16_automerge_on.dat │ │ ├── icon16_axis_front.dat │ │ ├── icon16_axis_side.dat │ │ ├── icon16_axis_top.dat │ │ ├── icon16_back.dat │ │ ├── icon16_bbox.dat │ │ ├── icon16_blender.dat │ │ ├── icon16_boids.dat │ │ ├── icon16_bone_data.dat │ │ ├── icon16_bookmarks.dat │ │ ├── icon16_border_lasso.dat │ │ ├── icon16_border_rect.dat │ │ ├── icon16_bordermove.dat │ │ ├── icon16_brush_data.dat │ │ ├── icon16_buts.dat │ │ ├── icon16_camera_data.dat │ │ ├── icon16_camera_stereo.dat │ │ ├── icon16_cancel.dat │ │ ├── icon16_checkbox_dehlt.dat │ │ ├── icon16_checkbox_hlt.dat │ │ ├── icon16_clip.dat │ │ ├── icon16_clipuv_dehlt.dat │ │ ├── icon16_clipuv_hlt.dat │ │ ├── icon16_collapsemenu.dat │ │ ├── icon16_color.dat │ │ ├── icon16_color_blue.dat │ │ ├── icon16_color_green.dat │ │ ├── icon16_color_red.dat │ │ ├── icon16_console.dat │ │ ├── icon16_constraint.dat │ │ ├── icon16_constraint_bone.dat │ │ ├── icon16_constraint_data.dat │ │ ├── icon16_copy_id.dat │ │ ├── icon16_copydown.dat │ │ ├── icon16_cursor.dat │ │ ├── icon16_curve_bezcircle.dat │ │ ├── icon16_curve_bezcurve.dat │ │ ├── icon16_curve_data.dat │ │ ├── icon16_curve_ncircle.dat │ │ ├── icon16_curve_ncurve.dat │ │ ├── icon16_curve_path.dat │ │ ├── icon16_disclosure_tri_down.dat │ │ ├── icon16_disclosure_tri_right.dat │ │ ├── icon16_disk_drive.dat │ │ ├── icon16_dot.dat │ │ ├── icon16_dotsdown.dat │ │ ├── icon16_dotsup.dat │ │ ├── icon16_downarrow_hlt.dat │ │ ├── icon16_driver.dat │ │ ├── icon16_edgesel.dat │ │ ├── icon16_edit.dat │ │ ├── icon16_editmode_hlt.dat │ │ ├── icon16_empty_data.dat │ │ ├── icon16_error.dat │ │ ├── icon16_export.dat │ │ ├── icon16_external_data.dat │ │ ├── icon16_eyedropper.dat │ │ ├── icon16_facesel.dat │ │ ├── icon16_facesel_hlt.dat │ │ ├── icon16_fcurve.dat │ │ ├── icon16_ff.dat │ │ ├── icon16_file.dat │ │ ├── icon16_file_backup.dat │ │ ├── icon16_file_blank.dat │ │ ├── icon16_file_blend.dat │ │ ├── icon16_file_folder.dat │ │ ├── icon16_file_font.dat │ │ ├── icon16_file_hidden.dat │ │ ├── icon16_file_image.dat │ │ ├── icon16_file_movie.dat │ │ ├── icon16_file_parent.dat │ │ ├── icon16_file_refresh.dat │ │ ├── icon16_file_script.dat │ │ ├── icon16_file_sound.dat │ │ ├── icon16_file_text.dat │ │ ├── icon16_file_tick.dat │ │ ├── icon16_filesel.dat │ │ ├── icon16_filter.dat │ │ ├── icon16_font_data.dat │ │ ├── icon16_fontpreview.dat │ │ ├── icon16_force_boid.dat │ │ ├── icon16_force_charge.dat │ │ ├── icon16_force_curve.dat │ │ ├── icon16_force_drag.dat │ │ ├── icon16_force_force.dat │ │ ├── icon16_force_harmonic.dat │ │ ├── icon16_force_lennardjones.dat │ │ ├── icon16_force_magnetic.dat │ │ ├── icon16_force_smokeflow.dat │ │ ├── icon16_force_texture.dat │ │ ├── icon16_force_turbulence.dat │ │ ├── icon16_force_vortex.dat │ │ ├── icon16_force_wind.dat │ │ ├── icon16_forward.dat │ │ ├── icon16_frame_next.dat │ │ ├── icon16_frame_prev.dat │ │ ├── icon16_freeze.dat │ │ ├── icon16_fullscreen.dat │ │ ├── icon16_fullscreen_enter.dat │ │ ├── icon16_fullscreen_exit.dat │ │ ├── icon16_game.dat │ │ ├── icon16_ghost.dat │ │ ├── icon16_ghost_disabled.dat │ │ ├── icon16_ghost_enabled.dat │ │ ├── icon16_go_left.dat │ │ ├── icon16_greasepencil.dat │ │ ├── icon16_grid.dat │ │ ├── icon16_grip.dat │ │ ├── icon16_group.dat │ │ ├── icon16_group_bone.dat │ │ ├── icon16_group_uvs.dat │ │ ├── icon16_group_vcol.dat │ │ ├── icon16_group_vertex.dat │ │ ├── icon16_hair.dat │ │ ├── icon16_hand.dat │ │ ├── icon16_help.dat │ │ ├── icon16_hook.dat │ │ ├── icon16_image_alpha.dat │ │ ├── icon16_image_col.dat │ │ ├── icon16_image_data.dat │ │ ├── icon16_image_rgb.dat │ │ ├── icon16_image_rgb_alpha.dat │ │ ├── icon16_image_zdepth.dat │ │ ├── icon16_imagefile.dat │ │ ├── icon16_imasel.dat │ │ ├── icon16_imgdisplay.dat │ │ ├── icon16_import.dat │ │ ├── icon16_info.dat │ │ ├── icon16_inlink.dat │ │ ├── icon16_ipo.dat │ │ ├── icon16_ipo_back.dat │ │ ├── icon16_ipo_bezier.dat │ │ ├── icon16_ipo_bounce.dat │ │ ├── icon16_ipo_circ.dat │ │ ├── icon16_ipo_constant.dat │ │ ├── icon16_ipo_cubic.dat │ │ ├── icon16_ipo_ease_in.dat │ │ ├── icon16_ipo_ease_in_out.dat │ │ ├── icon16_ipo_ease_out.dat │ │ ├── icon16_ipo_elastic.dat │ │ ├── icon16_ipo_expo.dat │ │ ├── icon16_ipo_linear.dat │ │ ├── icon16_ipo_quad.dat │ │ ├── icon16_ipo_quart.dat │ │ ├── icon16_ipo_quint.dat │ │ ├── icon16_ipo_sine.dat │ │ ├── icon16_key_dehlt.dat │ │ ├── icon16_key_hlt.dat │ │ ├── icon16_keyingset.dat │ │ ├── icon16_lamp.dat │ │ ├── icon16_lamp_area.dat │ │ ├── icon16_lamp_data.dat │ │ ├── icon16_lamp_hemi.dat │ │ ├── icon16_lamp_point.dat │ │ ├── icon16_lamp_spot.dat │ │ ├── icon16_lamp_sun.dat │ │ ├── icon16_lattice_data.dat │ │ ├── icon16_layer_active.dat │ │ ├── icon16_layer_used.dat │ │ ├── icon16_library_data_broken.dat │ │ ├── icon16_library_data_direct.dat │ │ ├── icon16_library_data_indirect.dat │ │ ├── icon16_lightpaint.dat │ │ ├── icon16_lincurve.dat │ │ ├── icon16_line_data.dat │ │ ├── icon16_linenumbers_off.dat │ │ ├── icon16_linenumbers_on.dat │ │ ├── icon16_link.dat │ │ ├── icon16_link_area.dat │ │ ├── icon16_link_blend.dat │ │ ├── icon16_linked.dat │ │ ├── icon16_load_factory.dat │ │ ├── icon16_locked.dat │ │ ├── icon16_lockview_off.dat │ │ ├── icon16_lockview_on.dat │ │ ├── icon16_logic.dat │ │ ├── icon16_longdisplay.dat │ │ ├── icon16_loop_back.dat │ │ ├── icon16_loop_forwards.dat │ │ ├── icon16_loopsel.dat │ │ ├── icon16_man_rot.dat │ │ ├── icon16_man_scale.dat │ │ ├── icon16_man_trans.dat │ │ ├── icon16_manipul.dat │ │ ├── icon16_marker.dat │ │ ├── icon16_marker_hlt.dat │ │ ├── icon16_mat_sphere_sky.dat │ │ ├── icon16_matcube.dat │ │ ├── icon16_material.dat │ │ ├── icon16_material_data.dat │ │ ├── icon16_matplane.dat │ │ ├── icon16_matsphere.dat │ │ ├── icon16_menu_panel.dat │ │ ├── icon16_mesh_capsule.dat │ │ ├── icon16_mesh_circle.dat │ │ ├── icon16_mesh_cone.dat │ │ ├── icon16_mesh_cube.dat │ │ ├── icon16_mesh_cylinder.dat │ │ ├── icon16_mesh_data.dat │ │ ├── icon16_mesh_grid.dat │ │ ├── icon16_mesh_icosphere.dat │ │ ├── icon16_mesh_monkey.dat │ │ ├── icon16_mesh_plane.dat │ │ ├── icon16_mesh_torus.dat │ │ ├── icon16_mesh_uvsphere.dat │ │ ├── icon16_meta_ball.dat │ │ ├── icon16_meta_capsule.dat │ │ ├── icon16_meta_cube.dat │ │ ├── icon16_meta_data.dat │ │ ├── icon16_meta_ellipsoid.dat │ │ ├── icon16_meta_empty.dat │ │ ├── icon16_meta_plane.dat │ │ ├── icon16_mod_armature.dat │ │ ├── icon16_mod_array.dat │ │ ├── icon16_mod_bevel.dat │ │ ├── icon16_mod_boolean.dat │ │ ├── icon16_mod_build.dat │ │ ├── icon16_mod_cast.dat │ │ ├── icon16_mod_cloth.dat │ │ ├── icon16_mod_curve.dat │ │ ├── icon16_mod_data_transfer.dat │ │ ├── icon16_mod_decim.dat │ │ ├── icon16_mod_displace.dat │ │ ├── icon16_mod_dynamicpaint.dat │ │ ├── icon16_mod_edgesplit.dat │ │ ├── icon16_mod_explode.dat │ │ ├── icon16_mod_fluidsim.dat │ │ ├── icon16_mod_lattice.dat │ │ ├── icon16_mod_mask.dat │ │ ├── icon16_mod_meshdeform.dat │ │ ├── icon16_mod_mirror.dat │ │ ├── icon16_mod_multires.dat │ │ ├── icon16_mod_normaledit.dat │ │ ├── icon16_mod_ocean.dat │ │ ├── icon16_mod_particles.dat │ │ ├── icon16_mod_physics.dat │ │ ├── icon16_mod_remesh.dat │ │ ├── icon16_mod_screw.dat │ │ ├── icon16_mod_shrinkwrap.dat │ │ ├── icon16_mod_simpledeform.dat │ │ ├── icon16_mod_skin.dat │ │ ├── icon16_mod_smoke.dat │ │ ├── icon16_mod_smooth.dat │ │ ├── icon16_mod_soft.dat │ │ ├── icon16_mod_solidify.dat │ │ ├── icon16_mod_subsurf.dat │ │ ├── icon16_mod_triangulate.dat │ │ ├── icon16_mod_uvproject.dat │ │ ├── icon16_mod_vertex_weight.dat │ │ ├── icon16_mod_warp.dat │ │ ├── icon16_mod_wave.dat │ │ ├── icon16_mod_wireframe.dat │ │ ├── icon16_modifier.dat │ │ ├── icon16_monkey.dat │ │ ├── icon16_mute_ipo_off.dat │ │ ├── icon16_mute_ipo_on.dat │ │ ├── icon16_ndof_dom.dat │ │ ├── icon16_ndof_fly.dat │ │ ├── icon16_ndof_trans.dat │ │ ├── icon16_ndof_turn.dat │ │ ├── icon16_new.dat │ │ ├── icon16_newfolder.dat │ │ ├── icon16_next_keyframe.dat │ │ ├── icon16_nla.dat │ │ ├── icon16_nla_pushdown.dat │ │ ├── icon16_nocurve.dat │ │ ├── icon16_node.dat │ │ ├── icon16_node_insert_off.dat │ │ ├── icon16_node_insert_on.dat │ │ ├── icon16_node_sel.dat │ │ ├── icon16_nodetree.dat │ │ ├── icon16_normalize_fcurves.dat │ │ ├── icon16_object_data.dat │ │ ├── icon16_object_datamode.dat │ │ ├── icon16_oops.dat │ │ ├── icon16_open_recent.dat │ │ ├── icon16_ortho.dat │ │ ├── icon16_outliner_data_armature.dat │ │ ├── icon16_outliner_data_camera.dat │ │ ├── icon16_outliner_data_curve.dat │ │ ├── icon16_outliner_data_empty.dat │ │ ├── icon16_outliner_data_font.dat │ │ ├── icon16_outliner_data_lamp.dat │ │ ├── icon16_outliner_data_lattice.dat │ │ ├── icon16_outliner_data_mesh.dat │ │ ├── icon16_outliner_data_meta.dat │ │ ├── icon16_outliner_data_pose.dat │ │ ├── icon16_outliner_data_speaker.dat │ │ ├── icon16_outliner_data_surface.dat │ │ ├── icon16_outliner_ob_armature.dat │ │ ├── icon16_outliner_ob_camera.dat │ │ ├── icon16_outliner_ob_curve.dat │ │ ├── icon16_outliner_ob_empty.dat │ │ ├── icon16_outliner_ob_font.dat │ │ ├── icon16_outliner_ob_lamp.dat │ │ ├── icon16_outliner_ob_lattice.dat │ │ ├── icon16_outliner_ob_mesh.dat │ │ ├── icon16_outliner_ob_meta.dat │ │ ├── icon16_outliner_ob_speaker.dat │ │ ├── icon16_outliner_ob_surface.dat │ │ ├── icon16_package.dat │ │ ├── icon16_panel_close.dat │ │ ├── icon16_particle_data.dat │ │ ├── icon16_particle_path.dat │ │ ├── icon16_particle_point.dat │ │ ├── icon16_particle_tip.dat │ │ ├── icon16_particlemode.dat │ │ ├── icon16_particles.dat │ │ ├── icon16_pastedown.dat │ │ ├── icon16_pasteflipdown.dat │ │ ├── icon16_pasteflipup.dat │ │ ├── icon16_pause.dat │ │ ├── icon16_physics.dat │ │ ├── icon16_pinned.dat │ │ ├── icon16_play.dat │ │ ├── icon16_play_audio.dat │ │ ├── icon16_play_reverse.dat │ │ ├── icon16_plug.dat │ │ ├── icon16_plugin.dat │ │ ├── icon16_plus.dat │ │ ├── icon16_pmarker.dat │ │ ├── icon16_pmarker_act.dat │ │ ├── icon16_pmarker_sel.dat │ │ ├── icon16_pose_data.dat │ │ ├── icon16_pose_hlt.dat │ │ ├── icon16_potato.dat │ │ ├── icon16_preferences.dat │ │ ├── icon16_prev_keyframe.dat │ │ ├── icon16_preview_range.dat │ │ ├── icon16_prop_con.dat │ │ ├── icon16_prop_off.dat │ │ ├── icon16_prop_on.dat │ │ ├── icon16_question.dat │ │ ├── icon16_quit.dat │ │ ├── icon16_radio.dat │ │ ├── icon16_radiobut_off.dat │ │ ├── icon16_radiobut_on.dat │ │ ├── icon16_rec.dat │ │ ├── icon16_recover_auto.dat │ │ ├── icon16_recover_last.dat │ │ ├── icon16_render_animation.dat │ │ ├── icon16_render_region.dat │ │ ├── icon16_render_result.dat │ │ ├── icon16_render_still.dat │ │ ├── icon16_renderlayers.dat │ │ ├── icon16_restrict_color_off.dat │ │ ├── icon16_restrict_color_on.dat │ │ ├── icon16_restrict_render_off.dat │ │ ├── icon16_restrict_render_on.dat │ │ ├── icon16_restrict_select_off.dat │ │ ├── icon16_restrict_select_on.dat │ │ ├── icon16_restrict_view_off.dat │ │ ├── icon16_restrict_view_on.dat │ │ ├── icon16_retopo.dat │ │ ├── icon16_rew.dat │ │ ├── icon16_rightarrow.dat │ │ ├── icon16_rightarrow_thin.dat │ │ ├── icon16_rna.dat │ │ ├── icon16_rna_add.dat │ │ ├── icon16_rndcurve.dat │ │ ├── icon16_rootcurve.dat │ │ ├── icon16_rotactive.dat │ │ ├── icon16_rotate.dat │ │ ├── icon16_rotatecenter.dat │ │ ├── icon16_rotatecollection.dat │ │ ├── icon16_save_as.dat │ │ ├── icon16_save_copy.dat │ │ ├── icon16_save_prefs.dat │ │ ├── icon16_scene.dat │ │ ├── icon16_scene_data.dat │ │ ├── icon16_screen_back.dat │ │ ├── icon16_script.dat │ │ ├── icon16_scriptplugins.dat │ │ ├── icon16_scriptwin.dat │ │ ├── icon16_sculptmode_hlt.dat │ │ ├── icon16_seq_chroma_scope.dat │ │ ├── icon16_seq_histogram.dat │ │ ├── icon16_seq_luma_waveform.dat │ │ ├── icon16_seq_preview.dat │ │ ├── icon16_seq_sequencer.dat │ │ ├── icon16_seq_splitview.dat │ │ ├── icon16_sequence.dat │ │ ├── icon16_settings.dat │ │ ├── icon16_shapekey_data.dat │ │ ├── icon16_sharpcurve.dat │ │ ├── icon16_shortdisplay.dat │ │ ├── icon16_smooth.dat │ │ ├── icon16_smoothcurve.dat │ │ ├── icon16_snap_edge.dat │ │ ├── icon16_snap_face.dat │ │ ├── icon16_snap_grid.dat │ │ ├── icon16_snap_increment.dat │ │ ├── icon16_snap_normal.dat │ │ ├── icon16_snap_off.dat │ │ ├── icon16_snap_on.dat │ │ ├── icon16_snap_peel_object.dat │ │ ├── icon16_snap_surface.dat │ │ ├── icon16_snap_vertex.dat │ │ ├── icon16_snap_volume.dat │ │ ├── icon16_solid.dat │ │ ├── icon16_solo_off.dat │ │ ├── icon16_solo_on.dat │ │ ├── icon16_sortalpha.dat │ │ ├── icon16_sortbyext.dat │ │ ├── icon16_sortsize.dat │ │ ├── icon16_sorttime.dat │ │ ├── icon16_sound.dat │ │ ├── icon16_space2.dat │ │ ├── icon16_space3.dat │ │ ├── icon16_speaker.dat │ │ ├── icon16_spherecurve.dat │ │ ├── icon16_splitscreen.dat │ │ ├── icon16_sticky_uvs_disable.dat │ │ ├── icon16_sticky_uvs_loc.dat │ │ ├── icon16_sticky_uvs_vert.dat │ │ ├── icon16_strands.dat │ │ ├── icon16_stylus_pressure.dat │ │ ├── icon16_surface_data.dat │ │ ├── icon16_surface_ncircle.dat │ │ ├── icon16_surface_ncurve.dat │ │ ├── icon16_surface_ncylinder.dat │ │ ├── icon16_surface_nsphere.dat │ │ ├── icon16_surface_nsurface.dat │ │ ├── icon16_surface_ntorus.dat │ │ ├── icon16_syntax_off.dat │ │ ├── icon16_syntax_on.dat │ │ ├── icon16_text.dat │ │ ├── icon16_texture.dat │ │ ├── icon16_texture_data.dat │ │ ├── icon16_texture_shaded.dat │ │ ├── icon16_time.dat │ │ ├── icon16_tpaint_hlt.dat │ │ ├── icon16_tria_down.dat │ │ ├── icon16_tria_down_bar.dat │ │ ├── icon16_tria_left.dat │ │ ├── icon16_tria_left_bar.dat │ │ ├── icon16_tria_right.dat │ │ ├── icon16_tria_right_bar.dat │ │ ├── icon16_tria_up.dat │ │ ├── icon16_tria_up_bar.dat │ │ ├── icon16_uglypackage.dat │ │ ├── icon16_ui.dat │ │ ├── icon16_unlinked.dat │ │ ├── icon16_unlocked.dat │ │ ├── icon16_unpinned.dat │ │ ├── icon16_url.dat │ │ ├── icon16_uv_edgesel.dat │ │ ├── icon16_uv_facesel.dat │ │ ├── icon16_uv_islandsel.dat │ │ ├── icon16_uv_sync_select.dat │ │ ├── icon16_uv_vertexsel.dat │ │ ├── icon16_vertexsel.dat │ │ ├── icon16_view3d.dat │ │ ├── icon16_viewzoom.dat │ │ ├── icon16_visible_ipo_off.dat │ │ ├── icon16_visible_ipo_on.dat │ │ ├── icon16_vpaint_hlt.dat │ │ ├── icon16_wire.dat │ │ ├── icon16_wordwrap_off.dat │ │ ├── icon16_wordwrap_on.dat │ │ ├── icon16_world.dat │ │ ├── icon16_world_data.dat │ │ ├── icon16_wpaint_hlt.dat │ │ ├── icon16_x.dat │ │ ├── icon16_zoom_all.dat │ │ ├── icon16_zoom_in.dat │ │ ├── icon16_zoom_out.dat │ │ ├── icon16_zoom_previous.dat │ │ ├── icon16_zoom_selected.dat │ │ ├── icon16_zoomin.dat │ │ └── icon16_zoomout.dat │ ├── blender_icons32 │ │ ├── icon32_action.dat │ │ ├── icon32_action_tweak.dat │ │ ├── icon32_aliased.dat │ │ ├── icon32_align.dat │ │ ├── icon32_anim.dat │ │ ├── icon32_anim_data.dat │ │ ├── icon32_antialiased.dat │ │ ├── icon32_append_blend.dat │ │ ├── icon32_armature_data.dat │ │ ├── icon32_arrow_leftright.dat │ │ ├── icon32_asset_manager.dat │ │ ├── icon32_auto.dat │ │ ├── icon32_automerge_off.dat │ │ ├── icon32_automerge_on.dat │ │ ├── icon32_axis_front.dat │ │ ├── icon32_axis_side.dat │ │ ├── icon32_axis_top.dat │ │ ├── icon32_back.dat │ │ ├── icon32_bbox.dat │ │ ├── icon32_blender.dat │ │ ├── icon32_boids.dat │ │ ├── icon32_bone_data.dat │ │ ├── icon32_bookmarks.dat │ │ ├── icon32_border_lasso.dat │ │ ├── icon32_border_rect.dat │ │ ├── icon32_bordermove.dat │ │ ├── icon32_brush_data.dat │ │ ├── icon32_buts.dat │ │ ├── icon32_camera_data.dat │ │ ├── icon32_camera_stereo.dat │ │ ├── icon32_cancel.dat │ │ ├── icon32_checkbox_dehlt.dat │ │ ├── icon32_checkbox_hlt.dat │ │ ├── icon32_clip.dat │ │ ├── icon32_clipuv_dehlt.dat │ │ ├── icon32_clipuv_hlt.dat │ │ ├── icon32_collapsemenu.dat │ │ ├── icon32_color.dat │ │ ├── icon32_color_blue.dat │ │ ├── icon32_color_green.dat │ │ ├── icon32_color_red.dat │ │ ├── icon32_console.dat │ │ ├── icon32_constraint.dat │ │ ├── icon32_constraint_bone.dat │ │ ├── icon32_constraint_data.dat │ │ ├── icon32_copy_id.dat │ │ ├── icon32_copydown.dat │ │ ├── icon32_cursor.dat │ │ ├── icon32_curve_bezcircle.dat │ │ ├── icon32_curve_bezcurve.dat │ │ ├── icon32_curve_data.dat │ │ ├── icon32_curve_ncircle.dat │ │ ├── icon32_curve_ncurve.dat │ │ ├── icon32_curve_path.dat │ │ ├── icon32_disclosure_tri_down.dat │ │ ├── icon32_disclosure_tri_right.dat │ │ ├── icon32_disk_drive.dat │ │ ├── icon32_dot.dat │ │ ├── icon32_dotsdown.dat │ │ ├── icon32_dotsup.dat │ │ ├── icon32_downarrow_hlt.dat │ │ ├── icon32_driver.dat │ │ ├── icon32_edgesel.dat │ │ ├── icon32_edit.dat │ │ ├── icon32_editmode_hlt.dat │ │ ├── icon32_empty_data.dat │ │ ├── icon32_error.dat │ │ ├── icon32_export.dat │ │ ├── icon32_external_data.dat │ │ ├── icon32_eyedropper.dat │ │ ├── icon32_facesel.dat │ │ ├── icon32_facesel_hlt.dat │ │ ├── icon32_fcurve.dat │ │ ├── icon32_ff.dat │ │ ├── icon32_file.dat │ │ ├── icon32_file_backup.dat │ │ ├── icon32_file_blank.dat │ │ ├── icon32_file_blend.dat │ │ ├── icon32_file_folder.dat │ │ ├── icon32_file_font.dat │ │ ├── icon32_file_hidden.dat │ │ ├── icon32_file_image.dat │ │ ├── icon32_file_movie.dat │ │ ├── icon32_file_parent.dat │ │ ├── icon32_file_refresh.dat │ │ ├── icon32_file_script.dat │ │ ├── icon32_file_sound.dat │ │ ├── icon32_file_text.dat │ │ ├── icon32_file_tick.dat │ │ ├── icon32_filesel.dat │ │ ├── icon32_filter.dat │ │ ├── icon32_font_data.dat │ │ ├── icon32_fontpreview.dat │ │ ├── icon32_force_boid.dat │ │ ├── icon32_force_charge.dat │ │ ├── icon32_force_curve.dat │ │ ├── icon32_force_drag.dat │ │ ├── icon32_force_force.dat │ │ ├── icon32_force_harmonic.dat │ │ ├── icon32_force_lennardjones.dat │ │ ├── icon32_force_magnetic.dat │ │ ├── icon32_force_smokeflow.dat │ │ ├── icon32_force_texture.dat │ │ ├── icon32_force_turbulence.dat │ │ ├── icon32_force_vortex.dat │ │ ├── icon32_force_wind.dat │ │ ├── icon32_forward.dat │ │ ├── icon32_frame_next.dat │ │ ├── icon32_frame_prev.dat │ │ ├── icon32_freeze.dat │ │ ├── icon32_fullscreen.dat │ │ ├── icon32_fullscreen_enter.dat │ │ ├── icon32_fullscreen_exit.dat │ │ ├── icon32_game.dat │ │ ├── icon32_ghost.dat │ │ ├── icon32_ghost_disabled.dat │ │ ├── icon32_ghost_enabled.dat │ │ ├── icon32_go_left.dat │ │ ├── icon32_greasepencil.dat │ │ ├── icon32_grid.dat │ │ ├── icon32_grip.dat │ │ ├── icon32_group.dat │ │ ├── icon32_group_bone.dat │ │ ├── icon32_group_uvs.dat │ │ ├── icon32_group_vcol.dat │ │ ├── icon32_group_vertex.dat │ │ ├── icon32_hair.dat │ │ ├── icon32_hand.dat │ │ ├── icon32_help.dat │ │ ├── icon32_hook.dat │ │ ├── icon32_image_alpha.dat │ │ ├── icon32_image_col.dat │ │ ├── icon32_image_data.dat │ │ ├── icon32_image_rgb.dat │ │ ├── icon32_image_rgb_alpha.dat │ │ ├── icon32_image_zdepth.dat │ │ ├── icon32_imagefile.dat │ │ ├── icon32_imasel.dat │ │ ├── icon32_imgdisplay.dat │ │ ├── icon32_import.dat │ │ ├── icon32_info.dat │ │ ├── icon32_inlink.dat │ │ ├── icon32_ipo.dat │ │ ├── icon32_ipo_back.dat │ │ ├── icon32_ipo_bezier.dat │ │ ├── icon32_ipo_bounce.dat │ │ ├── icon32_ipo_circ.dat │ │ ├── icon32_ipo_constant.dat │ │ ├── icon32_ipo_cubic.dat │ │ ├── icon32_ipo_ease_in.dat │ │ ├── icon32_ipo_ease_in_out.dat │ │ ├── icon32_ipo_ease_out.dat │ │ ├── icon32_ipo_elastic.dat │ │ ├── icon32_ipo_expo.dat │ │ ├── icon32_ipo_linear.dat │ │ ├── icon32_ipo_quad.dat │ │ ├── icon32_ipo_quart.dat │ │ ├── icon32_ipo_quint.dat │ │ ├── icon32_ipo_sine.dat │ │ ├── icon32_key_dehlt.dat │ │ ├── icon32_key_hlt.dat │ │ ├── icon32_keyingset.dat │ │ ├── icon32_lamp.dat │ │ ├── icon32_lamp_area.dat │ │ ├── icon32_lamp_data.dat │ │ ├── icon32_lamp_hemi.dat │ │ ├── icon32_lamp_point.dat │ │ ├── icon32_lamp_spot.dat │ │ ├── icon32_lamp_sun.dat │ │ ├── icon32_lattice_data.dat │ │ ├── icon32_layer_active.dat │ │ ├── icon32_layer_used.dat │ │ ├── icon32_library_data_broken.dat │ │ ├── icon32_library_data_direct.dat │ │ ├── icon32_library_data_indirect.dat │ │ ├── icon32_lightpaint.dat │ │ ├── icon32_lincurve.dat │ │ ├── icon32_line_data.dat │ │ ├── icon32_linenumbers_off.dat │ │ ├── icon32_linenumbers_on.dat │ │ ├── icon32_link.dat │ │ ├── icon32_link_area.dat │ │ ├── icon32_link_blend.dat │ │ ├── icon32_linked.dat │ │ ├── icon32_load_factory.dat │ │ ├── icon32_locked.dat │ │ ├── icon32_lockview_off.dat │ │ ├── icon32_lockview_on.dat │ │ ├── icon32_logic.dat │ │ ├── icon32_longdisplay.dat │ │ ├── icon32_loop_back.dat │ │ ├── icon32_loop_forwards.dat │ │ ├── icon32_loopsel.dat │ │ ├── icon32_man_rot.dat │ │ ├── icon32_man_scale.dat │ │ ├── icon32_man_trans.dat │ │ ├── icon32_manipul.dat │ │ ├── icon32_marker.dat │ │ ├── icon32_marker_hlt.dat │ │ ├── icon32_mat_sphere_sky.dat │ │ ├── icon32_matcube.dat │ │ ├── icon32_material.dat │ │ ├── icon32_material_data.dat │ │ ├── icon32_matplane.dat │ │ ├── icon32_matsphere.dat │ │ ├── icon32_menu_panel.dat │ │ ├── icon32_mesh_capsule.dat │ │ ├── icon32_mesh_circle.dat │ │ ├── icon32_mesh_cone.dat │ │ ├── icon32_mesh_cube.dat │ │ ├── icon32_mesh_cylinder.dat │ │ ├── icon32_mesh_data.dat │ │ ├── icon32_mesh_grid.dat │ │ ├── icon32_mesh_icosphere.dat │ │ ├── icon32_mesh_monkey.dat │ │ ├── icon32_mesh_plane.dat │ │ ├── icon32_mesh_torus.dat │ │ ├── icon32_mesh_uvsphere.dat │ │ ├── icon32_meta_ball.dat │ │ ├── icon32_meta_capsule.dat │ │ ├── icon32_meta_cube.dat │ │ ├── icon32_meta_data.dat │ │ ├── icon32_meta_ellipsoid.dat │ │ ├── icon32_meta_empty.dat │ │ ├── icon32_meta_plane.dat │ │ ├── icon32_mod_armature.dat │ │ ├── icon32_mod_array.dat │ │ ├── icon32_mod_bevel.dat │ │ ├── icon32_mod_boolean.dat │ │ ├── icon32_mod_build.dat │ │ ├── icon32_mod_cast.dat │ │ ├── icon32_mod_cloth.dat │ │ ├── icon32_mod_curve.dat │ │ ├── icon32_mod_data_transfer.dat │ │ ├── icon32_mod_decim.dat │ │ ├── icon32_mod_displace.dat │ │ ├── icon32_mod_dynamicpaint.dat │ │ ├── icon32_mod_edgesplit.dat │ │ ├── icon32_mod_explode.dat │ │ ├── icon32_mod_fluidsim.dat │ │ ├── icon32_mod_lattice.dat │ │ ├── icon32_mod_mask.dat │ │ ├── icon32_mod_meshdeform.dat │ │ ├── icon32_mod_mirror.dat │ │ ├── icon32_mod_multires.dat │ │ ├── icon32_mod_normaledit.dat │ │ ├── icon32_mod_ocean.dat │ │ ├── icon32_mod_particles.dat │ │ ├── icon32_mod_physics.dat │ │ ├── icon32_mod_remesh.dat │ │ ├── icon32_mod_screw.dat │ │ ├── icon32_mod_shrinkwrap.dat │ │ ├── icon32_mod_simpledeform.dat │ │ ├── icon32_mod_skin.dat │ │ ├── icon32_mod_smoke.dat │ │ ├── icon32_mod_smooth.dat │ │ ├── icon32_mod_soft.dat │ │ ├── icon32_mod_solidify.dat │ │ ├── icon32_mod_subsurf.dat │ │ ├── icon32_mod_triangulate.dat │ │ ├── icon32_mod_uvproject.dat │ │ ├── icon32_mod_vertex_weight.dat │ │ ├── icon32_mod_warp.dat │ │ ├── icon32_mod_wave.dat │ │ ├── icon32_mod_wireframe.dat │ │ ├── icon32_modifier.dat │ │ ├── icon32_monkey.dat │ │ ├── icon32_mute_ipo_off.dat │ │ ├── icon32_mute_ipo_on.dat │ │ ├── icon32_ndof_dom.dat │ │ ├── icon32_ndof_fly.dat │ │ ├── icon32_ndof_trans.dat │ │ ├── icon32_ndof_turn.dat │ │ ├── icon32_new.dat │ │ ├── icon32_newfolder.dat │ │ ├── icon32_next_keyframe.dat │ │ ├── icon32_nla.dat │ │ ├── icon32_nla_pushdown.dat │ │ ├── icon32_nocurve.dat │ │ ├── icon32_node.dat │ │ ├── icon32_node_insert_off.dat │ │ ├── icon32_node_insert_on.dat │ │ ├── icon32_node_sel.dat │ │ ├── icon32_nodetree.dat │ │ ├── icon32_normalize_fcurves.dat │ │ ├── icon32_object_data.dat │ │ ├── icon32_object_datamode.dat │ │ ├── icon32_oops.dat │ │ ├── icon32_open_recent.dat │ │ ├── icon32_ortho.dat │ │ ├── icon32_outliner_data_armature.dat │ │ ├── icon32_outliner_data_camera.dat │ │ ├── icon32_outliner_data_curve.dat │ │ ├── icon32_outliner_data_empty.dat │ │ ├── icon32_outliner_data_font.dat │ │ ├── icon32_outliner_data_lamp.dat │ │ ├── icon32_outliner_data_lattice.dat │ │ ├── icon32_outliner_data_mesh.dat │ │ ├── icon32_outliner_data_meta.dat │ │ ├── icon32_outliner_data_pose.dat │ │ ├── icon32_outliner_data_speaker.dat │ │ ├── icon32_outliner_data_surface.dat │ │ ├── icon32_outliner_ob_armature.dat │ │ ├── icon32_outliner_ob_camera.dat │ │ ├── icon32_outliner_ob_curve.dat │ │ ├── icon32_outliner_ob_empty.dat │ │ ├── icon32_outliner_ob_font.dat │ │ ├── icon32_outliner_ob_lamp.dat │ │ ├── icon32_outliner_ob_lattice.dat │ │ ├── icon32_outliner_ob_mesh.dat │ │ ├── icon32_outliner_ob_meta.dat │ │ ├── icon32_outliner_ob_speaker.dat │ │ ├── icon32_outliner_ob_surface.dat │ │ ├── icon32_package.dat │ │ ├── icon32_panel_close.dat │ │ ├── icon32_particle_data.dat │ │ ├── icon32_particle_path.dat │ │ ├── icon32_particle_point.dat │ │ ├── icon32_particle_tip.dat │ │ ├── icon32_particlemode.dat │ │ ├── icon32_particles.dat │ │ ├── icon32_pastedown.dat │ │ ├── icon32_pasteflipdown.dat │ │ ├── icon32_pasteflipup.dat │ │ ├── icon32_pause.dat │ │ ├── icon32_physics.dat │ │ ├── icon32_pinned.dat │ │ ├── icon32_play.dat │ │ ├── icon32_play_audio.dat │ │ ├── icon32_play_reverse.dat │ │ ├── icon32_plug.dat │ │ ├── icon32_plugin.dat │ │ ├── icon32_plus.dat │ │ ├── icon32_pmarker.dat │ │ ├── icon32_pmarker_act.dat │ │ ├── icon32_pmarker_sel.dat │ │ ├── icon32_pose_data.dat │ │ ├── icon32_pose_hlt.dat │ │ ├── icon32_potato.dat │ │ ├── icon32_preferences.dat │ │ ├── icon32_prev_keyframe.dat │ │ ├── icon32_preview_range.dat │ │ ├── icon32_prop_con.dat │ │ ├── icon32_prop_off.dat │ │ ├── icon32_prop_on.dat │ │ ├── icon32_question.dat │ │ ├── icon32_quit.dat │ │ ├── icon32_radio.dat │ │ ├── icon32_radiobut_off.dat │ │ ├── icon32_radiobut_on.dat │ │ ├── icon32_rec.dat │ │ ├── icon32_recover_auto.dat │ │ ├── icon32_recover_last.dat │ │ ├── icon32_render_animation.dat │ │ ├── icon32_render_region.dat │ │ ├── icon32_render_result.dat │ │ ├── icon32_render_still.dat │ │ ├── icon32_renderlayers.dat │ │ ├── icon32_restrict_color_off.dat │ │ ├── icon32_restrict_color_on.dat │ │ ├── icon32_restrict_render_off.dat │ │ ├── icon32_restrict_render_on.dat │ │ ├── icon32_restrict_select_off.dat │ │ ├── icon32_restrict_select_on.dat │ │ ├── icon32_restrict_view_off.dat │ │ ├── icon32_restrict_view_on.dat │ │ ├── icon32_retopo.dat │ │ ├── icon32_rew.dat │ │ ├── icon32_rightarrow.dat │ │ ├── icon32_rightarrow_thin.dat │ │ ├── icon32_rna.dat │ │ ├── icon32_rna_add.dat │ │ ├── icon32_rndcurve.dat │ │ ├── icon32_rootcurve.dat │ │ ├── icon32_rotactive.dat │ │ ├── icon32_rotate.dat │ │ ├── icon32_rotatecenter.dat │ │ ├── icon32_rotatecollection.dat │ │ ├── icon32_save_as.dat │ │ ├── icon32_save_copy.dat │ │ ├── icon32_save_prefs.dat │ │ ├── icon32_scene.dat │ │ ├── icon32_scene_data.dat │ │ ├── icon32_screen_back.dat │ │ ├── icon32_script.dat │ │ ├── icon32_scriptplugins.dat │ │ ├── icon32_scriptwin.dat │ │ ├── icon32_sculptmode_hlt.dat │ │ ├── icon32_seq_chroma_scope.dat │ │ ├── icon32_seq_histogram.dat │ │ ├── icon32_seq_luma_waveform.dat │ │ ├── icon32_seq_preview.dat │ │ ├── icon32_seq_sequencer.dat │ │ ├── icon32_seq_splitview.dat │ │ ├── icon32_sequence.dat │ │ ├── icon32_settings.dat │ │ ├── icon32_shapekey_data.dat │ │ ├── icon32_sharpcurve.dat │ │ ├── icon32_shortdisplay.dat │ │ ├── icon32_smooth.dat │ │ ├── icon32_smoothcurve.dat │ │ ├── icon32_snap_edge.dat │ │ ├── icon32_snap_face.dat │ │ ├── icon32_snap_grid.dat │ │ ├── icon32_snap_increment.dat │ │ ├── icon32_snap_normal.dat │ │ ├── icon32_snap_off.dat │ │ ├── icon32_snap_on.dat │ │ ├── icon32_snap_peel_object.dat │ │ ├── icon32_snap_surface.dat │ │ ├── icon32_snap_vertex.dat │ │ ├── icon32_snap_volume.dat │ │ ├── icon32_solid.dat │ │ ├── icon32_solo_off.dat │ │ ├── icon32_solo_on.dat │ │ ├── icon32_sortalpha.dat │ │ ├── icon32_sortbyext.dat │ │ ├── icon32_sortsize.dat │ │ ├── icon32_sorttime.dat │ │ ├── icon32_sound.dat │ │ ├── icon32_space2.dat │ │ ├── icon32_space3.dat │ │ ├── icon32_speaker.dat │ │ ├── icon32_spherecurve.dat │ │ ├── icon32_splitscreen.dat │ │ ├── icon32_sticky_uvs_disable.dat │ │ ├── icon32_sticky_uvs_loc.dat │ │ ├── icon32_sticky_uvs_vert.dat │ │ ├── icon32_strands.dat │ │ ├── icon32_stylus_pressure.dat │ │ ├── icon32_surface_data.dat │ │ ├── icon32_surface_ncircle.dat │ │ ├── icon32_surface_ncurve.dat │ │ ├── icon32_surface_ncylinder.dat │ │ ├── icon32_surface_nsphere.dat │ │ ├── icon32_surface_nsurface.dat │ │ ├── icon32_surface_ntorus.dat │ │ ├── icon32_syntax_off.dat │ │ ├── icon32_syntax_on.dat │ │ ├── icon32_text.dat │ │ ├── icon32_texture.dat │ │ ├── icon32_texture_data.dat │ │ ├── icon32_texture_shaded.dat │ │ ├── icon32_time.dat │ │ ├── icon32_tpaint_hlt.dat │ │ ├── icon32_tria_down.dat │ │ ├── icon32_tria_down_bar.dat │ │ ├── icon32_tria_left.dat │ │ ├── icon32_tria_left_bar.dat │ │ ├── icon32_tria_right.dat │ │ ├── icon32_tria_right_bar.dat │ │ ├── icon32_tria_up.dat │ │ ├── icon32_tria_up_bar.dat │ │ ├── icon32_uglypackage.dat │ │ ├── icon32_ui.dat │ │ ├── icon32_unlinked.dat │ │ ├── icon32_unlocked.dat │ │ ├── icon32_unpinned.dat │ │ ├── icon32_url.dat │ │ ├── icon32_uv_edgesel.dat │ │ ├── icon32_uv_facesel.dat │ │ ├── icon32_uv_islandsel.dat │ │ ├── icon32_uv_sync_select.dat │ │ ├── icon32_uv_vertexsel.dat │ │ ├── icon32_vertexsel.dat │ │ ├── icon32_view3d.dat │ │ ├── icon32_viewzoom.dat │ │ ├── icon32_visible_ipo_off.dat │ │ ├── icon32_visible_ipo_on.dat │ │ ├── icon32_vpaint_hlt.dat │ │ ├── icon32_wire.dat │ │ ├── icon32_wordwrap_off.dat │ │ ├── icon32_wordwrap_on.dat │ │ ├── icon32_world.dat │ │ ├── icon32_world_data.dat │ │ ├── icon32_wpaint_hlt.dat │ │ ├── icon32_x.dat │ │ ├── icon32_zoom_all.dat │ │ ├── icon32_zoom_in.dat │ │ ├── icon32_zoom_out.dat │ │ ├── icon32_zoom_previous.dat │ │ ├── icon32_zoom_selected.dat │ │ ├── icon32_zoomin.dat │ │ └── icon32_zoomout.dat │ ├── blender_icons_update.py │ ├── bmonofont.ttf │ ├── brushicons │ │ ├── add.png │ │ ├── blob.png │ │ ├── blur.png │ │ ├── clay.png │ │ ├── claystrips.png │ │ ├── clone.png │ │ ├── crease.png │ │ ├── darken.png │ │ ├── draw.png │ │ ├── fill.png │ │ ├── flatten.png │ │ ├── grab.png │ │ ├── inflate.png │ │ ├── layer.png │ │ ├── lighten.png │ │ ├── mask.png │ │ ├── mix.png │ │ ├── multiply.png │ │ ├── nudge.png │ │ ├── pinch.png │ │ ├── scrape.png │ │ ├── smear.png │ │ ├── smooth.png │ │ ├── snake_hook.png │ │ ├── soften.png │ │ ├── subtract.png │ │ ├── texdraw.png │ │ ├── texfill.png │ │ ├── texmask.png │ │ ├── thumb.png │ │ ├── twist.png │ │ └── vertexdraw.png │ ├── colormanagement │ │ ├── config.ocio │ │ └── luts │ │ │ ├── aces_to_xyz.spimtx │ │ │ ├── adx_adx10_to_cdd.spimtx │ │ │ ├── adx_cdd_to_cid.spimtx │ │ │ ├── adx_cid_to_rle.spi1d │ │ │ ├── adx_exp_to_aces.spimtx │ │ │ ├── colorworks_filmlg_to_p3.3dl │ │ │ ├── dci_xyz.spi1d │ │ │ ├── film_response │ │ │ ├── agfa_advantix_100.spi1d │ │ │ ├── agfa_advantix_200.spi1d │ │ │ ├── agfa_advantix_400.spi1d │ │ │ ├── agfa_agfachrome_ct_precisa_100.spi1d │ │ │ ├── agfa_agfachrome_ct_precisa_200.spi1d │ │ │ ├── agfa_agfachrome_rsx2_050.spi1d │ │ │ ├── agfa_agfachrome_rsx2_100.spi1d │ │ │ ├── agfa_agfachrome_rsx2_200.spi1d │ │ │ ├── agfa_agfacolor_futura_100.spi1d │ │ │ ├── agfa_agfacolor_futura_200.spi1d │ │ │ ├── agfa_agfacolor_futura_400.spi1d │ │ │ ├── agfa_agfacolor_futura_ii_100.spi1d │ │ │ ├── agfa_agfacolor_futura_ii_200.spi1d │ │ │ ├── agfa_agfacolor_futura_ii_400.spi1d │ │ │ ├── agfa_agfacolor_hdc_100_plus.spi1d │ │ │ ├── agfa_agfacolor_hdc_200_plus.spi1d │ │ │ ├── agfa_agfacolor_hdc_400_plus.spi1d │ │ │ ├── agfa_agfacolor_optima_ii_100.spi1d │ │ │ ├── agfa_agfacolor_optima_ii_200.spi1d │ │ │ ├── agfa_agfacolor_ultra_050.spi1d │ │ │ ├── agfa_agfacolor_vista_100.spi1d │ │ │ ├── agfa_agfacolor_vista_200.spi1d │ │ │ ├── agfa_agfacolor_vista_400.spi1d │ │ │ ├── agfa_agfacolor_vista_800.spi1d │ │ │ ├── canon_optura_981111.slrr.spi1d │ │ │ ├── canon_optura_981111.spi1d │ │ │ ├── canon_optura_981113.spi1d │ │ │ ├── canon_optura_981114.spi1d │ │ │ ├── eastman_double_x_neg_12min.spi1d │ │ │ ├── eastman_double_x_neg_4min.spi1d │ │ │ ├── eastman_double_x_neg_5min.spi1d │ │ │ ├── eastman_double_x_neg_6min.spi1d │ │ │ ├── fujifilm_f-125.spi1d │ │ │ ├── fujifilm_f-250.spi1d │ │ │ ├── fujifilm_f-400.spi1d │ │ │ ├── fujifilm_fci.spi1d │ │ │ ├── fujifilm_fp2900z.spi1d │ │ │ ├── kodak_dscs_3151.spi1d │ │ │ ├── kodak_dscs_3152.spi1d │ │ │ ├── kodak_dscs_3153.spi1d │ │ │ ├── kodak_dscs_3154.spi1d │ │ │ ├── kodak_dscs_3155.spi1d │ │ │ ├── kodak_dscs_3156.spi1d │ │ │ ├── kodak_ektachrome_100.spi1d │ │ │ ├── kodak_ektachrome_100_plus.spi1d │ │ │ ├── kodak_ektachrome_320t.spi1d │ │ │ ├── kodak_ektachrome_400x.spi1d │ │ │ ├── kodak_ektachrome_64.spi1d │ │ │ ├── kodak_ektachrome_64t.spi1d │ │ │ ├── kodak_ektachrome_e100s.spi1d │ │ │ ├── kodak_gold_100.spi1d │ │ │ ├── kodak_gold_200.spi1d │ │ │ ├── kodak_kaf-2001.spi1d │ │ │ ├── kodak_kaf-3000.spi1d │ │ │ ├── kodak_kai-0311.spi1d │ │ │ ├── kodak_kai-0372.spi1d │ │ │ ├── kodak_kai-1010.spi1d │ │ │ ├── kodak_kodachrome_200.spi1d │ │ │ ├── kodak_kodachrome_25.spi1d │ │ │ ├── kodak_kodachrome_64.spi1d │ │ │ ├── kodak_max_zoom_800.spi1d │ │ │ ├── kodak_portra_100t.spi1d │ │ │ ├── kodak_portra_160nc.spi1d │ │ │ ├── kodak_portra_160vc.spi1d │ │ │ ├── kodak_portra_400nc.spi1d │ │ │ ├── kodak_portra_400vc.spi1d │ │ │ └── kodak_portra_800.spi1d │ │ │ ├── lg10.spi1d │ │ │ ├── rec709.spi1d │ │ │ ├── rec709_to_aces.spimtx │ │ │ ├── rrt_ut33_dcdm.spi3d │ │ │ ├── rrt_ut33_p3dci.spi3d │ │ │ ├── rrt_ut33_rec709.spi3d │ │ │ ├── rrt_ut33_sRGB.spi3d │ │ │ ├── spi_ocio_srgb_test.spi3d │ │ │ ├── srgb.spi1d │ │ │ ├── srgb_inv.spi1d │ │ │ ├── srgb_to_xyz.spimtx │ │ │ └── vd16.spi1d │ ├── ctodata.py │ ├── fonts │ │ ├── bmonofont-i18n.ttf.gz │ │ └── droidsans.ttf.gz │ ├── matcaps │ │ ├── license.txt │ │ ├── mc01.jpg │ │ ├── mc02.jpg │ │ ├── mc03.jpg │ │ ├── mc04.jpg │ │ ├── mc05.jpg │ │ ├── mc06.jpg │ │ ├── mc07.jpg │ │ ├── mc08.jpg │ │ ├── mc09.jpg │ │ ├── mc10.jpg │ │ ├── mc11.jpg │ │ ├── mc12.jpg │ │ ├── mc13.jpg │ │ ├── mc14.jpg │ │ ├── mc15.jpg │ │ ├── mc16.jpg │ │ ├── mc17.jpg │ │ ├── mc18.jpg │ │ ├── mc19.jpg │ │ ├── mc20.jpg │ │ ├── mc21.jpg │ │ ├── mc22.jpg │ │ ├── mc23.jpg │ │ └── mc24.jpg │ ├── preview.blend │ ├── preview_cycles.blend │ ├── prvicons.png │ ├── prvicons.svg │ ├── prvicons_update.py │ ├── splash.png │ ├── splash_2x.png │ ├── splash_scale.sh │ ├── splash_template.xcf │ └── startup.blend ├── freedesktop │ ├── blender.desktop │ └── icons │ │ ├── 16x16 │ │ └── apps │ │ │ └── blender.png │ │ ├── 22x22 │ │ └── apps │ │ │ └── blender.png │ │ ├── 24x24 │ │ └── apps │ │ │ └── blender.png │ │ ├── 256x256 │ │ └── apps │ │ │ └── blender.png │ │ ├── 32x32 │ │ └── apps │ │ │ └── blender.png │ │ ├── 48x48 │ │ └── apps │ │ │ └── blender.png │ │ ├── blender_icon_source.svg │ │ └── scalable │ │ └── apps │ │ └── blender.svg ├── scripts │ ├── freestyle │ │ ├── modules │ │ │ ├── freestyle │ │ │ │ ├── __init__.py │ │ │ │ ├── chainingiterators.py │ │ │ │ ├── functions.py │ │ │ │ ├── predicates.py │ │ │ │ ├── shaders.py │ │ │ │ ├── types.py │ │ │ │ └── utils.py │ │ │ └── parameter_editor.py │ │ └── styles │ │ │ ├── anisotropic_diffusion.py │ │ │ ├── apriori_and_causal_density.py │ │ │ ├── apriori_density.py │ │ │ ├── backbone_stretcher.py │ │ │ ├── blueprint_circles.py │ │ │ ├── blueprint_ellipses.py │ │ │ ├── blueprint_squares.py │ │ │ ├── cartoon.py │ │ │ ├── contour.py │ │ │ ├── curvature2d.py │ │ │ ├── external_contour.py │ │ │ ├── external_contour_sketchy.py │ │ │ ├── external_contour_smooth.py │ │ │ ├── haloing.py │ │ │ ├── ignore_small_occlusions.py │ │ │ ├── invisible_lines.py │ │ │ ├── japanese_bigbrush.py │ │ │ ├── long_anisotropically_dense.py │ │ │ ├── multiple_parameterization.py │ │ │ ├── nature.py │ │ │ ├── near_lines.py │ │ │ ├── occluded_by_specific_object.py │ │ │ ├── polygonalize.py │ │ │ ├── qi0.py │ │ │ ├── qi0_not_external_contour.py │ │ │ ├── qi1.py │ │ │ ├── qi2.py │ │ │ ├── sequentialsplit_sketchy.py │ │ │ ├── sketchy_multiple_parameterization.py │ │ │ ├── sketchy_topology_broken.py │ │ │ ├── sketchy_topology_preserved.py │ │ │ ├── split_at_highest_2d_curvatures.py │ │ │ ├── split_at_tvertices.py │ │ │ ├── suggestive.py │ │ │ ├── thickness_fof_depth_discontinuity.py │ │ │ ├── tipremover.py │ │ │ ├── tvertex_remover.py │ │ │ └── uniformpruning_zsort.py │ ├── modules │ │ ├── addon_utils.py │ │ ├── animsys_refactor.py │ │ ├── bl_app_override │ │ │ ├── __init__.py │ │ │ └── helpers.py │ │ ├── bl_app_template_utils.py │ │ ├── bl_i18n_utils │ │ │ ├── __init__.py │ │ │ ├── bl_extract_messages.py │ │ │ ├── merge_po.py │ │ │ ├── settings.py │ │ │ ├── settings_user.py │ │ │ ├── utils.py │ │ │ ├── utils_languages_menu.py │ │ │ ├── utils_rtl.py │ │ │ └── utils_spell_check.py │ │ ├── bl_previews_utils │ │ │ └── bl_previews_render.py │ │ ├── blend_render_info.py │ │ ├── bpy │ │ │ ├── __init__.py │ │ │ ├── ops.py │ │ │ ├── path.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ └── previews.py │ │ ├── bpy_extras │ │ │ ├── __init__.py │ │ │ ├── anim_utils.py │ │ │ ├── image_utils.py │ │ │ ├── io_utils.py │ │ │ ├── keyconfig_utils.py │ │ │ ├── mesh_utils.py │ │ │ ├── object_utils.py │ │ │ └── view3d_utils.py │ │ ├── bpy_restrict_state.py │ │ ├── bpy_types.py │ │ ├── bpyml.py │ │ ├── bpyml_ui.py │ │ ├── console │ │ │ ├── __init__.py │ │ │ ├── complete_calltip.py │ │ │ ├── complete_import.py │ │ │ ├── complete_namespace.py │ │ │ └── intellisense.py │ │ ├── console_python.py │ │ ├── console_shell.py │ │ ├── graphviz_export.py │ │ ├── keyingsets_utils.py │ │ ├── nodeitems_utils.py │ │ ├── progress_report.py │ │ ├── rna_info.py │ │ ├── rna_keymap_ui.py │ │ ├── rna_prop_ui.py │ │ ├── rna_xml.py │ │ └── sys_info.py │ ├── presets │ │ ├── camera │ │ │ ├── 1__colon__2.3_inch.py │ │ │ ├── 1__colon__2.5_inch.py │ │ │ ├── 2__colon__3_inch.py │ │ │ ├── 4__colon__3_inch.py │ │ │ ├── Arri_Alexa.py │ │ │ ├── Blackmagic_Cinema_Camera.py │ │ │ ├── Blackmagic_Pocket_Cinema_Camera.py │ │ │ ├── Blackmagic_Production_Camera_4K.py │ │ │ ├── Blender.py │ │ │ ├── Canon_1100D.py │ │ │ ├── Canon_APS-C.py │ │ │ ├── Canon_APS-H.py │ │ │ ├── Canon_C300.py │ │ │ ├── Full_Frame_35mm_Camera.py │ │ │ ├── GoPro_Hero3_Black.py │ │ │ ├── GoPro_Hero3_Silver.py │ │ │ ├── GoPro_Hero3_White.py │ │ │ ├── Nexus_5.py │ │ │ ├── Nikon_D3100.py │ │ │ ├── Nikon_DX.py │ │ │ ├── Panasonic_AG-HVX200.py │ │ │ ├── Panasonic_LX2.py │ │ │ ├── Red_Epic.py │ │ │ ├── Red_One_2K.py │ │ │ ├── Red_One_3K.py │ │ │ ├── Red_One_4K.py │ │ │ ├── Samsung_Galaxy_S3.py │ │ │ ├── Samsung_Galaxy_S4.py │ │ │ ├── Sony_A55.py │ │ │ ├── Sony_EX1.py │ │ │ ├── Sony_F65.py │ │ │ ├── Super_16_Film.py │ │ │ ├── Super_35_Film.py │ │ │ ├── iPhone_4.py │ │ │ ├── iPhone_4S.py │ │ │ └── iPhone_5.py │ │ ├── cloth │ │ │ ├── cotton.py │ │ │ ├── denim.py │ │ │ ├── leather.py │ │ │ ├── rubber.py │ │ │ └── silk.py │ │ ├── cycles │ │ │ ├── integrator │ │ │ │ ├── direct_light.py │ │ │ │ ├── full_global_illumination.py │ │ │ │ └── limited_global_illumination.py │ │ │ └── sampling │ │ │ │ ├── final.py │ │ │ │ └── preview.py │ │ ├── ffmpeg │ │ │ ├── DVD (note_colon_ this changes render resolution).py │ │ │ ├── h264 in MP4.py │ │ │ ├── h264 in Matroska for scrubbing.py │ │ │ ├── h264 in Matroska.py │ │ │ ├── ogg_theora.py │ │ │ └── xvid.py │ │ ├── fluid │ │ │ ├── honey.py │ │ │ ├── oil.py │ │ │ └── water.py │ │ ├── framerate │ │ │ ├── 23.98.py │ │ │ ├── 24.py │ │ │ ├── 25.py │ │ │ ├── 29.97.py │ │ │ ├── 30.py │ │ │ ├── 50.py │ │ │ ├── 59.94.py │ │ │ ├── 60.py │ │ │ └── Custom.py │ │ ├── hair_dynamics │ │ │ └── default.py │ │ ├── interaction │ │ │ ├── 3dsmax.py │ │ │ ├── blender.py │ │ │ └── maya.py │ │ ├── interface_theme │ │ │ ├── back_to_black.xml │ │ │ ├── blender_24x.xml │ │ │ ├── elsyiun.xml │ │ │ ├── flatty_light.xml │ │ │ ├── graph.xml │ │ │ ├── hexagon.xml │ │ │ ├── rtheme.xml │ │ │ ├── science_lab.xml │ │ │ ├── softimage.xml │ │ │ └── ubuntu_ambiance.xml │ │ ├── keyconfig │ │ │ ├── 3dsmax.py │ │ │ └── maya.py │ │ ├── operator │ │ │ └── wm.collada_export │ │ │ │ ├── sl_plus_open_sim_rigged.py │ │ │ │ └── sl_plus_open_sim_static.py │ │ ├── render │ │ │ ├── DVCPRO_HD_1080p.py │ │ │ ├── DVCPRO_HD_720p.py │ │ │ ├── HDTV_1080p.py │ │ │ ├── HDTV_720p.py │ │ │ ├── HDV_1080p.py │ │ │ ├── HDV_NTSC_1080p.py │ │ │ ├── HDV_PAL_1080p.py │ │ │ ├── TV_NTSC_16_colon_9.py │ │ │ ├── TV_NTSC_4_colon_3.py │ │ │ ├── TV_PAL_16_colon_9.py │ │ │ └── TV_PAL_4_colon_3.py │ │ ├── safe_areas │ │ │ ├── 14_colon_9_in_16_colon_9.py │ │ │ ├── 16_colon_9.py │ │ │ └── 4_colon_3_in_16_colon_9.py │ │ ├── sss │ │ │ ├── apple.py │ │ │ ├── chicken.py │ │ │ ├── cream.py │ │ │ ├── ketchup.py │ │ │ ├── marble.py │ │ │ ├── potato.py │ │ │ ├── skim_milk.py │ │ │ ├── skin1.py │ │ │ ├── skin2.py │ │ │ └── whole_milk.py │ │ ├── sunsky │ │ │ ├── classic.py │ │ │ ├── desert.py │ │ │ └── mountain.py │ │ ├── tracking_camera │ │ │ ├── 1__colon__2.3_inch.py │ │ │ ├── 1__colon__2.5_inch.py │ │ │ ├── 2__colon__3_inch.py │ │ │ ├── 4__colon__3_inch.py │ │ │ ├── Arri_Alexa.py │ │ │ ├── Blackmagic_Cinema_Camera.py │ │ │ ├── Blackmagic_Pocket_Cinema_Camera.py │ │ │ ├── Blackmagic_Production_Camera_4K.py │ │ │ ├── Blender.py │ │ │ ├── Canon_1100D.py │ │ │ ├── Canon_APS-C.py │ │ │ ├── Canon_APS-H.py │ │ │ ├── Canon_C300.py │ │ │ ├── Full_Frame_35mm_Camera.py │ │ │ ├── GoPro_Hero3_Black.py │ │ │ ├── GoPro_Hero3_Silver.py │ │ │ ├── GoPro_Hero3_White.py │ │ │ ├── Nexus_5.py │ │ │ ├── Nikon_D3100.py │ │ │ ├── Nikon_DX.py │ │ │ ├── Panasonic_AG-HVX200.py │ │ │ ├── Panasonic_LX2.py │ │ │ ├── Red_Epic.py │ │ │ ├── Red_One_2K.py │ │ │ ├── Red_One_3K.py │ │ │ ├── Red_One_4K.py │ │ │ ├── Samsung_Galaxy_S3.py │ │ │ ├── Samsung_Galaxy_S4.py │ │ │ ├── Sony_A55.py │ │ │ ├── Sony_EX1.py │ │ │ ├── Sony_F65.py │ │ │ ├── Super_16.py │ │ │ ├── Super_35.py │ │ │ ├── iPhone_4.py │ │ │ ├── iPhone_4S.py │ │ │ └── iPhone_5.py │ │ ├── tracking_settings │ │ │ ├── blurry_footage.py │ │ │ ├── default.py │ │ │ ├── fast_motion.py │ │ │ └── planar.py │ │ ├── tracking_track_color │ │ │ ├── default.py │ │ │ ├── far_plane.py │ │ │ ├── near_plane.py │ │ │ └── object.py │ │ └── units_length │ │ │ ├── centimeters.py │ │ │ ├── feet.py │ │ │ ├── inches.py │ │ │ ├── kilometers.py │ │ │ ├── meters.py │ │ │ ├── miles.py │ │ │ └── millimeters.py │ ├── startup │ │ ├── bl_operators │ │ │ ├── __init__.py │ │ │ ├── add_mesh_torus.py │ │ │ ├── anim.py │ │ │ ├── bmesh │ │ │ │ └── find_adjacent.py │ │ │ ├── clip.py │ │ │ ├── console.py │ │ │ ├── file.py │ │ │ ├── freestyle.py │ │ │ ├── image.py │ │ │ ├── mask.py │ │ │ ├── mesh.py │ │ │ ├── node.py │ │ │ ├── object.py │ │ │ ├── object_align.py │ │ │ ├── object_quick_effects.py │ │ │ ├── object_randomize_transform.py │ │ │ ├── presets.py │ │ │ ├── rigidbody.py │ │ │ ├── screen_play_rendered_anim.py │ │ │ ├── sequencer.py │ │ │ ├── uvcalc_follow_active.py │ │ │ ├── uvcalc_lightmap.py │ │ │ ├── uvcalc_smart_project.py │ │ │ ├── vertexpaint_dirt.py │ │ │ ├── view3d.py │ │ │ └── wm.py │ │ ├── bl_ui │ │ │ ├── __init__.py │ │ │ ├── properties_animviz.py │ │ │ ├── properties_constraint.py │ │ │ ├── properties_data_armature.py │ │ │ ├── properties_data_bone.py │ │ │ ├── properties_data_camera.py │ │ │ ├── properties_data_curve.py │ │ │ ├── properties_data_empty.py │ │ │ ├── properties_data_lamp.py │ │ │ ├── properties_data_lattice.py │ │ │ ├── properties_data_mesh.py │ │ │ ├── properties_data_metaball.py │ │ │ ├── properties_data_modifier.py │ │ │ ├── properties_data_speaker.py │ │ │ ├── properties_freestyle.py │ │ │ ├── properties_game.py │ │ │ ├── properties_grease_pencil_common.py │ │ │ ├── properties_mask_common.py │ │ │ ├── properties_material.py │ │ │ ├── properties_object.py │ │ │ ├── properties_paint_common.py │ │ │ ├── properties_particle.py │ │ │ ├── properties_physics_cloth.py │ │ │ ├── properties_physics_common.py │ │ │ ├── properties_physics_dynamicpaint.py │ │ │ ├── properties_physics_field.py │ │ │ ├── properties_physics_fluid.py │ │ │ ├── properties_physics_rigidbody.py │ │ │ ├── properties_physics_rigidbody_constraint.py │ │ │ ├── properties_physics_smoke.py │ │ │ ├── properties_physics_softbody.py │ │ │ ├── properties_render.py │ │ │ ├── properties_render_layer.py │ │ │ ├── properties_scene.py │ │ │ ├── properties_texture.py │ │ │ ├── properties_world.py │ │ │ ├── space_clip.py │ │ │ ├── space_console.py │ │ │ ├── space_dopesheet.py │ │ │ ├── space_filebrowser.py │ │ │ ├── space_graph.py │ │ │ ├── space_image.py │ │ │ ├── space_info.py │ │ │ ├── space_logic.py │ │ │ ├── space_nla.py │ │ │ ├── space_node.py │ │ │ ├── space_outliner.py │ │ │ ├── space_properties.py │ │ │ ├── space_sequencer.py │ │ │ ├── space_text.py │ │ │ ├── space_time.py │ │ │ ├── space_userpref.py │ │ │ ├── space_view3d.py │ │ │ └── space_view3d_toolbar.py │ │ ├── keyingsets_builtins.py │ │ └── nodeitems_builtins.py │ ├── templates_osl │ │ ├── empty_shader.osl │ │ ├── fresnel_conductive.osl │ │ ├── gabor_noise.osl │ │ ├── lyapunov_texture.osl │ │ ├── noise.osl │ │ └── ramp_closure.osl │ └── templates_py │ │ ├── addon_add_object.py │ │ ├── background_job.py │ │ ├── batch_export.py │ │ ├── bmesh_simple.py │ │ ├── bmesh_simple_editmode.py │ │ ├── builtin_keyingset.py │ │ ├── custom_nodes.py │ │ ├── driver_functions.py │ │ ├── external_script_stub.py │ │ ├── gamelogic.py │ │ ├── gamelogic_module.py │ │ ├── gamelogic_simple.py │ │ ├── operator_file_export.py │ │ ├── operator_file_import.py │ │ ├── operator_mesh_add.py │ │ ├── operator_mesh_uv.py │ │ ├── operator_modal.py │ │ ├── operator_modal_draw.py │ │ ├── operator_modal_timer.py │ │ ├── operator_modal_view3d.py │ │ ├── operator_modal_view3d_raycast.py │ │ ├── operator_node.py │ │ ├── operator_simple.py │ │ ├── ui_list.py │ │ ├── ui_list_simple.py │ │ ├── ui_menu.py │ │ ├── ui_menu_simple.py │ │ ├── ui_panel.py │ │ ├── ui_panel_simple.py │ │ ├── ui_pie_menu.py │ │ ├── ui_previews_custom_icon.py │ │ └── ui_previews_dynamic_enum.py ├── text │ ├── GPL-license.txt │ ├── GPL3-license.txt │ ├── Python-license.txt │ ├── copyright.txt │ ├── jemalloc-license.txt │ ├── ocio-license.txt │ └── readme.html └── windows │ ├── contrib │ └── vfapi │ │ ├── README │ │ └── vfapi-plugin.c │ ├── icons │ ├── blender.exe.manifest │ ├── winblender.ico │ ├── winblender.rc │ └── winblenderfile.ico │ └── installer │ ├── 00.checked.bmp │ ├── 00.header.bmp │ ├── 00.installer.ico │ ├── 00.sconsblender.nsi │ └── 01.installer.bmp ├── source ├── CMakeLists.txt ├── blender │ ├── CMakeLists.txt │ ├── alembic │ │ ├── ABC_alembic.h │ │ ├── CMakeLists.txt │ │ └── intern │ │ │ ├── abc_archive.cc │ │ │ ├── abc_archive.h │ │ │ ├── abc_camera.cc │ │ │ ├── abc_camera.h │ │ │ ├── abc_curves.cc │ │ │ ├── abc_curves.h │ │ │ ├── abc_customdata.cc │ │ │ ├── abc_customdata.h │ │ │ ├── abc_exporter.cc │ │ │ ├── abc_exporter.h │ │ │ ├── abc_hair.cc │ │ │ ├── abc_hair.h │ │ │ ├── abc_mesh.cc │ │ │ ├── abc_mesh.h │ │ │ ├── abc_nurbs.cc │ │ │ ├── abc_nurbs.h │ │ │ ├── abc_object.cc │ │ │ ├── abc_object.h │ │ │ ├── abc_points.cc │ │ │ ├── abc_points.h │ │ │ ├── abc_transform.cc │ │ │ ├── abc_transform.h │ │ │ ├── abc_util.cc │ │ │ ├── abc_util.h │ │ │ └── alembic_capi.cc │ ├── avi │ │ ├── AVI_avi.h │ │ ├── CMakeLists.txt │ │ └── intern │ │ │ ├── avi.c │ │ │ ├── avi_codecs.c │ │ │ ├── avi_endian.c │ │ │ ├── avi_endian.h │ │ │ ├── avi_intern.h │ │ │ ├── avi_mjpeg.c │ │ │ ├── avi_mjpeg.h │ │ │ ├── avi_options.c │ │ │ ├── avi_rgb.c │ │ │ ├── avi_rgb.h │ │ │ ├── avi_rgb32.c │ │ │ └── avi_rgb32.h │ ├── blenfont │ │ ├── BLF_api.h │ │ ├── CMakeLists.txt │ │ └── intern │ │ │ ├── blf.c │ │ │ ├── blf_dir.c │ │ │ ├── blf_font.c │ │ │ ├── blf_font_i18n.c │ │ │ ├── blf_font_win32_compat.c │ │ │ ├── blf_glyph.c │ │ │ ├── blf_internal.h │ │ │ ├── blf_internal_types.h │ │ │ ├── blf_thumbs.c │ │ │ └── blf_util.c │ ├── blenkernel │ │ ├── BKE_DerivedMesh.h │ │ ├── BKE_action.h │ │ ├── BKE_addon.h │ │ ├── BKE_anim.h │ │ ├── BKE_animsys.h │ │ ├── BKE_appdir.h │ │ ├── BKE_armature.h │ │ ├── BKE_autoexec.h │ │ ├── BKE_blender.h │ │ ├── BKE_blender_copybuffer.h │ │ ├── BKE_blender_undo.h │ │ ├── BKE_blender_version.h │ │ ├── BKE_blendfile.h │ │ ├── BKE_bmfont.h │ │ ├── BKE_bmfont_types.h │ │ ├── BKE_boids.h │ │ ├── BKE_bpath.h │ │ ├── BKE_brush.h │ │ ├── BKE_bullet.h │ │ ├── BKE_bvhutils.h │ │ ├── BKE_cachefile.h │ │ ├── BKE_camera.h │ │ ├── BKE_ccg.h │ │ ├── BKE_cdderivedmesh.h │ │ ├── BKE_cloth.h │ │ ├── BKE_collision.h │ │ ├── BKE_colortools.h │ │ ├── BKE_constraint.h │ │ ├── BKE_context.h │ │ ├── BKE_crazyspace.h │ │ ├── BKE_curve.h │ │ ├── BKE_customdata.h │ │ ├── BKE_customdata_file.h │ │ ├── BKE_data_transfer.h │ │ ├── BKE_deform.h │ │ ├── BKE_depsgraph.h │ │ ├── BKE_displist.h │ │ ├── BKE_dynamicpaint.h │ │ ├── BKE_editmesh.h │ │ ├── BKE_editmesh_bvh.h │ │ ├── BKE_effect.h │ │ ├── BKE_fcurve.h │ │ ├── BKE_fluidsim.h │ │ ├── BKE_font.h │ │ ├── BKE_freestyle.h │ │ ├── BKE_global.h │ │ ├── BKE_gpencil.h │ │ ├── BKE_group.h │ │ ├── BKE_icons.h │ │ ├── BKE_idcode.h │ │ ├── BKE_idprop.h │ │ ├── BKE_image.h │ │ ├── BKE_ipo.h │ │ ├── BKE_key.h │ │ ├── BKE_lamp.h │ │ ├── BKE_lattice.h │ │ ├── BKE_library.h │ │ ├── BKE_library_idmap.h │ │ ├── BKE_library_query.h │ │ ├── BKE_library_remap.h │ │ ├── BKE_linestyle.h │ │ ├── BKE_main.h │ │ ├── BKE_mask.h │ │ ├── BKE_material.h │ │ ├── BKE_mball.h │ │ ├── BKE_mball_tessellate.h │ │ ├── BKE_mesh.h │ │ ├── BKE_mesh_mapping.h │ │ ├── BKE_mesh_remap.h │ │ ├── BKE_modifier.h │ │ ├── BKE_movieclip.h │ │ ├── BKE_multires.h │ │ ├── BKE_navmesh_conversion.h │ │ ├── BKE_nla.h │ │ ├── BKE_node.h │ │ ├── BKE_object.h │ │ ├── BKE_object_deform.h │ │ ├── BKE_ocean.h │ │ ├── BKE_outliner_treehash.h │ │ ├── BKE_packedFile.h │ │ ├── BKE_paint.h │ │ ├── BKE_particle.h │ │ ├── BKE_pbvh.h │ │ ├── BKE_pointcache.h │ │ ├── BKE_property.h │ │ ├── BKE_report.h │ │ ├── BKE_rigidbody.h │ │ ├── BKE_sca.h │ │ ├── BKE_scene.h │ │ ├── BKE_screen.h │ │ ├── BKE_sequencer.h │ │ ├── BKE_shrinkwrap.h │ │ ├── BKE_sketch.h │ │ ├── BKE_smoke.h │ │ ├── BKE_softbody.h │ │ ├── BKE_sound.h │ │ ├── BKE_speaker.h │ │ ├── BKE_subsurf.h │ │ ├── BKE_suggestions.h │ │ ├── BKE_text.h │ │ ├── BKE_texture.h │ │ ├── BKE_tracking.h │ │ ├── BKE_unit.h │ │ ├── BKE_utildefines.h │ │ ├── BKE_world.h │ │ ├── BKE_writeavi.h │ │ ├── BKE_writeffmpeg.h │ │ ├── BKE_writeframeserver.h │ │ ├── CMakeLists.txt │ │ ├── depsgraph_private.h │ │ ├── intern │ │ │ ├── CCGSubSurf.c │ │ │ ├── CCGSubSurf.h │ │ │ ├── CCGSubSurf_inline.h │ │ │ ├── CCGSubSurf_intern.h │ │ │ ├── CCGSubSurf_legacy.c │ │ │ ├── CCGSubSurf_opensubdiv.c │ │ │ ├── CCGSubSurf_opensubdiv_converter.c │ │ │ ├── CCGSubSurf_util.c │ │ │ ├── DerivedMesh.c │ │ │ ├── action.c │ │ │ ├── addon.c │ │ │ ├── anim.c │ │ │ ├── anim_sys.c │ │ │ ├── appdir.c │ │ │ ├── armature.c │ │ │ ├── armature_update.c │ │ │ ├── autoexec.c │ │ │ ├── blender.c │ │ │ ├── blender_copybuffer.c │ │ │ ├── blender_undo.c │ │ │ ├── blendfile.c │ │ │ ├── bmfont.c │ │ │ ├── boids.c │ │ │ ├── bpath.c │ │ │ ├── brush.c │ │ │ ├── bullet.c │ │ │ ├── bvhutils.c │ │ │ ├── cachefile.c │ │ │ ├── camera.c │ │ │ ├── cdderivedmesh.c │ │ │ ├── cloth.c │ │ │ ├── collision.c │ │ │ ├── colortools.c │ │ │ ├── constraint.c │ │ │ ├── context.c │ │ │ ├── crazyspace.c │ │ │ ├── curve.c │ │ │ ├── customdata.c │ │ │ ├── customdata_file.c │ │ │ ├── data_transfer.c │ │ │ ├── data_transfer_intern.h │ │ │ ├── deform.c │ │ │ ├── depsgraph.c │ │ │ ├── displist.c │ │ │ ├── dynamicpaint.c │ │ │ ├── editderivedmesh.c │ │ │ ├── editmesh.c │ │ │ ├── editmesh_bvh.c │ │ │ ├── effect.c │ │ │ ├── fcurve.c │ │ │ ├── fluidsim.c │ │ │ ├── fmodifier.c │ │ │ ├── font.c │ │ │ ├── freestyle.c │ │ │ ├── gpencil.c │ │ │ ├── group.c │ │ │ ├── icons.c │ │ │ ├── idcode.c │ │ │ ├── idprop.c │ │ │ ├── image.c │ │ │ ├── image_gen.c │ │ │ ├── ipo.c │ │ │ ├── key.c │ │ │ ├── lamp.c │ │ │ ├── lattice.c │ │ │ ├── library.c │ │ │ ├── library_idmap.c │ │ │ ├── library_query.c │ │ │ ├── library_remap.c │ │ │ ├── linestyle.c │ │ │ ├── mask.c │ │ │ ├── mask_evaluate.c │ │ │ ├── mask_rasterize.c │ │ │ ├── material.c │ │ │ ├── mball.c │ │ │ ├── mball_tessellate.c │ │ │ ├── mesh.c │ │ │ ├── mesh_evaluate.c │ │ │ ├── mesh_mapping.c │ │ │ ├── mesh_remap.c │ │ │ ├── mesh_validate.c │ │ │ ├── modifier.c │ │ │ ├── modifiers_bmesh.c │ │ │ ├── movieclip.c │ │ │ ├── multires.c │ │ │ ├── navmesh_conversion.c │ │ │ ├── nla.c │ │ │ ├── node.c │ │ │ ├── object.c │ │ │ ├── object_deform.c │ │ │ ├── object_dupli.c │ │ │ ├── object_update.c │ │ │ ├── ocean.c │ │ │ ├── outliner_treehash.c │ │ │ ├── packedFile.c │ │ │ ├── paint.c │ │ │ ├── particle.c │ │ │ ├── particle_child.c │ │ │ ├── particle_distribute.c │ │ │ ├── particle_system.c │ │ │ ├── pbvh.c │ │ │ ├── pbvh_bmesh.c │ │ │ ├── pbvh_intern.h │ │ │ ├── pointcache.c │ │ │ ├── property.c │ │ │ ├── report.c │ │ │ ├── rigidbody.c │ │ │ ├── sca.c │ │ │ ├── scene.c │ │ │ ├── screen.c │ │ │ ├── seqcache.c │ │ │ ├── seqeffects.c │ │ │ ├── seqmodifier.c │ │ │ ├── sequencer.c │ │ │ ├── shrinkwrap.c │ │ │ ├── sketch.c │ │ │ ├── smoke.c │ │ │ ├── softbody.c │ │ │ ├── sound.c │ │ │ ├── speaker.c │ │ │ ├── subsurf_ccg.c │ │ │ ├── suggestions.c │ │ │ ├── text.c │ │ │ ├── texture.c │ │ │ ├── tracking.c │ │ │ ├── tracking_auto.c │ │ │ ├── tracking_detect.c │ │ │ ├── tracking_plane_tracker.c │ │ │ ├── tracking_region_tracker.c │ │ │ ├── tracking_solver.c │ │ │ ├── tracking_stabilize.c │ │ │ ├── tracking_util.c │ │ │ ├── unit.c │ │ │ ├── world.c │ │ │ ├── writeavi.c │ │ │ ├── writeffmpeg.c │ │ │ └── writeframeserver.c │ │ ├── nla_private.h │ │ └── tracking_private.h │ ├── blenlib │ │ ├── BLI_alloca.h │ │ ├── BLI_args.h │ │ ├── BLI_array.h │ │ ├── BLI_array_store.h │ │ ├── BLI_array_store_utils.h │ │ ├── BLI_array_utils.h │ │ ├── BLI_astar.h │ │ ├── BLI_bitmap.h │ │ ├── BLI_bitmap_draw_2d.h │ │ ├── BLI_blenlib.h │ │ ├── BLI_boxpack2d.h │ │ ├── BLI_buffer.h │ │ ├── BLI_callbacks.h │ │ ├── BLI_compiler_attrs.h │ │ ├── BLI_compiler_compat.h │ │ ├── BLI_compiler_typecheck.h │ │ ├── BLI_convexhull2d.h │ │ ├── BLI_dial.h │ │ ├── BLI_dlrbTree.h │ │ ├── BLI_dynlib.h │ │ ├── BLI_dynstr.h │ │ ├── BLI_easing.h │ │ ├── BLI_edgehash.h │ │ ├── BLI_endian_switch.h │ │ ├── BLI_endian_switch_inline.h │ │ ├── BLI_fileops.h │ │ ├── BLI_fileops_types.h │ │ ├── BLI_fnmatch.h │ │ ├── BLI_ghash.h │ │ ├── BLI_graph.h │ │ ├── BLI_gsqueue.h │ │ ├── BLI_hash.h │ │ ├── BLI_hash_md5.h │ │ ├── BLI_hash_mm2a.h │ │ ├── BLI_heap.h │ │ ├── BLI_jitter.h │ │ ├── BLI_kdopbvh.h │ │ ├── BLI_kdtree.h │ │ ├── BLI_lasso.h │ │ ├── BLI_link_utils.h │ │ ├── BLI_linklist.h │ │ ├── BLI_linklist_stack.h │ │ ├── BLI_listbase.h │ │ ├── BLI_math.h │ │ ├── BLI_math_base.h │ │ ├── BLI_math_bits.h │ │ ├── BLI_math_color.h │ │ ├── BLI_math_color_blend.h │ │ ├── BLI_math_geom.h │ │ ├── BLI_math_inline.h │ │ ├── BLI_math_interp.h │ │ ├── BLI_math_matrix.h │ │ ├── BLI_math_rotation.h │ │ ├── BLI_math_solvers.h │ │ ├── BLI_math_statistics.h │ │ ├── BLI_math_vector.h │ │ ├── BLI_memarena.h │ │ ├── BLI_memory_utils.h │ │ ├── BLI_mempool.h │ │ ├── BLI_noise.h │ │ ├── BLI_path_util.h │ │ ├── BLI_polyfill2d.h │ │ ├── BLI_polyfill2d_beautify.h │ │ ├── BLI_quadric.h │ │ ├── BLI_rand.h │ │ ├── BLI_rect.h │ │ ├── BLI_scanfill.h │ │ ├── BLI_smallhash.h │ │ ├── BLI_sort.h │ │ ├── BLI_sort_utils.h │ │ ├── BLI_stack.h │ │ ├── BLI_stackdefines.h │ │ ├── BLI_strict_flags.h │ │ ├── BLI_string.h │ │ ├── BLI_string_cursor_utf8.h │ │ ├── BLI_string_utf8.h │ │ ├── BLI_string_utils.h │ │ ├── BLI_sys_types.h │ │ ├── BLI_system.h │ │ ├── BLI_task.h │ │ ├── BLI_threads.h │ │ ├── BLI_timecode.h │ │ ├── BLI_utildefines.h │ │ ├── BLI_uvproject.h │ │ ├── BLI_vfontdata.h │ │ ├── BLI_voronoi.h │ │ ├── BLI_voxel.h │ │ ├── BLI_winstuff.h │ │ ├── CMakeLists.txt │ │ ├── PIL_time.h │ │ ├── PIL_time_utildefines.h │ │ └── intern │ │ │ ├── BLI_args.c │ │ │ ├── BLI_array.c │ │ │ ├── BLI_dial.c │ │ │ ├── BLI_dynstr.c │ │ │ ├── BLI_filelist.c │ │ │ ├── BLI_ghash.c │ │ │ ├── BLI_heap.c │ │ │ ├── BLI_kdopbvh.c │ │ │ ├── BLI_kdtree.c │ │ │ ├── BLI_linklist.c │ │ │ ├── BLI_memarena.c │ │ │ ├── BLI_mempool.c │ │ │ ├── DLRB_tree.c │ │ │ ├── array_store.c │ │ │ ├── array_store_utils.c │ │ │ ├── array_utils.c │ │ │ ├── astar.c │ │ │ ├── bitmap_draw_2d.c │ │ │ ├── boxpack2d.c │ │ │ ├── buffer.c │ │ │ ├── callbacks.c │ │ │ ├── convexhull2d.c │ │ │ ├── dynlib.c │ │ │ ├── easing.c │ │ │ ├── edgehash.c │ │ │ ├── endian_switch.c │ │ │ ├── fileops.c │ │ │ ├── fnmatch.c │ │ │ ├── freetypefont.c │ │ │ ├── graph.c │ │ │ ├── gsqueue.c │ │ │ ├── hash_md5.c │ │ │ ├── hash_mm2a.c │ │ │ ├── jitter.c │ │ │ ├── lasso.c │ │ │ ├── list_sort_impl.h │ │ │ ├── listbase.c │ │ │ ├── math_base.c │ │ │ ├── math_base_inline.c │ │ │ ├── math_bits_inline.c │ │ │ ├── math_color.c │ │ │ ├── math_color_blend_inline.c │ │ │ ├── math_color_inline.c │ │ │ ├── math_geom.c │ │ │ ├── math_geom_inline.c │ │ │ ├── math_interp.c │ │ │ ├── math_matrix.c │ │ │ ├── math_rotation.c │ │ │ ├── math_solvers.c │ │ │ ├── math_statistics.c │ │ │ ├── math_vector.c │ │ │ ├── math_vector_inline.c │ │ │ ├── memory_utils.c │ │ │ ├── noise.c │ │ │ ├── path_util.c │ │ │ ├── polyfill2d.c │ │ │ ├── polyfill2d_beautify.c │ │ │ ├── quadric.c │ │ │ ├── rand.c │ │ │ ├── rct.c │ │ │ ├── scanfill.c │ │ │ ├── scanfill_utils.c │ │ │ ├── smallhash.c │ │ │ ├── sort.c │ │ │ ├── sort_utils.c │ │ │ ├── stack.c │ │ │ ├── storage.c │ │ │ ├── string.c │ │ │ ├── string_cursor_utf8.c │ │ │ ├── string_utf8.c │ │ │ ├── string_utils.c │ │ │ ├── system.c │ │ │ ├── task.c │ │ │ ├── threads.c │ │ │ ├── time.c │ │ │ ├── timecode.c │ │ │ ├── uvproject.c │ │ │ ├── voronoi.c │ │ │ ├── voxel.c │ │ │ ├── winstuff.c │ │ │ └── winstuff_dir.c │ ├── blenloader │ │ ├── BLO_blend_defs.h │ │ ├── BLO_readfile.h │ │ ├── BLO_runtime.h │ │ ├── BLO_undofile.h │ │ ├── BLO_writefile.h │ │ ├── CMakeLists.txt │ │ └── intern │ │ │ ├── readblenentry.c │ │ │ ├── readfile.c │ │ │ ├── readfile.h │ │ │ ├── runtime.c │ │ │ ├── undofile.c │ │ │ ├── versioning_250.c │ │ │ ├── versioning_260.c │ │ │ ├── versioning_270.c │ │ │ ├── versioning_defaults.c │ │ │ ├── versioning_legacy.c │ │ │ └── writefile.c │ ├── blentranslation │ │ ├── BLT_lang.h │ │ ├── BLT_translation.h │ │ ├── CMakeLists.txt │ │ └── intern │ │ │ ├── blt_lang.c │ │ │ └── blt_translation.c │ ├── bmesh │ │ ├── CMakeLists.txt │ │ ├── bmesh.h │ │ ├── bmesh_class.h │ │ ├── bmesh_tools.h │ │ ├── intern │ │ │ ├── bmesh_callback_generic.c │ │ │ ├── bmesh_callback_generic.h │ │ │ ├── bmesh_construct.c │ │ │ ├── bmesh_construct.h │ │ │ ├── bmesh_core.c │ │ │ ├── bmesh_core.h │ │ │ ├── bmesh_delete.c │ │ │ ├── bmesh_delete.h │ │ │ ├── bmesh_edgeloop.c │ │ │ ├── bmesh_edgeloop.h │ │ │ ├── bmesh_error.h │ │ │ ├── bmesh_inline.h │ │ │ ├── bmesh_interp.c │ │ │ ├── bmesh_interp.h │ │ │ ├── bmesh_iterators.c │ │ │ ├── bmesh_iterators.h │ │ │ ├── bmesh_iterators_inline.h │ │ │ ├── bmesh_log.c │ │ │ ├── bmesh_log.h │ │ │ ├── bmesh_marking.c │ │ │ ├── bmesh_marking.h │ │ │ ├── bmesh_mesh.c │ │ │ ├── bmesh_mesh.h │ │ │ ├── bmesh_mesh_conv.c │ │ │ ├── bmesh_mesh_conv.h │ │ │ ├── bmesh_mesh_validate.c │ │ │ ├── bmesh_mesh_validate.h │ │ │ ├── bmesh_mods.c │ │ │ ├── bmesh_mods.h │ │ │ ├── bmesh_opdefines.c │ │ │ ├── bmesh_operator_api.h │ │ │ ├── bmesh_operator_api_inline.h │ │ │ ├── bmesh_operators.c │ │ │ ├── bmesh_operators.h │ │ │ ├── bmesh_operators_private.h │ │ │ ├── bmesh_polygon.c │ │ │ ├── bmesh_polygon.h │ │ │ ├── bmesh_polygon_edgenet.c │ │ │ ├── bmesh_polygon_edgenet.h │ │ │ ├── bmesh_private.h │ │ │ ├── bmesh_queries.c │ │ │ ├── bmesh_queries.h │ │ │ ├── bmesh_queries_inline.h │ │ │ ├── bmesh_structure.c │ │ │ ├── bmesh_structure.h │ │ │ ├── bmesh_structure_inline.h │ │ │ ├── bmesh_walkers.c │ │ │ ├── bmesh_walkers.h │ │ │ ├── bmesh_walkers_impl.c │ │ │ └── bmesh_walkers_private.h │ │ ├── operators │ │ │ ├── bmo_beautify.c │ │ │ ├── bmo_bevel.c │ │ │ ├── bmo_bisect_plane.c │ │ │ ├── bmo_bridge.c │ │ │ ├── bmo_connect.c │ │ │ ├── bmo_connect_concave.c │ │ │ ├── bmo_connect_nonplanar.c │ │ │ ├── bmo_connect_pair.c │ │ │ ├── bmo_create.c │ │ │ ├── bmo_dissolve.c │ │ │ ├── bmo_dupe.c │ │ │ ├── bmo_edgenet.c │ │ │ ├── bmo_extrude.c │ │ │ ├── bmo_fill_attribute.c │ │ │ ├── bmo_fill_edgeloop.c │ │ │ ├── bmo_fill_grid.c │ │ │ ├── bmo_fill_holes.c │ │ │ ├── bmo_hull.c │ │ │ ├── bmo_inset.c │ │ │ ├── bmo_join_triangles.c │ │ │ ├── bmo_mesh_conv.c │ │ │ ├── bmo_mirror.c │ │ │ ├── bmo_normals.c │ │ │ ├── bmo_offset_edgeloops.c │ │ │ ├── bmo_planar_faces.c │ │ │ ├── bmo_poke.c │ │ │ ├── bmo_primitive.c │ │ │ ├── bmo_removedoubles.c │ │ │ ├── bmo_similar.c │ │ │ ├── bmo_smooth_laplacian.c │ │ │ ├── bmo_split_edges.c │ │ │ ├── bmo_subdivide.c │ │ │ ├── bmo_subdivide_edgering.c │ │ │ ├── bmo_symmetrize.c │ │ │ ├── bmo_triangulate.c │ │ │ ├── bmo_unsubdivide.c │ │ │ ├── bmo_utils.c │ │ │ └── bmo_wireframe.c │ │ └── tools │ │ │ ├── bmesh_beautify.c │ │ │ ├── bmesh_beautify.h │ │ │ ├── bmesh_bevel.c │ │ │ ├── bmesh_bevel.h │ │ │ ├── bmesh_bisect_plane.c │ │ │ ├── bmesh_bisect_plane.h │ │ │ ├── bmesh_decimate.h │ │ │ ├── bmesh_decimate_collapse.c │ │ │ ├── bmesh_decimate_dissolve.c │ │ │ ├── bmesh_decimate_unsubdivide.c │ │ │ ├── bmesh_edgenet.c │ │ │ ├── bmesh_edgenet.h │ │ │ ├── bmesh_edgesplit.c │ │ │ ├── bmesh_edgesplit.h │ │ │ ├── bmesh_intersect.c │ │ │ ├── bmesh_intersect.h │ │ │ ├── bmesh_path.c │ │ │ ├── bmesh_path.h │ │ │ ├── bmesh_path_region.c │ │ │ ├── bmesh_path_region.h │ │ │ ├── bmesh_region_match.c │ │ │ ├── bmesh_region_match.h │ │ │ ├── bmesh_separate.c │ │ │ ├── bmesh_separate.h │ │ │ ├── bmesh_triangulate.c │ │ │ ├── bmesh_triangulate.h │ │ │ ├── bmesh_wireframe.c │ │ │ └── bmesh_wireframe.h │ ├── collada │ │ ├── AnimationExporter.cpp │ │ ├── AnimationExporter.h │ │ ├── AnimationImporter.cpp │ │ ├── AnimationImporter.h │ │ ├── ArmatureExporter.cpp │ │ ├── ArmatureExporter.h │ │ ├── ArmatureImporter.cpp │ │ ├── ArmatureImporter.h │ │ ├── CMakeLists.txt │ │ ├── CameraExporter.cpp │ │ ├── CameraExporter.h │ │ ├── ControllerExporter.cpp │ │ ├── ControllerExporter.h │ │ ├── DocumentExporter.cpp │ │ ├── DocumentExporter.h │ │ ├── DocumentImporter.cpp │ │ ├── DocumentImporter.h │ │ ├── EffectExporter.cpp │ │ ├── EffectExporter.h │ │ ├── ErrorHandler.cpp │ │ ├── ErrorHandler.h │ │ ├── ExportSettings.cpp │ │ ├── ExportSettings.h │ │ ├── ExtraHandler.cpp │ │ ├── ExtraHandler.h │ │ ├── ExtraTags.cpp │ │ ├── ExtraTags.h │ │ ├── GeometryExporter.cpp │ │ ├── GeometryExporter.h │ │ ├── ImageExporter.cpp │ │ ├── ImageExporter.h │ │ ├── ImportSettings.cpp │ │ ├── ImportSettings.h │ │ ├── InstanceWriter.cpp │ │ ├── InstanceWriter.h │ │ ├── LightExporter.cpp │ │ ├── LightExporter.h │ │ ├── MaterialExporter.cpp │ │ ├── MaterialExporter.h │ │ ├── MeshImporter.cpp │ │ ├── MeshImporter.h │ │ ├── SceneExporter.cpp │ │ ├── SceneExporter.h │ │ ├── SkinInfo.cpp │ │ ├── SkinInfo.h │ │ ├── TransformReader.cpp │ │ ├── TransformReader.h │ │ ├── TransformWriter.cpp │ │ ├── TransformWriter.h │ │ ├── collada.cpp │ │ ├── collada.h │ │ ├── collada_internal.cpp │ │ ├── collada_internal.h │ │ ├── collada_utils.cpp │ │ ├── collada_utils.h │ │ └── version.conf │ ├── compositor │ │ ├── CMakeLists.txt │ │ ├── COM_compositor.h │ │ ├── COM_defines.h │ │ ├── intern │ │ │ ├── COM_CPUDevice.cpp │ │ │ ├── COM_CPUDevice.h │ │ │ ├── COM_ChunkOrder.cpp │ │ │ ├── COM_ChunkOrder.h │ │ │ ├── COM_ChunkOrderHotspot.cpp │ │ │ ├── COM_ChunkOrderHotspot.h │ │ │ ├── COM_CompositorContext.cpp │ │ │ ├── COM_CompositorContext.h │ │ │ ├── COM_Converter.cpp │ │ │ ├── COM_Converter.h │ │ │ ├── COM_Debug.cpp │ │ │ ├── COM_Debug.h │ │ │ ├── COM_Device.cpp │ │ │ ├── COM_Device.h │ │ │ ├── COM_ExecutionGroup.cpp │ │ │ ├── COM_ExecutionGroup.h │ │ │ ├── COM_ExecutionSystem.cpp │ │ │ ├── COM_ExecutionSystem.h │ │ │ ├── COM_MemoryBuffer.cpp │ │ │ ├── COM_MemoryBuffer.h │ │ │ ├── COM_MemoryProxy.cpp │ │ │ ├── COM_MemoryProxy.h │ │ │ ├── COM_Node.cpp │ │ │ ├── COM_Node.h │ │ │ ├── COM_NodeConverter.cpp │ │ │ ├── COM_NodeConverter.h │ │ │ ├── COM_NodeGraph.cpp │ │ │ ├── COM_NodeGraph.h │ │ │ ├── COM_NodeOperation.cpp │ │ │ ├── COM_NodeOperation.h │ │ │ ├── COM_NodeOperationBuilder.cpp │ │ │ ├── COM_NodeOperationBuilder.h │ │ │ ├── COM_OpenCLDevice.cpp │ │ │ ├── COM_OpenCLDevice.h │ │ │ ├── COM_SingleThreadedOperation.cpp │ │ │ ├── COM_SingleThreadedOperation.h │ │ │ ├── COM_SocketReader.cpp │ │ │ ├── COM_SocketReader.h │ │ │ ├── COM_WorkPackage.cpp │ │ │ ├── COM_WorkPackage.h │ │ │ ├── COM_WorkScheduler.cpp │ │ │ ├── COM_WorkScheduler.h │ │ │ └── COM_compositor.cpp │ │ ├── nodes │ │ │ ├── COM_AlphaOverNode.cpp │ │ │ ├── COM_AlphaOverNode.h │ │ │ ├── COM_BilateralBlurNode.cpp │ │ │ ├── COM_BilateralBlurNode.h │ │ │ ├── COM_BlurNode.cpp │ │ │ ├── COM_BlurNode.h │ │ │ ├── COM_BokehBlurNode.cpp │ │ │ ├── COM_BokehBlurNode.h │ │ │ ├── COM_BokehImageNode.cpp │ │ │ ├── COM_BokehImageNode.h │ │ │ ├── COM_BoxMaskNode.cpp │ │ │ ├── COM_BoxMaskNode.h │ │ │ ├── COM_BrightnessNode.cpp │ │ │ ├── COM_BrightnessNode.h │ │ │ ├── COM_ChannelMatteNode.cpp │ │ │ ├── COM_ChannelMatteNode.h │ │ │ ├── COM_ChromaMatteNode.cpp │ │ │ ├── COM_ChromaMatteNode.h │ │ │ ├── COM_ColorBalanceNode.cpp │ │ │ ├── COM_ColorBalanceNode.h │ │ │ ├── COM_ColorCorrectionNode.cpp │ │ │ ├── COM_ColorCorrectionNode.h │ │ │ ├── COM_ColorCurveNode.cpp │ │ │ ├── COM_ColorCurveNode.h │ │ │ ├── COM_ColorMatteNode.cpp │ │ │ ├── COM_ColorMatteNode.h │ │ │ ├── COM_ColorNode.cpp │ │ │ ├── COM_ColorNode.h │ │ │ ├── COM_ColorRampNode.cpp │ │ │ ├── COM_ColorRampNode.h │ │ │ ├── COM_ColorSpillNode.cpp │ │ │ ├── COM_ColorSpillNode.h │ │ │ ├── COM_ColorToBWNode.cpp │ │ │ ├── COM_ColorToBWNode.h │ │ │ ├── COM_CombineColorNode.cpp │ │ │ ├── COM_CombineColorNode.h │ │ │ ├── COM_CompositorNode.cpp │ │ │ ├── COM_CompositorNode.h │ │ │ ├── COM_ConvertAlphaNode.cpp │ │ │ ├── COM_ConvertAlphaNode.h │ │ │ ├── COM_CornerPinNode.cpp │ │ │ ├── COM_CornerPinNode.h │ │ │ ├── COM_CropNode.cpp │ │ │ ├── COM_CropNode.h │ │ │ ├── COM_CryptomatteNode.cpp │ │ │ ├── COM_CryptomatteNode.h │ │ │ ├── COM_DefocusNode.cpp │ │ │ ├── COM_DefocusNode.h │ │ │ ├── COM_DespeckleNode.cpp │ │ │ ├── COM_DespeckleNode.h │ │ │ ├── COM_DifferenceMatteNode.cpp │ │ │ ├── COM_DifferenceMatteNode.h │ │ │ ├── COM_DilateErodeNode.cpp │ │ │ ├── COM_DilateErodeNode.h │ │ │ ├── COM_DirectionalBlurNode.cpp │ │ │ ├── COM_DirectionalBlurNode.h │ │ │ ├── COM_DisplaceNode.cpp │ │ │ ├── COM_DisplaceNode.h │ │ │ ├── COM_DistanceMatteNode.cpp │ │ │ ├── COM_DistanceMatteNode.h │ │ │ ├── COM_DoubleEdgeMaskNode.cpp │ │ │ ├── COM_DoubleEdgeMaskNode.h │ │ │ ├── COM_EllipseMaskNode.cpp │ │ │ ├── COM_EllipseMaskNode.h │ │ │ ├── COM_FilterNode.cpp │ │ │ ├── COM_FilterNode.h │ │ │ ├── COM_FlipNode.cpp │ │ │ ├── COM_FlipNode.h │ │ │ ├── COM_GammaNode.cpp │ │ │ ├── COM_GammaNode.h │ │ │ ├── COM_GlareNode.cpp │ │ │ ├── COM_GlareNode.h │ │ │ ├── COM_HueSaturationValueCorrectNode.cpp │ │ │ ├── COM_HueSaturationValueCorrectNode.h │ │ │ ├── COM_HueSaturationValueNode.cpp │ │ │ ├── COM_HueSaturationValueNode.h │ │ │ ├── COM_IDMaskNode.cpp │ │ │ ├── COM_IDMaskNode.h │ │ │ ├── COM_ImageNode.cpp │ │ │ ├── COM_ImageNode.h │ │ │ ├── COM_InpaintNode.cpp │ │ │ ├── COM_InpaintNode.h │ │ │ ├── COM_InvertNode.cpp │ │ │ ├── COM_InvertNode.h │ │ │ ├── COM_KeyingNode.cpp │ │ │ ├── COM_KeyingNode.h │ │ │ ├── COM_KeyingScreenNode.cpp │ │ │ ├── COM_KeyingScreenNode.h │ │ │ ├── COM_LensDistortionNode.cpp │ │ │ ├── COM_LensDistortionNode.h │ │ │ ├── COM_LuminanceMatteNode.cpp │ │ │ ├── COM_LuminanceMatteNode.h │ │ │ ├── COM_MapRangeNode.cpp │ │ │ ├── COM_MapRangeNode.h │ │ │ ├── COM_MapUVNode.cpp │ │ │ ├── COM_MapUVNode.h │ │ │ ├── COM_MapValueNode.cpp │ │ │ ├── COM_MapValueNode.h │ │ │ ├── COM_MaskNode.cpp │ │ │ ├── COM_MaskNode.h │ │ │ ├── COM_MathNode.cpp │ │ │ ├── COM_MathNode.h │ │ │ ├── COM_MixNode.cpp │ │ │ ├── COM_MixNode.h │ │ │ ├── COM_MotionBlur2DNode.cpp │ │ │ ├── COM_MotionBlur2DNode.h │ │ │ ├── COM_MovieClipNode.cpp │ │ │ ├── COM_MovieClipNode.h │ │ │ ├── COM_MovieDistortionNode.cpp │ │ │ ├── COM_MovieDistortionNode.h │ │ │ ├── COM_NormalNode.cpp │ │ │ ├── COM_NormalNode.h │ │ │ ├── COM_NormalizeNode.cpp │ │ │ ├── COM_NormalizeNode.h │ │ │ ├── COM_OutputFileNode.cpp │ │ │ ├── COM_OutputFileNode.h │ │ │ ├── COM_PixelateNode.cpp │ │ │ ├── COM_PixelateNode.h │ │ │ ├── COM_PlaneTrackDeformNode.cpp │ │ │ ├── COM_PlaneTrackDeformNode.h │ │ │ ├── COM_RenderLayersNode.cpp │ │ │ ├── COM_RenderLayersNode.h │ │ │ ├── COM_RotateNode.cpp │ │ │ ├── COM_RotateNode.h │ │ │ ├── COM_ScaleNode.cpp │ │ │ ├── COM_ScaleNode.h │ │ │ ├── COM_SeparateColorNode.cpp │ │ │ ├── COM_SeparateColorNode.h │ │ │ ├── COM_SetAlphaNode.cpp │ │ │ ├── COM_SetAlphaNode.h │ │ │ ├── COM_SocketProxyNode.cpp │ │ │ ├── COM_SocketProxyNode.h │ │ │ ├── COM_SplitViewerNode.cpp │ │ │ ├── COM_SplitViewerNode.h │ │ │ ├── COM_Stabilize2dNode.cpp │ │ │ ├── COM_Stabilize2dNode.h │ │ │ ├── COM_SunBeamsNode.cpp │ │ │ ├── COM_SunBeamsNode.h │ │ │ ├── COM_SwitchNode.cpp │ │ │ ├── COM_SwitchNode.h │ │ │ ├── COM_SwitchViewNode.cpp │ │ │ ├── COM_SwitchViewNode.h │ │ │ ├── COM_TextureNode.cpp │ │ │ ├── COM_TextureNode.h │ │ │ ├── COM_TimeNode.cpp │ │ │ ├── COM_TimeNode.h │ │ │ ├── COM_TonemapNode.cpp │ │ │ ├── COM_TonemapNode.h │ │ │ ├── COM_TrackPositionNode.cpp │ │ │ ├── COM_TrackPositionNode.h │ │ │ ├── COM_TransformNode.cpp │ │ │ ├── COM_TransformNode.h │ │ │ ├── COM_TranslateNode.cpp │ │ │ ├── COM_TranslateNode.h │ │ │ ├── COM_ValueNode.cpp │ │ │ ├── COM_ValueNode.h │ │ │ ├── COM_VectorBlurNode.cpp │ │ │ ├── COM_VectorBlurNode.h │ │ │ ├── COM_VectorCurveNode.cpp │ │ │ ├── COM_VectorCurveNode.h │ │ │ ├── COM_ViewLevelsNode.cpp │ │ │ ├── COM_ViewLevelsNode.h │ │ │ ├── COM_ViewerNode.cpp │ │ │ ├── COM_ViewerNode.h │ │ │ ├── COM_ZCombineNode.cpp │ │ │ └── COM_ZCombineNode.h │ │ └── operations │ │ │ ├── COM_AlphaOverKeyOperation.cpp │ │ │ ├── COM_AlphaOverKeyOperation.h │ │ │ ├── COM_AlphaOverMixedOperation.cpp │ │ │ ├── COM_AlphaOverMixedOperation.h │ │ │ ├── COM_AlphaOverPremultiplyOperation.cpp │ │ │ ├── COM_AlphaOverPremultiplyOperation.h │ │ │ ├── COM_AntiAliasOperation.cpp │ │ │ ├── COM_AntiAliasOperation.h │ │ │ ├── COM_BilateralBlurOperation.cpp │ │ │ ├── COM_BilateralBlurOperation.h │ │ │ ├── COM_BlurBaseOperation.cpp │ │ │ ├── COM_BlurBaseOperation.h │ │ │ ├── COM_BokehBlurOperation.cpp │ │ │ ├── COM_BokehBlurOperation.h │ │ │ ├── COM_BokehImageOperation.cpp │ │ │ ├── COM_BokehImageOperation.h │ │ │ ├── COM_BoxMaskOperation.cpp │ │ │ ├── COM_BoxMaskOperation.h │ │ │ ├── COM_BrightnessOperation.cpp │ │ │ ├── COM_BrightnessOperation.h │ │ │ ├── COM_CalculateMeanOperation.cpp │ │ │ ├── COM_CalculateMeanOperation.h │ │ │ ├── COM_CalculateStandardDeviationOperation.cpp │ │ │ ├── COM_CalculateStandardDeviationOperation.h │ │ │ ├── COM_ChangeHSVOperation.cpp │ │ │ ├── COM_ChangeHSVOperation.h │ │ │ ├── COM_ChannelMatteOperation.cpp │ │ │ ├── COM_ChannelMatteOperation.h │ │ │ ├── COM_ChromaMatteOperation.cpp │ │ │ ├── COM_ChromaMatteOperation.h │ │ │ ├── COM_ColorBalanceASCCDLOperation.cpp │ │ │ ├── COM_ColorBalanceASCCDLOperation.h │ │ │ ├── COM_ColorBalanceLGGOperation.cpp │ │ │ ├── COM_ColorBalanceLGGOperation.h │ │ │ ├── COM_ColorCorrectionOperation.cpp │ │ │ ├── COM_ColorCorrectionOperation.h │ │ │ ├── COM_ColorCurveOperation.cpp │ │ │ ├── COM_ColorCurveOperation.h │ │ │ ├── COM_ColorMatteOperation.cpp │ │ │ ├── COM_ColorMatteOperation.h │ │ │ ├── COM_ColorRampOperation.cpp │ │ │ ├── COM_ColorRampOperation.h │ │ │ ├── COM_ColorSpillOperation.cpp │ │ │ ├── COM_ColorSpillOperation.h │ │ │ ├── COM_CompositorOperation.cpp │ │ │ ├── COM_CompositorOperation.h │ │ │ ├── COM_ConvertColorProfileOperation.cpp │ │ │ ├── COM_ConvertColorProfileOperation.h │ │ │ ├── COM_ConvertDepthToRadiusOperation.cpp │ │ │ ├── COM_ConvertDepthToRadiusOperation.h │ │ │ ├── COM_ConvertOperation.cpp │ │ │ ├── COM_ConvertOperation.h │ │ │ ├── COM_ConvolutionEdgeFilterOperation.cpp │ │ │ ├── COM_ConvolutionEdgeFilterOperation.h │ │ │ ├── COM_ConvolutionFilterOperation.cpp │ │ │ ├── COM_ConvolutionFilterOperation.h │ │ │ ├── COM_CropOperation.cpp │ │ │ ├── COM_CropOperation.h │ │ │ ├── COM_CryptomatteOperation.cpp │ │ │ ├── COM_CryptomatteOperation.h │ │ │ ├── COM_CurveBaseOperation.cpp │ │ │ ├── COM_CurveBaseOperation.h │ │ │ ├── COM_DespeckleOperation.cpp │ │ │ ├── COM_DespeckleOperation.h │ │ │ ├── COM_DifferenceMatteOperation.cpp │ │ │ ├── COM_DifferenceMatteOperation.h │ │ │ ├── COM_DilateErodeOperation.cpp │ │ │ ├── COM_DilateErodeOperation.h │ │ │ ├── COM_DirectionalBlurOperation.cpp │ │ │ ├── COM_DirectionalBlurOperation.h │ │ │ ├── COM_DisplaceOperation.cpp │ │ │ ├── COM_DisplaceOperation.h │ │ │ ├── COM_DisplaceSimpleOperation.cpp │ │ │ ├── COM_DisplaceSimpleOperation.h │ │ │ ├── COM_DistanceRGBMatteOperation.cpp │ │ │ ├── COM_DistanceRGBMatteOperation.h │ │ │ ├── COM_DistanceYCCMatteOperation.cpp │ │ │ ├── COM_DistanceYCCMatteOperation.h │ │ │ ├── COM_DotproductOperation.cpp │ │ │ ├── COM_DotproductOperation.h │ │ │ ├── COM_DoubleEdgeMaskOperation.cpp │ │ │ ├── COM_DoubleEdgeMaskOperation.h │ │ │ ├── COM_EllipseMaskOperation.cpp │ │ │ ├── COM_EllipseMaskOperation.h │ │ │ ├── COM_FastGaussianBlurOperation.cpp │ │ │ ├── COM_FastGaussianBlurOperation.h │ │ │ ├── COM_FlipOperation.cpp │ │ │ ├── COM_FlipOperation.h │ │ │ ├── COM_GammaCorrectOperation.cpp │ │ │ ├── COM_GammaCorrectOperation.h │ │ │ ├── COM_GammaOperation.cpp │ │ │ ├── COM_GammaOperation.h │ │ │ ├── COM_GaussianAlphaXBlurOperation.cpp │ │ │ ├── COM_GaussianAlphaXBlurOperation.h │ │ │ ├── COM_GaussianAlphaYBlurOperation.cpp │ │ │ ├── COM_GaussianAlphaYBlurOperation.h │ │ │ ├── COM_GaussianBokehBlurOperation.cpp │ │ │ ├── COM_GaussianBokehBlurOperation.h │ │ │ ├── COM_GaussianXBlurOperation.cpp │ │ │ ├── COM_GaussianXBlurOperation.h │ │ │ ├── COM_GaussianYBlurOperation.cpp │ │ │ ├── COM_GaussianYBlurOperation.h │ │ │ ├── COM_GlareBaseOperation.cpp │ │ │ ├── COM_GlareBaseOperation.h │ │ │ ├── COM_GlareFogGlowOperation.cpp │ │ │ ├── COM_GlareFogGlowOperation.h │ │ │ ├── COM_GlareGhostOperation.cpp │ │ │ ├── COM_GlareGhostOperation.h │ │ │ ├── COM_GlareSimpleStarOperation.cpp │ │ │ ├── COM_GlareSimpleStarOperation.h │ │ │ ├── COM_GlareStreaksOperation.cpp │ │ │ ├── COM_GlareStreaksOperation.h │ │ │ ├── COM_GlareThresholdOperation.cpp │ │ │ ├── COM_GlareThresholdOperation.h │ │ │ ├── COM_HueSaturationValueCorrectOperation.cpp │ │ │ ├── COM_HueSaturationValueCorrectOperation.h │ │ │ ├── COM_IDMaskOperation.cpp │ │ │ ├── COM_IDMaskOperation.h │ │ │ ├── COM_ImageOperation.cpp │ │ │ ├── COM_ImageOperation.h │ │ │ ├── COM_InpaintOperation.cpp │ │ │ ├── COM_InpaintOperation.h │ │ │ ├── COM_InvertOperation.cpp │ │ │ ├── COM_InvertOperation.h │ │ │ ├── COM_KeyingBlurOperation.cpp │ │ │ ├── COM_KeyingBlurOperation.h │ │ │ ├── COM_KeyingClipOperation.cpp │ │ │ ├── COM_KeyingClipOperation.h │ │ │ ├── COM_KeyingDespillOperation.cpp │ │ │ ├── COM_KeyingDespillOperation.h │ │ │ ├── COM_KeyingOperation.cpp │ │ │ ├── COM_KeyingOperation.h │ │ │ ├── COM_KeyingScreenOperation.cpp │ │ │ ├── COM_KeyingScreenOperation.h │ │ │ ├── COM_LuminanceMatteOperation.cpp │ │ │ ├── COM_LuminanceMatteOperation.h │ │ │ ├── COM_MapRangeOperation.cpp │ │ │ ├── COM_MapRangeOperation.h │ │ │ ├── COM_MapUVOperation.cpp │ │ │ ├── COM_MapUVOperation.h │ │ │ ├── COM_MapValueOperation.cpp │ │ │ ├── COM_MapValueOperation.h │ │ │ ├── COM_MaskOperation.cpp │ │ │ ├── COM_MaskOperation.h │ │ │ ├── COM_MathBaseOperation.cpp │ │ │ ├── COM_MathBaseOperation.h │ │ │ ├── COM_MixOperation.cpp │ │ │ ├── COM_MixOperation.h │ │ │ ├── COM_MotionBlur2DOperation.cpp │ │ │ ├── COM_MotionBlur2DOperation.h │ │ │ ├── COM_MovieClipAttributeOperation.cpp │ │ │ ├── COM_MovieClipAttributeOperation.h │ │ │ ├── COM_MovieClipOperation.cpp │ │ │ ├── COM_MovieClipOperation.h │ │ │ ├── COM_MovieDistortionOperation.cpp │ │ │ ├── COM_MovieDistortionOperation.h │ │ │ ├── COM_MultilayerImageOperation.cpp │ │ │ ├── COM_MultilayerImageOperation.h │ │ │ ├── COM_NormalizeOperation.cpp │ │ │ ├── COM_NormalizeOperation.h │ │ │ ├── COM_OpenCLKernels.cl │ │ │ ├── COM_OutputFileMultiViewOperation.cpp │ │ │ ├── COM_OutputFileMultiViewOperation.h │ │ │ ├── COM_OutputFileOperation.cpp │ │ │ ├── COM_OutputFileOperation.h │ │ │ ├── COM_PixelateOperation.cpp │ │ │ ├── COM_PixelateOperation.h │ │ │ ├── COM_PlaneCornerPinOperation.cpp │ │ │ ├── COM_PlaneCornerPinOperation.h │ │ │ ├── COM_PlaneDistortCommonOperation.cpp │ │ │ ├── COM_PlaneDistortCommonOperation.h │ │ │ ├── COM_PlaneTrackOperation.cpp │ │ │ ├── COM_PlaneTrackOperation.h │ │ │ ├── COM_PreviewOperation.cpp │ │ │ ├── COM_PreviewOperation.h │ │ │ ├── COM_ProjectorLensDistortionOperation.cpp │ │ │ ├── COM_ProjectorLensDistortionOperation.h │ │ │ ├── COM_QualityStepHelper.cpp │ │ │ ├── COM_QualityStepHelper.h │ │ │ ├── COM_ReadBufferOperation.cpp │ │ │ ├── COM_ReadBufferOperation.h │ │ │ ├── COM_RenderLayersProg.cpp │ │ │ ├── COM_RenderLayersProg.h │ │ │ ├── COM_RotateOperation.cpp │ │ │ ├── COM_RotateOperation.h │ │ │ ├── COM_ScaleOperation.cpp │ │ │ ├── COM_ScaleOperation.h │ │ │ ├── COM_ScreenLensDistortionOperation.cpp │ │ │ ├── COM_ScreenLensDistortionOperation.h │ │ │ ├── COM_SetAlphaOperation.cpp │ │ │ ├── COM_SetAlphaOperation.h │ │ │ ├── COM_SetColorOperation.cpp │ │ │ ├── COM_SetColorOperation.h │ │ │ ├── COM_SetSamplerOperation.cpp │ │ │ ├── COM_SetSamplerOperation.h │ │ │ ├── COM_SetValueOperation.cpp │ │ │ ├── COM_SetValueOperation.h │ │ │ ├── COM_SetVectorOperation.cpp │ │ │ ├── COM_SetVectorOperation.h │ │ │ ├── COM_SocketProxyOperation.cpp │ │ │ ├── COM_SocketProxyOperation.h │ │ │ ├── COM_SplitOperation.cpp │ │ │ ├── COM_SplitOperation.h │ │ │ ├── COM_SunBeamsOperation.cpp │ │ │ ├── COM_SunBeamsOperation.h │ │ │ ├── COM_TextureOperation.cpp │ │ │ ├── COM_TextureOperation.h │ │ │ ├── COM_TonemapOperation.cpp │ │ │ ├── COM_TonemapOperation.h │ │ │ ├── COM_TrackPositionOperation.cpp │ │ │ ├── COM_TrackPositionOperation.h │ │ │ ├── COM_TranslateOperation.cpp │ │ │ ├── COM_TranslateOperation.h │ │ │ ├── COM_VariableSizeBokehBlurOperation.cpp │ │ │ ├── COM_VariableSizeBokehBlurOperation.h │ │ │ ├── COM_VectorBlurOperation.cpp │ │ │ ├── COM_VectorBlurOperation.h │ │ │ ├── COM_VectorCurveOperation.cpp │ │ │ ├── COM_VectorCurveOperation.h │ │ │ ├── COM_ViewerOperation.cpp │ │ │ ├── COM_ViewerOperation.h │ │ │ ├── COM_WrapOperation.cpp │ │ │ ├── COM_WrapOperation.h │ │ │ ├── COM_WriteBufferOperation.cpp │ │ │ ├── COM_WriteBufferOperation.h │ │ │ ├── COM_ZCombineOperation.cpp │ │ │ └── COM_ZCombineOperation.h │ ├── datatoc │ │ ├── CMakeLists.txt │ │ ├── datatoc.c │ │ ├── datatoc_icon.c │ │ ├── datatoc_icon.py │ │ ├── datatoc_icon_split.py │ │ └── datatoc_icon_split_to_png.py │ ├── depsgraph │ │ ├── CMakeLists.txt │ │ ├── DEG_depsgraph.h │ │ ├── DEG_depsgraph_build.h │ │ ├── DEG_depsgraph_debug.h │ │ ├── DEG_depsgraph_query.h │ │ ├── intern │ │ │ ├── builder │ │ │ │ ├── deg_builder.cc │ │ │ │ ├── deg_builder.h │ │ │ │ ├── deg_builder_cycle.cc │ │ │ │ ├── deg_builder_cycle.h │ │ │ │ ├── deg_builder_nodes.cc │ │ │ │ ├── deg_builder_nodes.h │ │ │ │ ├── deg_builder_nodes_rig.cc │ │ │ │ ├── deg_builder_nodes_scene.cc │ │ │ │ ├── deg_builder_pchanmap.cc │ │ │ │ ├── deg_builder_pchanmap.h │ │ │ │ ├── deg_builder_relations.cc │ │ │ │ ├── deg_builder_relations.h │ │ │ │ ├── deg_builder_relations_keys.cc │ │ │ │ ├── deg_builder_relations_rig.cc │ │ │ │ ├── deg_builder_relations_scene.cc │ │ │ │ ├── deg_builder_transitive.cc │ │ │ │ └── deg_builder_transitive.h │ │ │ ├── debug │ │ │ │ └── deg_debug_graphviz.cc │ │ │ ├── depsgraph.cc │ │ │ ├── depsgraph.h │ │ │ ├── depsgraph_build.cc │ │ │ ├── depsgraph_debug.cc │ │ │ ├── depsgraph_eval.cc │ │ │ ├── depsgraph_intern.h │ │ │ ├── depsgraph_query.cc │ │ │ ├── depsgraph_tag.cc │ │ │ ├── depsgraph_type_defines.cc │ │ │ ├── depsgraph_types.h │ │ │ ├── eval │ │ │ │ ├── deg_eval.cc │ │ │ │ ├── deg_eval.h │ │ │ │ ├── deg_eval_debug.cc │ │ │ │ ├── deg_eval_debug.h │ │ │ │ ├── deg_eval_flush.cc │ │ │ │ └── deg_eval_flush.h │ │ │ └── nodes │ │ │ │ ├── deg_node.cc │ │ │ │ ├── deg_node.h │ │ │ │ ├── deg_node_component.cc │ │ │ │ ├── deg_node_component.h │ │ │ │ ├── deg_node_operation.cc │ │ │ │ └── deg_node_operation.h │ │ └── util │ │ │ ├── deg_util_foreach.h │ │ │ ├── deg_util_function.h │ │ │ └── deg_util_hash.h │ ├── editors │ │ ├── CMakeLists.txt │ │ ├── animation │ │ │ ├── CMakeLists.txt │ │ │ ├── anim_channels_defines.c │ │ │ ├── anim_channels_edit.c │ │ │ ├── anim_deps.c │ │ │ ├── anim_draw.c │ │ │ ├── anim_filter.c │ │ │ ├── anim_intern.h │ │ │ ├── anim_ipo_utils.c │ │ │ ├── anim_markers.c │ │ │ ├── anim_ops.c │ │ │ ├── drivers.c │ │ │ ├── fmodifier_ui.c │ │ │ ├── keyframes_draw.c │ │ │ ├── keyframes_edit.c │ │ │ ├── keyframes_general.c │ │ │ ├── keyframing.c │ │ │ └── keyingsets.c │ │ ├── armature │ │ │ ├── BIF_generate.h │ │ │ ├── BIF_retarget.h │ │ │ ├── CMakeLists.txt │ │ │ ├── armature_add.c │ │ │ ├── armature_edit.c │ │ │ ├── armature_intern.h │ │ │ ├── armature_naming.c │ │ │ ├── armature_ops.c │ │ │ ├── armature_relations.c │ │ │ ├── armature_select.c │ │ │ ├── armature_skinning.c │ │ │ ├── armature_utils.c │ │ │ ├── editarmature_generate.c │ │ │ ├── editarmature_retarget.c │ │ │ ├── editarmature_sketch.c │ │ │ ├── meshlaplacian.c │ │ │ ├── meshlaplacian.h │ │ │ ├── pose_edit.c │ │ │ ├── pose_group.c │ │ │ ├── pose_lib.c │ │ │ ├── pose_select.c │ │ │ ├── pose_slide.c │ │ │ ├── pose_transform.c │ │ │ ├── pose_utils.c │ │ │ ├── reeb.c │ │ │ └── reeb.h │ │ ├── curve │ │ │ ├── CMakeLists.txt │ │ │ ├── curve_intern.h │ │ │ ├── curve_ops.c │ │ │ ├── editcurve.c │ │ │ ├── editcurve_add.c │ │ │ ├── editcurve_paint.c │ │ │ ├── editcurve_select.c │ │ │ ├── editfont.c │ │ │ └── editfont_undo.c │ │ ├── datafiles │ │ │ └── CMakeLists.txt │ │ ├── gpencil │ │ │ ├── CMakeLists.txt │ │ │ ├── drawgpencil.c │ │ │ ├── editaction_gpencil.c │ │ │ ├── gpencil_brush.c │ │ │ ├── gpencil_convert.c │ │ │ ├── gpencil_data.c │ │ │ ├── gpencil_edit.c │ │ │ ├── gpencil_intern.h │ │ │ ├── gpencil_interpolate.c │ │ │ ├── gpencil_ops.c │ │ │ ├── gpencil_paint.c │ │ │ ├── gpencil_select.c │ │ │ ├── gpencil_undo.c │ │ │ └── gpencil_utils.c │ │ ├── include │ │ │ ├── BIF_gl.h │ │ │ ├── BIF_glutil.h │ │ │ ├── ED_anim_api.h │ │ │ ├── ED_armature.h │ │ │ ├── ED_buttons.h │ │ │ ├── ED_clip.h │ │ │ ├── ED_curve.h │ │ │ ├── ED_datafiles.h │ │ │ ├── ED_fileselect.h │ │ │ ├── ED_gpencil.h │ │ │ ├── ED_image.h │ │ │ ├── ED_info.h │ │ │ ├── ED_keyframes_draw.h │ │ │ ├── ED_keyframes_edit.h │ │ │ ├── ED_keyframing.h │ │ │ ├── ED_lattice.h │ │ │ ├── ED_logic.h │ │ │ ├── ED_markers.h │ │ │ ├── ED_mask.h │ │ │ ├── ED_mball.h │ │ │ ├── ED_mesh.h │ │ │ ├── ED_node.h │ │ │ ├── ED_numinput.h │ │ │ ├── ED_object.h │ │ │ ├── ED_outliner.h │ │ │ ├── ED_paint.h │ │ │ ├── ED_particle.h │ │ │ ├── ED_physics.h │ │ │ ├── ED_render.h │ │ │ ├── ED_screen.h │ │ │ ├── ED_screen_types.h │ │ │ ├── ED_sculpt.h │ │ │ ├── ED_sequencer.h │ │ │ ├── ED_sound.h │ │ │ ├── ED_space_api.h │ │ │ ├── ED_text.h │ │ │ ├── ED_transform.h │ │ │ ├── ED_transform_snap_object_context.h │ │ │ ├── ED_transverts.h │ │ │ ├── ED_types.h │ │ │ ├── ED_util.h │ │ │ ├── ED_uvedit.h │ │ │ ├── ED_view3d.h │ │ │ ├── UI_icons.h │ │ │ ├── UI_interface.h │ │ │ ├── UI_interface_icons.h │ │ │ ├── UI_resources.h │ │ │ └── UI_view2d.h │ │ ├── interface │ │ │ ├── CMakeLists.txt │ │ │ ├── interface.c │ │ │ ├── interface_align.c │ │ │ ├── interface_anim.c │ │ │ ├── interface_draw.c │ │ │ ├── interface_eyedropper.c │ │ │ ├── interface_handlers.c │ │ │ ├── interface_icons.c │ │ │ ├── interface_intern.h │ │ │ ├── interface_layout.c │ │ │ ├── interface_ops.c │ │ │ ├── interface_panel.c │ │ │ ├── interface_regions.c │ │ │ ├── interface_style.c │ │ │ ├── interface_templates.c │ │ │ ├── interface_utils.c │ │ │ ├── interface_widgets.c │ │ │ ├── resources.c │ │ │ ├── view2d.c │ │ │ └── view2d_ops.c │ │ ├── io │ │ │ ├── CMakeLists.txt │ │ │ ├── io_alembic.c │ │ │ ├── io_alembic.h │ │ │ ├── io_cache.c │ │ │ ├── io_cache.h │ │ │ ├── io_collada.c │ │ │ ├── io_collada.h │ │ │ ├── io_ops.c │ │ │ └── io_ops.h │ │ ├── mask │ │ │ ├── CMakeLists.txt │ │ │ ├── mask_add.c │ │ │ ├── mask_draw.c │ │ │ ├── mask_edit.c │ │ │ ├── mask_editaction.c │ │ │ ├── mask_intern.h │ │ │ ├── mask_ops.c │ │ │ ├── mask_relationships.c │ │ │ ├── mask_select.c │ │ │ └── mask_shapekey.c │ │ ├── mesh │ │ │ ├── CMakeLists.txt │ │ │ ├── editface.c │ │ │ ├── editmesh_add.c │ │ │ ├── editmesh_bevel.c │ │ │ ├── editmesh_bisect.c │ │ │ ├── editmesh_extrude.c │ │ │ ├── editmesh_inset.c │ │ │ ├── editmesh_intersect.c │ │ │ ├── editmesh_knife.c │ │ │ ├── editmesh_knife_project.c │ │ │ ├── editmesh_loopcut.c │ │ │ ├── editmesh_path.c │ │ │ ├── editmesh_rip.c │ │ │ ├── editmesh_rip_edge.c │ │ │ ├── editmesh_select.c │ │ │ ├── editmesh_tools.c │ │ │ ├── editmesh_undo.c │ │ │ ├── editmesh_utils.c │ │ │ ├── mesh_data.c │ │ │ ├── mesh_intern.h │ │ │ ├── mesh_navmesh.c │ │ │ ├── mesh_ops.c │ │ │ └── meshtools.c │ │ ├── metaball │ │ │ ├── CMakeLists.txt │ │ │ ├── mball_edit.c │ │ │ ├── mball_intern.h │ │ │ └── mball_ops.c │ │ ├── object │ │ │ ├── CMakeLists.txt │ │ │ ├── object_add.c │ │ │ ├── object_bake.c │ │ │ ├── object_bake_api.c │ │ │ ├── object_constraint.c │ │ │ ├── object_data_transfer.c │ │ │ ├── object_edit.c │ │ │ ├── object_group.c │ │ │ ├── object_hook.c │ │ │ ├── object_intern.h │ │ │ ├── object_lattice.c │ │ │ ├── object_lod.c │ │ │ ├── object_modifier.c │ │ │ ├── object_ops.c │ │ │ ├── object_random.c │ │ │ ├── object_relations.c │ │ │ ├── object_select.c │ │ │ ├── object_shapekey.c │ │ │ ├── object_transform.c │ │ │ ├── object_vgroup.c │ │ │ └── object_warp.c │ │ ├── physics │ │ │ ├── CMakeLists.txt │ │ │ ├── dynamicpaint_ops.c │ │ │ ├── particle_boids.c │ │ │ ├── particle_edit.c │ │ │ ├── particle_object.c │ │ │ ├── physics_fluid.c │ │ │ ├── physics_intern.h │ │ │ ├── physics_ops.c │ │ │ ├── physics_pointcache.c │ │ │ ├── rigidbody_constraint.c │ │ │ ├── rigidbody_object.c │ │ │ └── rigidbody_world.c │ │ ├── render │ │ │ ├── CMakeLists.txt │ │ │ ├── render_intern.h │ │ │ ├── render_internal.c │ │ │ ├── render_opengl.c │ │ │ ├── render_ops.c │ │ │ ├── render_preview.c │ │ │ ├── render_shading.c │ │ │ ├── render_update.c │ │ │ └── render_view.c │ │ ├── screen │ │ │ ├── CMakeLists.txt │ │ │ ├── area.c │ │ │ ├── glutil.c │ │ │ ├── screen_context.c │ │ │ ├── screen_edit.c │ │ │ ├── screen_intern.h │ │ │ ├── screen_ops.c │ │ │ └── screendump.c │ │ ├── sculpt_paint │ │ │ ├── CMakeLists.txt │ │ │ ├── paint_cursor.c │ │ │ ├── paint_curve.c │ │ │ ├── paint_hide.c │ │ │ ├── paint_image.c │ │ │ ├── paint_image_2d.c │ │ │ ├── paint_image_proj.c │ │ │ ├── paint_intern.h │ │ │ ├── paint_mask.c │ │ │ ├── paint_ops.c │ │ │ ├── paint_stroke.c │ │ │ ├── paint_undo.c │ │ │ ├── paint_utils.c │ │ │ ├── paint_vertex.c │ │ │ ├── paint_vertex_proj.c │ │ │ ├── sculpt.c │ │ │ ├── sculpt_intern.h │ │ │ ├── sculpt_undo.c │ │ │ └── sculpt_uv.c │ │ ├── sound │ │ │ ├── CMakeLists.txt │ │ │ ├── sound_intern.h │ │ │ └── sound_ops.c │ │ ├── space_action │ │ │ ├── CMakeLists.txt │ │ │ ├── action_buttons.c │ │ │ ├── action_data.c │ │ │ ├── action_draw.c │ │ │ ├── action_edit.c │ │ │ ├── action_intern.h │ │ │ ├── action_ops.c │ │ │ ├── action_select.c │ │ │ └── space_action.c │ │ ├── space_api │ │ │ ├── CMakeLists.txt │ │ │ └── spacetypes.c │ │ ├── space_buttons │ │ │ ├── CMakeLists.txt │ │ │ ├── buttons_context.c │ │ │ ├── buttons_intern.h │ │ │ ├── buttons_ops.c │ │ │ ├── buttons_texture.c │ │ │ └── space_buttons.c │ │ ├── space_clip │ │ │ ├── CMakeLists.txt │ │ │ ├── clip_buttons.c │ │ │ ├── clip_dopesheet_draw.c │ │ │ ├── clip_dopesheet_ops.c │ │ │ ├── clip_draw.c │ │ │ ├── clip_editor.c │ │ │ ├── clip_graph_draw.c │ │ │ ├── clip_graph_ops.c │ │ │ ├── clip_intern.h │ │ │ ├── clip_ops.c │ │ │ ├── clip_toolbar.c │ │ │ ├── clip_utils.c │ │ │ ├── space_clip.c │ │ │ ├── tracking_ops.c │ │ │ ├── tracking_ops_detect.c │ │ │ ├── tracking_ops_intern.h │ │ │ ├── tracking_ops_orient.c │ │ │ ├── tracking_ops_plane.c │ │ │ ├── tracking_ops_solve.c │ │ │ ├── tracking_ops_stabilize.c │ │ │ ├── tracking_ops_track.c │ │ │ ├── tracking_ops_utils.c │ │ │ └── tracking_select.c │ │ ├── space_console │ │ │ ├── CMakeLists.txt │ │ │ ├── console_draw.c │ │ │ ├── console_intern.h │ │ │ ├── console_ops.c │ │ │ └── space_console.c │ │ ├── space_file │ │ │ ├── CMakeLists.txt │ │ │ ├── file_draw.c │ │ │ ├── file_intern.h │ │ │ ├── file_ops.c │ │ │ ├── file_panels.c │ │ │ ├── file_utils.c │ │ │ ├── filelist.c │ │ │ ├── filelist.h │ │ │ ├── filesel.c │ │ │ ├── fsmenu.c │ │ │ ├── fsmenu.h │ │ │ └── space_file.c │ │ ├── space_graph │ │ │ ├── CMakeLists.txt │ │ │ ├── graph_buttons.c │ │ │ ├── graph_draw.c │ │ │ ├── graph_edit.c │ │ │ ├── graph_intern.h │ │ │ ├── graph_ops.c │ │ │ ├── graph_select.c │ │ │ ├── graph_utils.c │ │ │ └── space_graph.c │ │ ├── space_image │ │ │ ├── CMakeLists.txt │ │ │ ├── image_buttons.c │ │ │ ├── image_draw.c │ │ │ ├── image_edit.c │ │ │ ├── image_intern.h │ │ │ ├── image_ops.c │ │ │ └── space_image.c │ │ ├── space_info │ │ │ ├── CMakeLists.txt │ │ │ ├── info_draw.c │ │ │ ├── info_intern.h │ │ │ ├── info_ops.c │ │ │ ├── info_report.c │ │ │ ├── info_stats.c │ │ │ ├── space_info.c │ │ │ ├── textview.c │ │ │ └── textview.h │ │ ├── space_logic │ │ │ ├── CMakeLists.txt │ │ │ ├── logic_buttons.c │ │ │ ├── logic_intern.h │ │ │ ├── logic_ops.c │ │ │ ├── logic_window.c │ │ │ └── space_logic.c │ │ ├── space_nla │ │ │ ├── CMakeLists.txt │ │ │ ├── nla_buttons.c │ │ │ ├── nla_channels.c │ │ │ ├── nla_draw.c │ │ │ ├── nla_edit.c │ │ │ ├── nla_intern.h │ │ │ ├── nla_ops.c │ │ │ ├── nla_select.c │ │ │ └── space_nla.c │ │ ├── space_node │ │ │ ├── CMakeLists.txt │ │ │ ├── drawnode.c │ │ │ ├── node_add.c │ │ │ ├── node_buttons.c │ │ │ ├── node_draw.c │ │ │ ├── node_edit.c │ │ │ ├── node_group.c │ │ │ ├── node_intern.h │ │ │ ├── node_ops.c │ │ │ ├── node_relationships.c │ │ │ ├── node_select.c │ │ │ ├── node_templates.c │ │ │ ├── node_toolbar.c │ │ │ ├── node_view.c │ │ │ └── space_node.c │ │ ├── space_outliner │ │ │ ├── CMakeLists.txt │ │ │ ├── outliner_draw.c │ │ │ ├── outliner_edit.c │ │ │ ├── outliner_intern.h │ │ │ ├── outliner_ops.c │ │ │ ├── outliner_select.c │ │ │ ├── outliner_tools.c │ │ │ ├── outliner_tree.c │ │ │ └── space_outliner.c │ │ ├── space_script │ │ │ ├── CMakeLists.txt │ │ │ ├── script_edit.c │ │ │ ├── script_intern.h │ │ │ ├── script_ops.c │ │ │ └── space_script.c │ │ ├── space_sequencer │ │ │ ├── CMakeLists.txt │ │ │ ├── sequencer_add.c │ │ │ ├── sequencer_buttons.c │ │ │ ├── sequencer_draw.c │ │ │ ├── sequencer_edit.c │ │ │ ├── sequencer_intern.h │ │ │ ├── sequencer_modifier.c │ │ │ ├── sequencer_ops.c │ │ │ ├── sequencer_preview.c │ │ │ ├── sequencer_scopes.c │ │ │ ├── sequencer_select.c │ │ │ ├── sequencer_view.c │ │ │ └── space_sequencer.c │ │ ├── space_text │ │ │ ├── CMakeLists.txt │ │ │ ├── space_text.c │ │ │ ├── text_autocomplete.c │ │ │ ├── text_draw.c │ │ │ ├── text_format.c │ │ │ ├── text_format.h │ │ │ ├── text_format_lua.c │ │ │ ├── text_format_osl.c │ │ │ ├── text_format_py.c │ │ │ ├── text_header.c │ │ │ ├── text_intern.h │ │ │ └── text_ops.c │ │ ├── space_time │ │ │ ├── CMakeLists.txt │ │ │ ├── space_time.c │ │ │ ├── time_intern.h │ │ │ └── time_ops.c │ │ ├── space_userpref │ │ │ ├── CMakeLists.txt │ │ │ ├── space_userpref.c │ │ │ ├── userpref_intern.h │ │ │ └── userpref_ops.c │ │ ├── space_view3d │ │ │ ├── CMakeLists.txt │ │ │ ├── drawanimviz.c │ │ │ ├── drawarmature.c │ │ │ ├── drawmesh.c │ │ │ ├── drawobject.c │ │ │ ├── drawsimdebug.c │ │ │ ├── drawvolume.c │ │ │ ├── space_view3d.c │ │ │ ├── view3d_buttons.c │ │ │ ├── view3d_camera_control.c │ │ │ ├── view3d_draw.c │ │ │ ├── view3d_edit.c │ │ │ ├── view3d_fly.c │ │ │ ├── view3d_header.c │ │ │ ├── view3d_intern.h │ │ │ ├── view3d_iterators.c │ │ │ ├── view3d_ops.c │ │ │ ├── view3d_project.c │ │ │ ├── view3d_ruler.c │ │ │ ├── view3d_select.c │ │ │ ├── view3d_snap.c │ │ │ ├── view3d_toolbar.c │ │ │ ├── view3d_view.c │ │ │ └── view3d_walk.c │ │ ├── transform │ │ │ ├── CMakeLists.txt │ │ │ ├── transform.c │ │ │ ├── transform.h │ │ │ ├── transform_constraints.c │ │ │ ├── transform_conversions.c │ │ │ ├── transform_generics.c │ │ │ ├── transform_input.c │ │ │ ├── transform_manipulator.c │ │ │ ├── transform_ops.c │ │ │ ├── transform_orientations.c │ │ │ ├── transform_snap.c │ │ │ └── transform_snap_object.c │ │ ├── util │ │ │ ├── CMakeLists.txt │ │ │ ├── ed_transverts.c │ │ │ ├── ed_util.c │ │ │ ├── editmode_undo.c │ │ │ ├── numinput.c │ │ │ ├── undo.c │ │ │ └── util_intern.h │ │ └── uvedit │ │ │ ├── CMakeLists.txt │ │ │ ├── uvedit_buttons.c │ │ │ ├── uvedit_draw.c │ │ │ ├── uvedit_intern.h │ │ │ ├── uvedit_ops.c │ │ │ ├── uvedit_parametrizer.c │ │ │ ├── uvedit_parametrizer.h │ │ │ ├── uvedit_smart_stitch.c │ │ │ └── uvedit_unwrap_ops.c │ ├── freestyle │ │ ├── CMakeLists.txt │ │ ├── FRS_freestyle.h │ │ └── intern │ │ │ ├── application │ │ │ ├── AppCanvas.cpp │ │ │ ├── AppCanvas.h │ │ │ ├── AppConfig.cpp │ │ │ ├── AppConfig.h │ │ │ ├── AppView.cpp │ │ │ ├── AppView.h │ │ │ ├── Controller.cpp │ │ │ └── Controller.h │ │ │ ├── blender_interface │ │ │ ├── BlenderFileLoader.cpp │ │ │ ├── BlenderFileLoader.h │ │ │ ├── BlenderStrokeRenderer.cpp │ │ │ ├── BlenderStrokeRenderer.h │ │ │ ├── BlenderStyleModule.h │ │ │ └── FRS_freestyle.cpp │ │ │ ├── geometry │ │ │ ├── BBox.h │ │ │ ├── Bezier.cpp │ │ │ ├── Bezier.h │ │ │ ├── FastGrid.cpp │ │ │ ├── FastGrid.h │ │ │ ├── FitCurve.cpp │ │ │ ├── FitCurve.h │ │ │ ├── Geom.h │ │ │ ├── GeomCleaner.cpp │ │ │ ├── GeomCleaner.h │ │ │ ├── GeomUtils.cpp │ │ │ ├── GeomUtils.h │ │ │ ├── Grid.cpp │ │ │ ├── Grid.h │ │ │ ├── GridHelpers.cpp │ │ │ ├── GridHelpers.h │ │ │ ├── HashGrid.cpp │ │ │ ├── HashGrid.h │ │ │ ├── Noise.cpp │ │ │ ├── Noise.h │ │ │ ├── Polygon.h │ │ │ ├── SweepLine.h │ │ │ ├── VecMat.h │ │ │ ├── matrix_util.cpp │ │ │ ├── matrix_util.h │ │ │ ├── normal_cycle.cpp │ │ │ └── normal_cycle.h │ │ │ ├── image │ │ │ ├── GaussianFilter.cpp │ │ │ ├── GaussianFilter.h │ │ │ ├── Image.h │ │ │ ├── ImagePyramid.cpp │ │ │ └── ImagePyramid.h │ │ │ ├── python │ │ │ ├── BPy_BBox.cpp │ │ │ ├── BPy_BBox.h │ │ │ ├── BPy_BinaryPredicate0D.cpp │ │ │ ├── BPy_BinaryPredicate0D.h │ │ │ ├── BPy_BinaryPredicate1D.cpp │ │ │ ├── BPy_BinaryPredicate1D.h │ │ │ ├── BPy_ContextFunctions.cpp │ │ │ ├── BPy_ContextFunctions.h │ │ │ ├── BPy_Convert.cpp │ │ │ ├── BPy_Convert.h │ │ │ ├── BPy_Freestyle.cpp │ │ │ ├── BPy_Freestyle.h │ │ │ ├── BPy_FrsMaterial.cpp │ │ │ ├── BPy_FrsMaterial.h │ │ │ ├── BPy_FrsNoise.cpp │ │ │ ├── BPy_FrsNoise.h │ │ │ ├── BPy_Id.cpp │ │ │ ├── BPy_Id.h │ │ │ ├── BPy_IntegrationType.cpp │ │ │ ├── BPy_IntegrationType.h │ │ │ ├── BPy_Interface0D.cpp │ │ │ ├── BPy_Interface0D.h │ │ │ ├── BPy_Interface1D.cpp │ │ │ ├── BPy_Interface1D.h │ │ │ ├── BPy_Iterator.cpp │ │ │ ├── BPy_Iterator.h │ │ │ ├── BPy_MediumType.cpp │ │ │ ├── BPy_MediumType.h │ │ │ ├── BPy_Nature.cpp │ │ │ ├── BPy_Nature.h │ │ │ ├── BPy_Operators.cpp │ │ │ ├── BPy_Operators.h │ │ │ ├── BPy_SShape.cpp │ │ │ ├── BPy_SShape.h │ │ │ ├── BPy_StrokeAttribute.cpp │ │ │ ├── BPy_StrokeAttribute.h │ │ │ ├── BPy_StrokeShader.cpp │ │ │ ├── BPy_StrokeShader.h │ │ │ ├── BPy_UnaryFunction0D.cpp │ │ │ ├── BPy_UnaryFunction0D.h │ │ │ ├── BPy_UnaryFunction1D.cpp │ │ │ ├── BPy_UnaryFunction1D.h │ │ │ ├── BPy_UnaryPredicate0D.cpp │ │ │ ├── BPy_UnaryPredicate0D.h │ │ │ ├── BPy_UnaryPredicate1D.cpp │ │ │ ├── BPy_UnaryPredicate1D.h │ │ │ ├── BPy_ViewMap.cpp │ │ │ ├── BPy_ViewMap.h │ │ │ ├── BPy_ViewShape.cpp │ │ │ ├── BPy_ViewShape.h │ │ │ ├── BinaryPredicate1D │ │ │ │ ├── BPy_FalseBP1D.cpp │ │ │ │ ├── BPy_FalseBP1D.h │ │ │ │ ├── BPy_Length2DBP1D.cpp │ │ │ │ ├── BPy_Length2DBP1D.h │ │ │ │ ├── BPy_SameShapeIdBP1D.cpp │ │ │ │ ├── BPy_SameShapeIdBP1D.h │ │ │ │ ├── BPy_TrueBP1D.cpp │ │ │ │ ├── BPy_TrueBP1D.h │ │ │ │ ├── BPy_ViewMapGradientNormBP1D.cpp │ │ │ │ └── BPy_ViewMapGradientNormBP1D.h │ │ │ ├── Director.cpp │ │ │ ├── Director.h │ │ │ ├── Interface0D │ │ │ │ ├── BPy_CurvePoint.cpp │ │ │ │ ├── BPy_CurvePoint.h │ │ │ │ ├── BPy_SVertex.cpp │ │ │ │ ├── BPy_SVertex.h │ │ │ │ ├── BPy_ViewVertex.cpp │ │ │ │ ├── BPy_ViewVertex.h │ │ │ │ ├── CurvePoint │ │ │ │ │ ├── BPy_StrokeVertex.cpp │ │ │ │ │ └── BPy_StrokeVertex.h │ │ │ │ └── ViewVertex │ │ │ │ │ ├── BPy_NonTVertex.cpp │ │ │ │ │ ├── BPy_NonTVertex.h │ │ │ │ │ ├── BPy_TVertex.cpp │ │ │ │ │ └── BPy_TVertex.h │ │ │ ├── Interface1D │ │ │ │ ├── BPy_FEdge.cpp │ │ │ │ ├── BPy_FEdge.h │ │ │ │ ├── BPy_FrsCurve.cpp │ │ │ │ ├── BPy_FrsCurve.h │ │ │ │ ├── BPy_Stroke.cpp │ │ │ │ ├── BPy_Stroke.h │ │ │ │ ├── BPy_ViewEdge.cpp │ │ │ │ ├── BPy_ViewEdge.h │ │ │ │ ├── Curve │ │ │ │ │ ├── BPy_Chain.cpp │ │ │ │ │ └── BPy_Chain.h │ │ │ │ └── FEdge │ │ │ │ │ ├── BPy_FEdgeSharp.cpp │ │ │ │ │ ├── BPy_FEdgeSharp.h │ │ │ │ │ ├── BPy_FEdgeSmooth.cpp │ │ │ │ │ └── BPy_FEdgeSmooth.h │ │ │ ├── Iterator │ │ │ │ ├── BPy_AdjacencyIterator.cpp │ │ │ │ ├── BPy_AdjacencyIterator.h │ │ │ │ ├── BPy_ChainPredicateIterator.cpp │ │ │ │ ├── BPy_ChainPredicateIterator.h │ │ │ │ ├── BPy_ChainSilhouetteIterator.cpp │ │ │ │ ├── BPy_ChainSilhouetteIterator.h │ │ │ │ ├── BPy_ChainingIterator.cpp │ │ │ │ ├── BPy_ChainingIterator.h │ │ │ │ ├── BPy_CurvePointIterator.cpp │ │ │ │ ├── BPy_CurvePointIterator.h │ │ │ │ ├── BPy_Interface0DIterator.cpp │ │ │ │ ├── BPy_Interface0DIterator.h │ │ │ │ ├── BPy_SVertexIterator.cpp │ │ │ │ ├── BPy_SVertexIterator.h │ │ │ │ ├── BPy_StrokeVertexIterator.cpp │ │ │ │ ├── BPy_StrokeVertexIterator.h │ │ │ │ ├── BPy_ViewEdgeIterator.cpp │ │ │ │ ├── BPy_ViewEdgeIterator.h │ │ │ │ ├── BPy_orientedViewEdgeIterator.cpp │ │ │ │ └── BPy_orientedViewEdgeIterator.h │ │ │ ├── StrokeShader │ │ │ │ ├── BPy_BackboneStretcherShader.cpp │ │ │ │ ├── BPy_BackboneStretcherShader.h │ │ │ │ ├── BPy_BezierCurveShader.cpp │ │ │ │ ├── BPy_BezierCurveShader.h │ │ │ │ ├── BPy_BlenderTextureShader.cpp │ │ │ │ ├── BPy_BlenderTextureShader.h │ │ │ │ ├── BPy_CalligraphicShader.cpp │ │ │ │ ├── BPy_CalligraphicShader.h │ │ │ │ ├── BPy_ColorNoiseShader.cpp │ │ │ │ ├── BPy_ColorNoiseShader.h │ │ │ │ ├── BPy_ConstantColorShader.cpp │ │ │ │ ├── BPy_ConstantColorShader.h │ │ │ │ ├── BPy_ConstantThicknessShader.cpp │ │ │ │ ├── BPy_ConstantThicknessShader.h │ │ │ │ ├── BPy_ConstrainedIncreasingThicknessShader.cpp │ │ │ │ ├── BPy_ConstrainedIncreasingThicknessShader.h │ │ │ │ ├── BPy_GuidingLinesShader.cpp │ │ │ │ ├── BPy_GuidingLinesShader.h │ │ │ │ ├── BPy_IncreasingColorShader.cpp │ │ │ │ ├── BPy_IncreasingColorShader.h │ │ │ │ ├── BPy_IncreasingThicknessShader.cpp │ │ │ │ ├── BPy_IncreasingThicknessShader.h │ │ │ │ ├── BPy_PolygonalizationShader.cpp │ │ │ │ ├── BPy_PolygonalizationShader.h │ │ │ │ ├── BPy_SamplingShader.cpp │ │ │ │ ├── BPy_SamplingShader.h │ │ │ │ ├── BPy_SmoothingShader.cpp │ │ │ │ ├── BPy_SmoothingShader.h │ │ │ │ ├── BPy_SpatialNoiseShader.cpp │ │ │ │ ├── BPy_SpatialNoiseShader.h │ │ │ │ ├── BPy_StrokeTextureStepShader.cpp │ │ │ │ ├── BPy_StrokeTextureStepShader.h │ │ │ │ ├── BPy_ThicknessNoiseShader.cpp │ │ │ │ ├── BPy_ThicknessNoiseShader.h │ │ │ │ ├── BPy_TipRemoverShader.cpp │ │ │ │ └── BPy_TipRemoverShader.h │ │ │ ├── UnaryFunction0D │ │ │ │ ├── BPy_UnaryFunction0DDouble.cpp │ │ │ │ ├── BPy_UnaryFunction0DDouble.h │ │ │ │ ├── BPy_UnaryFunction0DEdgeNature.cpp │ │ │ │ ├── BPy_UnaryFunction0DEdgeNature.h │ │ │ │ ├── BPy_UnaryFunction0DFloat.cpp │ │ │ │ ├── BPy_UnaryFunction0DFloat.h │ │ │ │ ├── BPy_UnaryFunction0DId.cpp │ │ │ │ ├── BPy_UnaryFunction0DId.h │ │ │ │ ├── BPy_UnaryFunction0DMaterial.cpp │ │ │ │ ├── BPy_UnaryFunction0DMaterial.h │ │ │ │ ├── BPy_UnaryFunction0DUnsigned.cpp │ │ │ │ ├── BPy_UnaryFunction0DUnsigned.h │ │ │ │ ├── BPy_UnaryFunction0DVec2f.cpp │ │ │ │ ├── BPy_UnaryFunction0DVec2f.h │ │ │ │ ├── BPy_UnaryFunction0DVec3f.cpp │ │ │ │ ├── BPy_UnaryFunction0DVec3f.h │ │ │ │ ├── BPy_UnaryFunction0DVectorViewShape.cpp │ │ │ │ ├── BPy_UnaryFunction0DVectorViewShape.h │ │ │ │ ├── BPy_UnaryFunction0DViewShape.cpp │ │ │ │ ├── BPy_UnaryFunction0DViewShape.h │ │ │ │ ├── UnaryFunction0D_Id │ │ │ │ │ ├── BPy_ShapeIdF0D.cpp │ │ │ │ │ └── BPy_ShapeIdF0D.h │ │ │ │ ├── UnaryFunction0D_Material │ │ │ │ │ ├── BPy_MaterialF0D.cpp │ │ │ │ │ └── BPy_MaterialF0D.h │ │ │ │ ├── UnaryFunction0D_Nature_EdgeNature │ │ │ │ │ ├── BPy_CurveNatureF0D.cpp │ │ │ │ │ └── BPy_CurveNatureF0D.h │ │ │ │ ├── UnaryFunction0D_Vec2f │ │ │ │ │ ├── BPy_Normal2DF0D.cpp │ │ │ │ │ ├── BPy_Normal2DF0D.h │ │ │ │ │ ├── BPy_VertexOrientation2DF0D.cpp │ │ │ │ │ └── BPy_VertexOrientation2DF0D.h │ │ │ │ ├── UnaryFunction0D_Vec3f │ │ │ │ │ ├── BPy_VertexOrientation3DF0D.cpp │ │ │ │ │ └── BPy_VertexOrientation3DF0D.h │ │ │ │ ├── UnaryFunction0D_ViewShape │ │ │ │ │ ├── BPy_GetOccludeeF0D.cpp │ │ │ │ │ ├── BPy_GetOccludeeF0D.h │ │ │ │ │ ├── BPy_GetShapeF0D.cpp │ │ │ │ │ └── BPy_GetShapeF0D.h │ │ │ │ ├── UnaryFunction0D_double │ │ │ │ │ ├── BPy_Curvature2DAngleF0D.cpp │ │ │ │ │ ├── BPy_Curvature2DAngleF0D.h │ │ │ │ │ ├── BPy_DensityF0D.cpp │ │ │ │ │ ├── BPy_DensityF0D.h │ │ │ │ │ ├── BPy_GetProjectedXF0D.cpp │ │ │ │ │ ├── BPy_GetProjectedXF0D.h │ │ │ │ │ ├── BPy_GetProjectedYF0D.cpp │ │ │ │ │ ├── BPy_GetProjectedYF0D.h │ │ │ │ │ ├── BPy_GetProjectedZF0D.cpp │ │ │ │ │ ├── BPy_GetProjectedZF0D.h │ │ │ │ │ ├── BPy_GetXF0D.cpp │ │ │ │ │ ├── BPy_GetXF0D.h │ │ │ │ │ ├── BPy_GetYF0D.cpp │ │ │ │ │ ├── BPy_GetYF0D.h │ │ │ │ │ ├── BPy_GetZF0D.cpp │ │ │ │ │ ├── BPy_GetZF0D.h │ │ │ │ │ ├── BPy_LocalAverageDepthF0D.cpp │ │ │ │ │ ├── BPy_LocalAverageDepthF0D.h │ │ │ │ │ ├── BPy_ZDiscontinuityF0D.cpp │ │ │ │ │ └── BPy_ZDiscontinuityF0D.h │ │ │ │ ├── UnaryFunction0D_float │ │ │ │ │ ├── BPy_GetCurvilinearAbscissaF0D.cpp │ │ │ │ │ ├── BPy_GetCurvilinearAbscissaF0D.h │ │ │ │ │ ├── BPy_GetParameterF0D.cpp │ │ │ │ │ ├── BPy_GetParameterF0D.h │ │ │ │ │ ├── BPy_GetViewMapGradientNormF0D.cpp │ │ │ │ │ ├── BPy_GetViewMapGradientNormF0D.h │ │ │ │ │ ├── BPy_ReadCompleteViewMapPixelF0D.cpp │ │ │ │ │ ├── BPy_ReadCompleteViewMapPixelF0D.h │ │ │ │ │ ├── BPy_ReadMapPixelF0D.cpp │ │ │ │ │ ├── BPy_ReadMapPixelF0D.h │ │ │ │ │ ├── BPy_ReadSteerableViewMapPixelF0D.cpp │ │ │ │ │ └── BPy_ReadSteerableViewMapPixelF0D.h │ │ │ │ ├── UnaryFunction0D_unsigned_int │ │ │ │ │ ├── BPy_QuantitativeInvisibilityF0D.cpp │ │ │ │ │ └── BPy_QuantitativeInvisibilityF0D.h │ │ │ │ └── UnaryFunction0D_vector_ViewShape │ │ │ │ │ ├── BPy_GetOccludersF0D.cpp │ │ │ │ │ └── BPy_GetOccludersF0D.h │ │ │ ├── UnaryFunction1D │ │ │ │ ├── BPy_UnaryFunction1DDouble.cpp │ │ │ │ ├── BPy_UnaryFunction1DDouble.h │ │ │ │ ├── BPy_UnaryFunction1DEdgeNature.cpp │ │ │ │ ├── BPy_UnaryFunction1DEdgeNature.h │ │ │ │ ├── BPy_UnaryFunction1DFloat.cpp │ │ │ │ ├── BPy_UnaryFunction1DFloat.h │ │ │ │ ├── BPy_UnaryFunction1DUnsigned.cpp │ │ │ │ ├── BPy_UnaryFunction1DUnsigned.h │ │ │ │ ├── BPy_UnaryFunction1DVec2f.cpp │ │ │ │ ├── BPy_UnaryFunction1DVec2f.h │ │ │ │ ├── BPy_UnaryFunction1DVec3f.cpp │ │ │ │ ├── BPy_UnaryFunction1DVec3f.h │ │ │ │ ├── BPy_UnaryFunction1DVectorViewShape.cpp │ │ │ │ ├── BPy_UnaryFunction1DVectorViewShape.h │ │ │ │ ├── BPy_UnaryFunction1DVoid.cpp │ │ │ │ ├── BPy_UnaryFunction1DVoid.h │ │ │ │ ├── UnaryFunction1D_Nature_EdgeNature │ │ │ │ │ ├── BPy_CurveNatureF1D.cpp │ │ │ │ │ └── BPy_CurveNatureF1D.h │ │ │ │ ├── UnaryFunction1D_Vec2f │ │ │ │ │ ├── BPy_Normal2DF1D.cpp │ │ │ │ │ ├── BPy_Normal2DF1D.h │ │ │ │ │ ├── BPy_Orientation2DF1D.cpp │ │ │ │ │ └── BPy_Orientation2DF1D.h │ │ │ │ ├── UnaryFunction1D_Vec3f │ │ │ │ │ ├── BPy_Orientation3DF1D.cpp │ │ │ │ │ └── BPy_Orientation3DF1D.h │ │ │ │ ├── UnaryFunction1D_double │ │ │ │ │ ├── BPy_Curvature2DAngleF1D.cpp │ │ │ │ │ ├── BPy_Curvature2DAngleF1D.h │ │ │ │ │ ├── BPy_DensityF1D.cpp │ │ │ │ │ ├── BPy_DensityF1D.h │ │ │ │ │ ├── BPy_GetCompleteViewMapDensityF1D.cpp │ │ │ │ │ ├── BPy_GetCompleteViewMapDensityF1D.h │ │ │ │ │ ├── BPy_GetDirectionalViewMapDensityF1D.cpp │ │ │ │ │ ├── BPy_GetDirectionalViewMapDensityF1D.h │ │ │ │ │ ├── BPy_GetProjectedXF1D.cpp │ │ │ │ │ ├── BPy_GetProjectedXF1D.h │ │ │ │ │ ├── BPy_GetProjectedYF1D.cpp │ │ │ │ │ ├── BPy_GetProjectedYF1D.h │ │ │ │ │ ├── BPy_GetProjectedZF1D.cpp │ │ │ │ │ ├── BPy_GetProjectedZF1D.h │ │ │ │ │ ├── BPy_GetSteerableViewMapDensityF1D.cpp │ │ │ │ │ ├── BPy_GetSteerableViewMapDensityF1D.h │ │ │ │ │ ├── BPy_GetViewMapGradientNormF1D.cpp │ │ │ │ │ ├── BPy_GetViewMapGradientNormF1D.h │ │ │ │ │ ├── BPy_GetXF1D.cpp │ │ │ │ │ ├── BPy_GetXF1D.h │ │ │ │ │ ├── BPy_GetYF1D.cpp │ │ │ │ │ ├── BPy_GetYF1D.h │ │ │ │ │ ├── BPy_GetZF1D.cpp │ │ │ │ │ ├── BPy_GetZF1D.h │ │ │ │ │ ├── BPy_LocalAverageDepthF1D.cpp │ │ │ │ │ ├── BPy_LocalAverageDepthF1D.h │ │ │ │ │ ├── BPy_ZDiscontinuityF1D.cpp │ │ │ │ │ └── BPy_ZDiscontinuityF1D.h │ │ │ │ ├── UnaryFunction1D_unsigned_int │ │ │ │ │ ├── BPy_QuantitativeInvisibilityF1D.cpp │ │ │ │ │ └── BPy_QuantitativeInvisibilityF1D.h │ │ │ │ ├── UnaryFunction1D_vector_ViewShape │ │ │ │ │ ├── BPy_GetOccludeeF1D.cpp │ │ │ │ │ ├── BPy_GetOccludeeF1D.h │ │ │ │ │ ├── BPy_GetOccludersF1D.cpp │ │ │ │ │ ├── BPy_GetOccludersF1D.h │ │ │ │ │ ├── BPy_GetShapeF1D.cpp │ │ │ │ │ └── BPy_GetShapeF1D.h │ │ │ │ └── UnaryFunction1D_void │ │ │ │ │ ├── BPy_ChainingTimeStampF1D.cpp │ │ │ │ │ ├── BPy_ChainingTimeStampF1D.h │ │ │ │ │ ├── BPy_IncrementChainingTimeStampF1D.cpp │ │ │ │ │ ├── BPy_IncrementChainingTimeStampF1D.h │ │ │ │ │ ├── BPy_TimeStampF1D.cpp │ │ │ │ │ └── BPy_TimeStampF1D.h │ │ │ ├── UnaryPredicate0D │ │ │ │ ├── BPy_FalseUP0D.cpp │ │ │ │ ├── BPy_FalseUP0D.h │ │ │ │ ├── BPy_TrueUP0D.cpp │ │ │ │ └── BPy_TrueUP0D.h │ │ │ └── UnaryPredicate1D │ │ │ │ ├── BPy_ContourUP1D.cpp │ │ │ │ ├── BPy_ContourUP1D.h │ │ │ │ ├── BPy_DensityLowerThanUP1D.cpp │ │ │ │ ├── BPy_DensityLowerThanUP1D.h │ │ │ │ ├── BPy_EqualToChainingTimeStampUP1D.cpp │ │ │ │ ├── BPy_EqualToChainingTimeStampUP1D.h │ │ │ │ ├── BPy_EqualToTimeStampUP1D.cpp │ │ │ │ ├── BPy_EqualToTimeStampUP1D.h │ │ │ │ ├── BPy_ExternalContourUP1D.cpp │ │ │ │ ├── BPy_ExternalContourUP1D.h │ │ │ │ ├── BPy_FalseUP1D.cpp │ │ │ │ ├── BPy_FalseUP1D.h │ │ │ │ ├── BPy_QuantitativeInvisibilityUP1D.cpp │ │ │ │ ├── BPy_QuantitativeInvisibilityUP1D.h │ │ │ │ ├── BPy_ShapeUP1D.cpp │ │ │ │ ├── BPy_ShapeUP1D.h │ │ │ │ ├── BPy_TrueUP1D.cpp │ │ │ │ ├── BPy_TrueUP1D.h │ │ │ │ ├── BPy_WithinImageBoundaryUP1D.cpp │ │ │ │ └── BPy_WithinImageBoundaryUP1D.h │ │ │ ├── scene_graph │ │ │ ├── DrawingStyle.h │ │ │ ├── FrsMaterial.h │ │ │ ├── IndexedFaceSet.cpp │ │ │ ├── IndexedFaceSet.h │ │ │ ├── LineRep.cpp │ │ │ ├── LineRep.h │ │ │ ├── Node.h │ │ │ ├── NodeCamera.cpp │ │ │ ├── NodeCamera.h │ │ │ ├── NodeDrawingStyle.cpp │ │ │ ├── NodeDrawingStyle.h │ │ │ ├── NodeGroup.cpp │ │ │ ├── NodeGroup.h │ │ │ ├── NodeLight.cpp │ │ │ ├── NodeLight.h │ │ │ ├── NodeSceneRenderLayer.cpp │ │ │ ├── NodeSceneRenderLayer.h │ │ │ ├── NodeShape.cpp │ │ │ ├── NodeShape.h │ │ │ ├── NodeTransform.cpp │ │ │ ├── NodeTransform.h │ │ │ ├── OrientedLineRep.cpp │ │ │ ├── OrientedLineRep.h │ │ │ ├── Rep.cpp │ │ │ ├── Rep.h │ │ │ ├── SceneHash.cpp │ │ │ ├── SceneHash.h │ │ │ ├── ScenePrettyPrinter.cpp │ │ │ ├── ScenePrettyPrinter.h │ │ │ ├── SceneVisitor.cpp │ │ │ ├── SceneVisitor.h │ │ │ ├── TriangleRep.cpp │ │ │ ├── TriangleRep.h │ │ │ ├── VertexRep.cpp │ │ │ └── VertexRep.h │ │ │ ├── stroke │ │ │ ├── AdvancedFunctions0D.cpp │ │ │ ├── AdvancedFunctions0D.h │ │ │ ├── AdvancedFunctions1D.cpp │ │ │ ├── AdvancedFunctions1D.h │ │ │ ├── AdvancedPredicates1D.h │ │ │ ├── AdvancedStrokeShaders.cpp │ │ │ ├── AdvancedStrokeShaders.h │ │ │ ├── BasicStrokeShaders.cpp │ │ │ ├── BasicStrokeShaders.h │ │ │ ├── Canvas.cpp │ │ │ ├── Canvas.h │ │ │ ├── Chain.cpp │ │ │ ├── Chain.h │ │ │ ├── ChainingIterators.cpp │ │ │ ├── ChainingIterators.h │ │ │ ├── ContextFunctions.cpp │ │ │ ├── ContextFunctions.h │ │ │ ├── Curve.cpp │ │ │ ├── Curve.h │ │ │ ├── CurveAdvancedIterators.h │ │ │ ├── CurveIterators.h │ │ │ ├── Modifiers.h │ │ │ ├── Module.h │ │ │ ├── Operators.cpp │ │ │ ├── Operators.h │ │ │ ├── PSStrokeRenderer.cpp │ │ │ ├── PSStrokeRenderer.h │ │ │ ├── Predicates0D.cpp │ │ │ ├── Predicates0D.h │ │ │ ├── Predicates1D.cpp │ │ │ ├── Predicates1D.h │ │ │ ├── QInformationMap.h │ │ │ ├── Stroke.cpp │ │ │ ├── Stroke.h │ │ │ ├── StrokeAdvancedIterators.h │ │ │ ├── StrokeIO.cpp │ │ │ ├── StrokeIO.h │ │ │ ├── StrokeIterators.h │ │ │ ├── StrokeLayer.cpp │ │ │ ├── StrokeLayer.h │ │ │ ├── StrokeRenderer.cpp │ │ │ ├── StrokeRenderer.h │ │ │ ├── StrokeRep.cpp │ │ │ ├── StrokeRep.h │ │ │ ├── StrokeShader.cpp │ │ │ ├── StrokeShader.h │ │ │ ├── StrokeTesselator.cpp │ │ │ ├── StrokeTesselator.h │ │ │ ├── StyleModule.h │ │ │ ├── TextStrokeRenderer.cpp │ │ │ └── TextStrokeRenderer.h │ │ │ ├── system │ │ │ ├── BaseIterator.h │ │ │ ├── BaseObject.cpp │ │ │ ├── BaseObject.h │ │ │ ├── Cast.h │ │ │ ├── Exception.cpp │ │ │ ├── Exception.h │ │ │ ├── FreestyleConfig.h │ │ │ ├── Id.h │ │ │ ├── Interpreter.h │ │ │ ├── Iterator.cpp │ │ │ ├── Iterator.h │ │ │ ├── PointerSequence.h │ │ │ ├── Precision.h │ │ │ ├── ProgressBar.h │ │ │ ├── PseudoNoise.cpp │ │ │ ├── PseudoNoise.h │ │ │ ├── PythonInterpreter.cpp │ │ │ ├── PythonInterpreter.h │ │ │ ├── RandGen.cpp │ │ │ ├── RandGen.h │ │ │ ├── RenderMonitor.h │ │ │ ├── StringUtils.cpp │ │ │ ├── StringUtils.h │ │ │ ├── TimeStamp.cpp │ │ │ ├── TimeStamp.h │ │ │ └── TimeUtils.h │ │ │ ├── view_map │ │ │ ├── ArbitraryGridDensityProvider.cpp │ │ │ ├── ArbitraryGridDensityProvider.h │ │ │ ├── AutoPtrHelper.h │ │ │ ├── AverageAreaGridDensityProvider.cpp │ │ │ ├── AverageAreaGridDensityProvider.h │ │ │ ├── BoxGrid.cpp │ │ │ ├── BoxGrid.h │ │ │ ├── CulledOccluderSource.cpp │ │ │ ├── CulledOccluderSource.h │ │ │ ├── FEdgeXDetector.cpp │ │ │ ├── FEdgeXDetector.h │ │ │ ├── Functions0D.cpp │ │ │ ├── Functions0D.h │ │ │ ├── Functions1D.cpp │ │ │ ├── Functions1D.h │ │ │ ├── GridDensityProvider.h │ │ │ ├── HeuristicGridDensityProviderFactory.cpp │ │ │ ├── HeuristicGridDensityProviderFactory.h │ │ │ ├── Interface0D.cpp │ │ │ ├── Interface0D.h │ │ │ ├── Interface1D.cpp │ │ │ ├── Interface1D.h │ │ │ ├── OccluderSource.cpp │ │ │ ├── OccluderSource.h │ │ │ ├── Pow23GridDensityProvider.cpp │ │ │ ├── Pow23GridDensityProvider.h │ │ │ ├── Silhouette.cpp │ │ │ ├── Silhouette.h │ │ │ ├── SilhouetteGeomEngine.cpp │ │ │ ├── SilhouetteGeomEngine.h │ │ │ ├── SphericalGrid.cpp │ │ │ ├── SphericalGrid.h │ │ │ ├── SteerableViewMap.cpp │ │ │ ├── SteerableViewMap.h │ │ │ ├── ViewEdgeXBuilder.cpp │ │ │ ├── ViewEdgeXBuilder.h │ │ │ ├── ViewMap.cpp │ │ │ ├── ViewMap.h │ │ │ ├── ViewMapAdvancedIterators.h │ │ │ ├── ViewMapBuilder.cpp │ │ │ ├── ViewMapBuilder.h │ │ │ ├── ViewMapIO.cpp │ │ │ ├── ViewMapIO.h │ │ │ ├── ViewMapIterators.h │ │ │ ├── ViewMapTesselator.cpp │ │ │ └── ViewMapTesselator.h │ │ │ └── winged_edge │ │ │ ├── Curvature.cpp │ │ │ ├── Curvature.h │ │ │ ├── Nature.h │ │ │ ├── WEdge.cpp │ │ │ ├── WEdge.h │ │ │ ├── WFillGrid.cpp │ │ │ ├── WFillGrid.h │ │ │ ├── WSFillGrid.cpp │ │ │ ├── WSFillGrid.h │ │ │ ├── WXEdge.cpp │ │ │ ├── WXEdge.h │ │ │ ├── WXEdgeBuilder.cpp │ │ │ ├── WXEdgeBuilder.h │ │ │ ├── WingedEdgeBuilder.cpp │ │ │ └── WingedEdgeBuilder.h │ ├── gpu │ │ ├── CMakeLists.txt │ │ ├── GPU_basic_shader.h │ │ ├── GPU_buffers.h │ │ ├── GPU_compositing.h │ │ ├── GPU_debug.h │ │ ├── GPU_draw.h │ │ ├── GPU_extensions.h │ │ ├── GPU_framebuffer.h │ │ ├── GPU_glew.h │ │ ├── GPU_init_exit.h │ │ ├── GPU_material.h │ │ ├── GPU_select.h │ │ ├── GPU_shader.h │ │ ├── GPU_texture.h │ │ ├── intern │ │ │ ├── gpu_basic_shader.c │ │ │ ├── gpu_buffers.c │ │ │ ├── gpu_codegen.c │ │ │ ├── gpu_codegen.h │ │ │ ├── gpu_compositing.c │ │ │ ├── gpu_debug.c │ │ │ ├── gpu_draw.c │ │ │ ├── gpu_extensions.c │ │ │ ├── gpu_framebuffer.c │ │ │ ├── gpu_init_exit.c │ │ │ ├── gpu_material.c │ │ │ ├── gpu_private.h │ │ │ ├── gpu_select.c │ │ │ ├── gpu_select_pick.c │ │ │ ├── gpu_select_private.h │ │ │ ├── gpu_select_sample_query.c │ │ │ ├── gpu_shader.c │ │ │ └── gpu_texture.c │ │ └── shaders │ │ │ ├── gpu_shader_basic_frag.glsl │ │ │ ├── gpu_shader_basic_geom.glsl │ │ │ ├── gpu_shader_basic_vert.glsl │ │ │ ├── gpu_shader_fire_frag.glsl │ │ │ ├── gpu_shader_fx_depth_resolve.glsl │ │ │ ├── gpu_shader_fx_dof_frag.glsl │ │ │ ├── gpu_shader_fx_dof_hq_frag.glsl │ │ │ ├── gpu_shader_fx_dof_hq_geo.glsl │ │ │ ├── gpu_shader_fx_dof_hq_vert.glsl │ │ │ ├── gpu_shader_fx_dof_vert.glsl │ │ │ ├── gpu_shader_fx_lib.glsl │ │ │ ├── gpu_shader_fx_ssao_frag.glsl │ │ │ ├── gpu_shader_fx_vert.glsl │ │ │ ├── gpu_shader_geometry.glsl │ │ │ ├── gpu_shader_material.glsl │ │ │ ├── gpu_shader_sep_gaussian_blur_frag.glsl │ │ │ ├── gpu_shader_sep_gaussian_blur_vert.glsl │ │ │ ├── gpu_shader_smoke_frag.glsl │ │ │ ├── gpu_shader_smoke_vert.glsl │ │ │ ├── gpu_shader_vertex.glsl │ │ │ ├── gpu_shader_vertex_world.glsl │ │ │ ├── gpu_shader_vsm_store_frag.glsl │ │ │ └── gpu_shader_vsm_store_vert.glsl │ ├── ikplugin │ │ ├── BIK_api.h │ │ ├── CMakeLists.txt │ │ └── intern │ │ │ ├── ikplugin_api.c │ │ │ ├── ikplugin_api.h │ │ │ ├── iksolver_plugin.c │ │ │ ├── iksolver_plugin.h │ │ │ ├── itasc_plugin.cpp │ │ │ └── itasc_plugin.h │ ├── imbuf │ │ ├── CMakeLists.txt │ │ ├── IMB_colormanagement.h │ │ ├── IMB_imbuf.h │ │ ├── IMB_imbuf_types.h │ │ ├── IMB_moviecache.h │ │ ├── IMB_thumbs.h │ │ ├── intern │ │ │ ├── IMB_allocimbuf.h │ │ │ ├── IMB_anim.h │ │ │ ├── IMB_colormanagement_intern.h │ │ │ ├── IMB_filetype.h │ │ │ ├── IMB_filter.h │ │ │ ├── IMB_indexer.h │ │ │ ├── IMB_metadata.h │ │ │ ├── allocimbuf.c │ │ │ ├── anim_movie.c │ │ │ ├── bmp.c │ │ │ ├── cache.c │ │ │ ├── cineon │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README │ │ │ │ ├── cin_debug_stuff.h │ │ │ │ ├── cineon_dpx.c │ │ │ │ ├── cineonlib.c │ │ │ │ ├── cineonlib.h │ │ │ │ ├── dpxlib.c │ │ │ │ ├── dpxlib.h │ │ │ │ ├── logImageCore.c │ │ │ │ ├── logImageCore.h │ │ │ │ ├── logmemfile.c │ │ │ │ └── logmemfile.h │ │ │ ├── colormanagement.c │ │ │ ├── colormanagement_inline.c │ │ │ ├── dds │ │ │ │ ├── BlockDXT.cpp │ │ │ │ ├── BlockDXT.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Color.h │ │ │ │ ├── ColorBlock.cpp │ │ │ │ ├── ColorBlock.h │ │ │ │ ├── Common.h │ │ │ │ ├── DirectDrawSurface.cpp │ │ │ │ ├── DirectDrawSurface.h │ │ │ │ ├── FlipDXT.cpp │ │ │ │ ├── FlipDXT.h │ │ │ │ ├── Image.cpp │ │ │ │ ├── Image.h │ │ │ │ ├── PixelFormat.h │ │ │ │ ├── Stream.cpp │ │ │ │ ├── Stream.h │ │ │ │ ├── dds_api.cpp │ │ │ │ └── dds_api.h │ │ │ ├── divers.c │ │ │ ├── filetype.c │ │ │ ├── filter.c │ │ │ ├── imageprocess.c │ │ │ ├── imbuf.h │ │ │ ├── indexer.c │ │ │ ├── iris.c │ │ │ ├── jp2.c │ │ │ ├── jpeg.c │ │ │ ├── metadata.c │ │ │ ├── module.c │ │ │ ├── moviecache.c │ │ │ ├── oiio │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── openimageio_api.cpp │ │ │ │ └── openimageio_api.h │ │ │ ├── openexr │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── openexr_api.cpp │ │ │ │ ├── openexr_api.h │ │ │ │ ├── openexr_multi.h │ │ │ │ └── openexr_stub.cpp │ │ │ ├── png.c │ │ │ ├── radiance_hdr.c │ │ │ ├── readimage.c │ │ │ ├── rectop.c │ │ │ ├── rotate.c │ │ │ ├── scaling.c │ │ │ ├── stereoimbuf.c │ │ │ ├── targa.c │ │ │ ├── thumbs.c │ │ │ ├── thumbs_blend.c │ │ │ ├── thumbs_font.c │ │ │ ├── tiff.c │ │ │ ├── util.c │ │ │ └── writeimage.c │ │ └── readme.txt │ ├── makesdna │ │ ├── CMakeLists.txt │ │ ├── DNA_ID.h │ │ ├── DNA_action_types.h │ │ ├── DNA_actuator_types.h │ │ ├── DNA_anim_types.h │ │ ├── DNA_armature_types.h │ │ ├── DNA_boid_types.h │ │ ├── DNA_brush_types.h │ │ ├── DNA_cachefile_types.h │ │ ├── DNA_camera_types.h │ │ ├── DNA_cloth_types.h │ │ ├── DNA_color_types.h │ │ ├── DNA_constraint_types.h │ │ ├── DNA_controller_types.h │ │ ├── DNA_curve_types.h │ │ ├── DNA_customdata_types.h │ │ ├── DNA_defs.h │ │ ├── DNA_documentation.h │ │ ├── DNA_dynamicpaint_types.h │ │ ├── DNA_effect_types.h │ │ ├── DNA_fileglobal_types.h │ │ ├── DNA_freestyle_types.h │ │ ├── DNA_genfile.h │ │ ├── DNA_gpencil_types.h │ │ ├── DNA_gpu_types.h │ │ ├── DNA_group_types.h │ │ ├── DNA_image_types.h │ │ ├── DNA_ipo_types.h │ │ ├── DNA_key_types.h │ │ ├── DNA_lamp_types.h │ │ ├── DNA_lattice_types.h │ │ ├── DNA_linestyle_types.h │ │ ├── DNA_listBase.h │ │ ├── DNA_mask_types.h │ │ ├── DNA_material_types.h │ │ ├── DNA_mesh_types.h │ │ ├── DNA_meshdata_types.h │ │ ├── DNA_meta_types.h │ │ ├── DNA_modifier_types.h │ │ ├── DNA_movieclip_types.h │ │ ├── DNA_nla_types.h │ │ ├── DNA_node_types.h │ │ ├── DNA_object_fluidsim.h │ │ ├── DNA_object_force.h │ │ ├── DNA_object_types.h │ │ ├── DNA_outliner_types.h │ │ ├── DNA_packedFile_types.h │ │ ├── DNA_particle_types.h │ │ ├── DNA_property_types.h │ │ ├── DNA_rigidbody_types.h │ │ ├── DNA_scene_types.h │ │ ├── DNA_screen_types.h │ │ ├── DNA_sdna_types.h │ │ ├── DNA_sensor_types.h │ │ ├── DNA_sequence_types.h │ │ ├── DNA_smoke_types.h │ │ ├── DNA_sound_types.h │ │ ├── DNA_space_types.h │ │ ├── DNA_speaker_types.h │ │ ├── DNA_text_types.h │ │ ├── DNA_texture_types.h │ │ ├── DNA_tracking_types.h │ │ ├── DNA_userdef_types.h │ │ ├── DNA_vec_types.h │ │ ├── DNA_vfont_types.h │ │ ├── DNA_view2d_types.h │ │ ├── DNA_view3d_types.h │ │ ├── DNA_windowmanager_types.h │ │ ├── DNA_world_types.h │ │ └── intern │ │ │ ├── CMakeLists.txt │ │ │ ├── dna_genfile.c │ │ │ └── makesdna.c │ ├── makesrna │ │ ├── CMakeLists.txt │ │ ├── RNA_access.h │ │ ├── RNA_define.h │ │ ├── RNA_documentation.h │ │ ├── RNA_enum_types.h │ │ ├── RNA_types.h │ │ ├── intern │ │ │ ├── CMakeLists.txt │ │ │ ├── makesrna.c │ │ │ ├── rna_ID.c │ │ │ ├── rna_access.c │ │ │ ├── rna_action.c │ │ │ ├── rna_action_api.c │ │ │ ├── rna_actuator.c │ │ │ ├── rna_actuator_api.c │ │ │ ├── rna_animation.c │ │ │ ├── rna_animation_api.c │ │ │ ├── rna_animviz.c │ │ │ ├── rna_armature.c │ │ │ ├── rna_armature_api.c │ │ │ ├── rna_boid.c │ │ │ ├── rna_brush.c │ │ │ ├── rna_cachefile.c │ │ │ ├── rna_camera.c │ │ │ ├── rna_camera_api.c │ │ │ ├── rna_cloth.c │ │ │ ├── rna_color.c │ │ │ ├── rna_constraint.c │ │ │ ├── rna_context.c │ │ │ ├── rna_controller.c │ │ │ ├── rna_controller_api.c │ │ │ ├── rna_curve.c │ │ │ ├── rna_curve_api.c │ │ │ ├── rna_define.c │ │ │ ├── rna_depsgraph.c │ │ │ ├── rna_dynamicpaint.c │ │ │ ├── rna_fcurve.c │ │ │ ├── rna_fcurve_api.c │ │ │ ├── rna_fluidsim.c │ │ │ ├── rna_gpencil.c │ │ │ ├── rna_group.c │ │ │ ├── rna_image.c │ │ │ ├── rna_image_api.c │ │ │ ├── rna_internal.h │ │ │ ├── rna_internal_types.h │ │ │ ├── rna_key.c │ │ │ ├── rna_lamp.c │ │ │ ├── rna_lattice.c │ │ │ ├── rna_lattice_api.c │ │ │ ├── rna_linestyle.c │ │ │ ├── rna_main.c │ │ │ ├── rna_main_api.c │ │ │ ├── rna_mask.c │ │ │ ├── rna_material.c │ │ │ ├── rna_material_api.c │ │ │ ├── rna_mesh.c │ │ │ ├── rna_mesh_api.c │ │ │ ├── rna_mesh_utils.h │ │ │ ├── rna_meta.c │ │ │ ├── rna_meta_api.c │ │ │ ├── rna_modifier.c │ │ │ ├── rna_movieclip.c │ │ │ ├── rna_nla.c │ │ │ ├── rna_nodetree.c │ │ │ ├── rna_object.c │ │ │ ├── rna_object_api.c │ │ │ ├── rna_object_force.c │ │ │ ├── rna_packedfile.c │ │ │ ├── rna_palette.c │ │ │ ├── rna_particle.c │ │ │ ├── rna_pose.c │ │ │ ├── rna_pose_api.c │ │ │ ├── rna_property.c │ │ │ ├── rna_render.c │ │ │ ├── rna_rigidbody.c │ │ │ ├── rna_rna.c │ │ │ ├── rna_scene.c │ │ │ ├── rna_scene_api.c │ │ │ ├── rna_screen.c │ │ │ ├── rna_sculpt_paint.c │ │ │ ├── rna_sensor.c │ │ │ ├── rna_sensor_api.c │ │ │ ├── rna_sequencer.c │ │ │ ├── rna_sequencer_api.c │ │ │ ├── rna_smoke.c │ │ │ ├── rna_sound.c │ │ │ ├── rna_sound_api.c │ │ │ ├── rna_space.c │ │ │ ├── rna_space_api.c │ │ │ ├── rna_speaker.c │ │ │ ├── rna_test.c │ │ │ ├── rna_text.c │ │ │ ├── rna_text_api.c │ │ │ ├── rna_texture.c │ │ │ ├── rna_texture_api.c │ │ │ ├── rna_timeline.c │ │ │ ├── rna_tracking.c │ │ │ ├── rna_ui.c │ │ │ ├── rna_ui_api.c │ │ │ ├── rna_userdef.c │ │ │ ├── rna_vfont.c │ │ │ ├── rna_vfont_api.c │ │ │ ├── rna_wm.c │ │ │ ├── rna_wm_api.c │ │ │ └── rna_world.c │ │ └── rna_cleanup │ │ │ ├── rna_cleaner.py │ │ │ ├── rna_cleaner_merge.py │ │ │ ├── rna_properties.txt │ │ │ └── rna_update.sh │ ├── modifiers │ │ ├── CMakeLists.txt │ │ ├── MOD_modifiertypes.h │ │ └── intern │ │ │ ├── MOD_armature.c │ │ │ ├── MOD_array.c │ │ │ ├── MOD_bevel.c │ │ │ ├── MOD_boolean.c │ │ │ ├── MOD_boolean_util.c │ │ │ ├── MOD_boolean_util.h │ │ │ ├── MOD_build.c │ │ │ ├── MOD_cast.c │ │ │ ├── MOD_cloth.c │ │ │ ├── MOD_collision.c │ │ │ ├── MOD_correctivesmooth.c │ │ │ ├── MOD_curve.c │ │ │ ├── MOD_datatransfer.c │ │ │ ├── MOD_decimate.c │ │ │ ├── MOD_displace.c │ │ │ ├── MOD_dynamicpaint.c │ │ │ ├── MOD_edgesplit.c │ │ │ ├── MOD_explode.c │ │ │ ├── MOD_fluidsim.c │ │ │ ├── MOD_fluidsim_util.c │ │ │ ├── MOD_fluidsim_util.h │ │ │ ├── MOD_hook.c │ │ │ ├── MOD_laplaciandeform.c │ │ │ ├── MOD_laplaciansmooth.c │ │ │ ├── MOD_lattice.c │ │ │ ├── MOD_mask.c │ │ │ ├── MOD_meshcache.c │ │ │ ├── MOD_meshcache_mdd.c │ │ │ ├── MOD_meshcache_pc2.c │ │ │ ├── MOD_meshcache_util.c │ │ │ ├── MOD_meshcache_util.h │ │ │ ├── MOD_meshdeform.c │ │ │ ├── MOD_meshsequencecache.c │ │ │ ├── MOD_mirror.c │ │ │ ├── MOD_multires.c │ │ │ ├── MOD_none.c │ │ │ ├── MOD_normal_edit.c │ │ │ ├── MOD_ocean.c │ │ │ ├── MOD_particleinstance.c │ │ │ ├── MOD_particlesystem.c │ │ │ ├── MOD_remesh.c │ │ │ ├── MOD_screw.c │ │ │ ├── MOD_shapekey.c │ │ │ ├── MOD_shrinkwrap.c │ │ │ ├── MOD_simpledeform.c │ │ │ ├── MOD_skin.c │ │ │ ├── MOD_smoke.c │ │ │ ├── MOD_smooth.c │ │ │ ├── MOD_softbody.c │ │ │ ├── MOD_solidify.c │ │ │ ├── MOD_subsurf.c │ │ │ ├── MOD_surface.c │ │ │ ├── MOD_surfacedeform.c │ │ │ ├── MOD_triangulate.c │ │ │ ├── MOD_util.c │ │ │ ├── MOD_util.h │ │ │ ├── MOD_uvproject.c │ │ │ ├── MOD_uvwarp.c │ │ │ ├── MOD_warp.c │ │ │ ├── MOD_wave.c │ │ │ ├── MOD_weightvg_util.c │ │ │ ├── MOD_weightvg_util.h │ │ │ ├── MOD_weightvgedit.c │ │ │ ├── MOD_weightvgmix.c │ │ │ ├── MOD_weightvgproximity.c │ │ │ └── MOD_wireframe.c │ ├── nodes │ │ ├── CMakeLists.txt │ │ ├── NOD_common.h │ │ ├── NOD_composite.h │ │ ├── NOD_shader.h │ │ ├── NOD_socket.h │ │ ├── NOD_static_types.h │ │ ├── NOD_texture.h │ │ ├── composite │ │ │ ├── node_composite_tree.c │ │ │ ├── node_composite_util.c │ │ │ ├── node_composite_util.h │ │ │ └── nodes │ │ │ │ ├── node_composite_alphaOver.c │ │ │ │ ├── node_composite_bilateralblur.c │ │ │ │ ├── node_composite_blur.c │ │ │ │ ├── node_composite_bokehblur.c │ │ │ │ ├── node_composite_bokehimage.c │ │ │ │ ├── node_composite_boxmask.c │ │ │ │ ├── node_composite_brightness.c │ │ │ │ ├── node_composite_channelMatte.c │ │ │ │ ├── node_composite_chromaMatte.c │ │ │ │ ├── node_composite_colorMatte.c │ │ │ │ ├── node_composite_colorSpill.c │ │ │ │ ├── node_composite_colorbalance.c │ │ │ │ ├── node_composite_colorcorrection.c │ │ │ │ ├── node_composite_common.c │ │ │ │ ├── node_composite_composite.c │ │ │ │ ├── node_composite_cornerpin.c │ │ │ │ ├── node_composite_crop.c │ │ │ │ ├── node_composite_cryptomatte.c │ │ │ │ ├── node_composite_curves.c │ │ │ │ ├── node_composite_defocus.c │ │ │ │ ├── node_composite_despeckle.c │ │ │ │ ├── node_composite_diffMatte.c │ │ │ │ ├── node_composite_dilate.c │ │ │ │ ├── node_composite_directionalblur.c │ │ │ │ ├── node_composite_displace.c │ │ │ │ ├── node_composite_distanceMatte.c │ │ │ │ ├── node_composite_doubleEdgeMask.c │ │ │ │ ├── node_composite_ellipsemask.c │ │ │ │ ├── node_composite_filter.c │ │ │ │ ├── node_composite_flip.c │ │ │ │ ├── node_composite_gamma.c │ │ │ │ ├── node_composite_glare.c │ │ │ │ ├── node_composite_hueSatVal.c │ │ │ │ ├── node_composite_huecorrect.c │ │ │ │ ├── node_composite_idMask.c │ │ │ │ ├── node_composite_image.c │ │ │ │ ├── node_composite_inpaint.c │ │ │ │ ├── node_composite_invert.c │ │ │ │ ├── node_composite_keying.c │ │ │ │ ├── node_composite_keyingscreen.c │ │ │ │ ├── node_composite_lensdist.c │ │ │ │ ├── node_composite_levels.c │ │ │ │ ├── node_composite_lummaMatte.c │ │ │ │ ├── node_composite_mapRange.c │ │ │ │ ├── node_composite_mapUV.c │ │ │ │ ├── node_composite_mapValue.c │ │ │ │ ├── node_composite_mask.c │ │ │ │ ├── node_composite_math.c │ │ │ │ ├── node_composite_mixrgb.c │ │ │ │ ├── node_composite_motionblur2d.c │ │ │ │ ├── node_composite_movieclip.c │ │ │ │ ├── node_composite_moviedistortion.c │ │ │ │ ├── node_composite_normal.c │ │ │ │ ├── node_composite_normalize.c │ │ │ │ ├── node_composite_outputFile.c │ │ │ │ ├── node_composite_pixelate.c │ │ │ │ ├── node_composite_planetrackdeform.c │ │ │ │ ├── node_composite_premulkey.c │ │ │ │ ├── node_composite_rgb.c │ │ │ │ ├── node_composite_rotate.c │ │ │ │ ├── node_composite_scale.c │ │ │ │ ├── node_composite_sepcombHSVA.c │ │ │ │ ├── node_composite_sepcombRGBA.c │ │ │ │ ├── node_composite_sepcombYCCA.c │ │ │ │ ├── node_composite_sepcombYUVA.c │ │ │ │ ├── node_composite_setalpha.c │ │ │ │ ├── node_composite_splitViewer.c │ │ │ │ ├── node_composite_stabilize2d.c │ │ │ │ ├── node_composite_sunbeams.c │ │ │ │ ├── node_composite_switch.c │ │ │ │ ├── node_composite_switchview.c │ │ │ │ ├── node_composite_texture.c │ │ │ │ ├── node_composite_tonemap.c │ │ │ │ ├── node_composite_trackpos.c │ │ │ │ ├── node_composite_transform.c │ │ │ │ ├── node_composite_translate.c │ │ │ │ ├── node_composite_valToRgb.c │ │ │ │ ├── node_composite_value.c │ │ │ │ ├── node_composite_vecBlur.c │ │ │ │ ├── node_composite_viewer.c │ │ │ │ └── node_composite_zcombine.c │ │ ├── intern │ │ │ ├── node_common.c │ │ │ ├── node_common.h │ │ │ ├── node_exec.c │ │ │ ├── node_exec.h │ │ │ ├── node_socket.c │ │ │ ├── node_util.c │ │ │ └── node_util.h │ │ ├── shader │ │ │ ├── node_shader_tree.c │ │ │ ├── node_shader_util.c │ │ │ ├── node_shader_util.h │ │ │ └── nodes │ │ │ │ ├── node_shader_add_shader.c │ │ │ │ ├── node_shader_ambient_occlusion.c │ │ │ │ ├── node_shader_aov_output.c │ │ │ │ ├── node_shader_attribute.c │ │ │ │ ├── node_shader_background.c │ │ │ │ ├── node_shader_blackbody.c │ │ │ │ ├── node_shader_brightness.c │ │ │ │ ├── node_shader_bsdf_anisotropic.c │ │ │ │ ├── node_shader_bsdf_diffuse.c │ │ │ │ ├── node_shader_bsdf_glass.c │ │ │ │ ├── node_shader_bsdf_glossy.c │ │ │ │ ├── node_shader_bsdf_hair.c │ │ │ │ ├── node_shader_bsdf_principled.c │ │ │ │ ├── node_shader_bsdf_refraction.c │ │ │ │ ├── node_shader_bsdf_toon.c │ │ │ │ ├── node_shader_bsdf_translucent.c │ │ │ │ ├── node_shader_bsdf_transparent.c │ │ │ │ ├── node_shader_bsdf_velvet.c │ │ │ │ ├── node_shader_bump.c │ │ │ │ ├── node_shader_camera.c │ │ │ │ ├── node_shader_common.c │ │ │ │ ├── node_shader_curves.c │ │ │ │ ├── node_shader_emission.c │ │ │ │ ├── node_shader_fresnel.c │ │ │ │ ├── node_shader_gamma.c │ │ │ │ ├── node_shader_geom.c │ │ │ │ ├── node_shader_geometry.c │ │ │ │ ├── node_shader_hair_info.c │ │ │ │ ├── node_shader_holdout.c │ │ │ │ ├── node_shader_hueSatVal.c │ │ │ │ ├── node_shader_invert.c │ │ │ │ ├── node_shader_lamp.c │ │ │ │ ├── node_shader_layer_weight.c │ │ │ │ ├── node_shader_light_falloff.c │ │ │ │ ├── node_shader_light_path.c │ │ │ │ ├── node_shader_mapping.c │ │ │ │ ├── node_shader_material.c │ │ │ │ ├── node_shader_math.c │ │ │ │ ├── node_shader_mixRgb.c │ │ │ │ ├── node_shader_mix_shader.c │ │ │ │ ├── node_shader_normal.c │ │ │ │ ├── node_shader_normal_map.c │ │ │ │ ├── node_shader_object_info.c │ │ │ │ ├── node_shader_output.c │ │ │ │ ├── node_shader_output_lamp.c │ │ │ │ ├── node_shader_output_linestyle.c │ │ │ │ ├── node_shader_output_material.c │ │ │ │ ├── node_shader_output_world.c │ │ │ │ ├── node_shader_particle_info.c │ │ │ │ ├── node_shader_rgb.c │ │ │ │ ├── node_shader_script.c │ │ │ │ ├── node_shader_sepcombHSV.c │ │ │ │ ├── node_shader_sepcombRGB.c │ │ │ │ ├── node_shader_sepcombXYZ.c │ │ │ │ ├── node_shader_squeeze.c │ │ │ │ ├── node_shader_subsurface_scattering.c │ │ │ │ ├── node_shader_tangent.c │ │ │ │ ├── node_shader_tex_brick.c │ │ │ │ ├── node_shader_tex_checker.c │ │ │ │ ├── node_shader_tex_coord.c │ │ │ │ ├── node_shader_tex_curve.c │ │ │ │ ├── node_shader_tex_environment.c │ │ │ │ ├── node_shader_tex_gradient.c │ │ │ │ ├── node_shader_tex_image.c │ │ │ │ ├── node_shader_tex_magic.c │ │ │ │ ├── node_shader_tex_musgrave.c │ │ │ │ ├── node_shader_tex_noise.c │ │ │ │ ├── node_shader_tex_pointdensity.c │ │ │ │ ├── node_shader_tex_sky.c │ │ │ │ ├── node_shader_tex_voronoi.c │ │ │ │ ├── node_shader_tex_wave.c │ │ │ │ ├── node_shader_texture.c │ │ │ │ ├── node_shader_uvAlongStroke.c │ │ │ │ ├── node_shader_uvmap.c │ │ │ │ ├── node_shader_valToRgb.c │ │ │ │ ├── node_shader_value.c │ │ │ │ ├── node_shader_vectMath.c │ │ │ │ ├── node_shader_vectTransform.c │ │ │ │ ├── node_shader_volume_absorption.c │ │ │ │ ├── node_shader_volume_scatter.c │ │ │ │ ├── node_shader_wavelength.c │ │ │ │ └── node_shader_wireframe.c │ │ └── texture │ │ │ ├── node_texture_tree.c │ │ │ ├── node_texture_util.c │ │ │ ├── node_texture_util.h │ │ │ └── nodes │ │ │ ├── node_texture_at.c │ │ │ ├── node_texture_bricks.c │ │ │ ├── node_texture_checker.c │ │ │ ├── node_texture_common.c │ │ │ ├── node_texture_compose.c │ │ │ ├── node_texture_coord.c │ │ │ ├── node_texture_curves.c │ │ │ ├── node_texture_decompose.c │ │ │ ├── node_texture_distance.c │ │ │ ├── node_texture_hueSatVal.c │ │ │ ├── node_texture_image.c │ │ │ ├── node_texture_invert.c │ │ │ ├── node_texture_math.c │ │ │ ├── node_texture_mixRgb.c │ │ │ ├── node_texture_output.c │ │ │ ├── node_texture_proc.c │ │ │ ├── node_texture_rotate.c │ │ │ ├── node_texture_scale.c │ │ │ ├── node_texture_texture.c │ │ │ ├── node_texture_translate.c │ │ │ ├── node_texture_valToNor.c │ │ │ ├── node_texture_valToRgb.c │ │ │ └── node_texture_viewer.c │ ├── physics │ │ ├── BPH_mass_spring.h │ │ ├── CMakeLists.txt │ │ └── intern │ │ │ ├── BPH_mass_spring.cpp │ │ │ ├── ConstrainedConjugateGradient.h │ │ │ ├── eigen_utils.h │ │ │ ├── hair_volume.cpp │ │ │ ├── implicit.h │ │ │ ├── implicit_blender.c │ │ │ └── implicit_eigen.cpp │ ├── python │ │ ├── BPY_extern.h │ │ ├── CMakeLists.txt │ │ ├── bmesh │ │ │ ├── CMakeLists.txt │ │ │ ├── bmesh_py_api.c │ │ │ ├── bmesh_py_api.h │ │ │ ├── bmesh_py_geometry.c │ │ │ ├── bmesh_py_geometry.h │ │ │ ├── bmesh_py_ops.c │ │ │ ├── bmesh_py_ops.h │ │ │ ├── bmesh_py_ops_call.c │ │ │ ├── bmesh_py_ops_call.h │ │ │ ├── bmesh_py_types.c │ │ │ ├── bmesh_py_types.h │ │ │ ├── bmesh_py_types_customdata.c │ │ │ ├── bmesh_py_types_customdata.h │ │ │ ├── bmesh_py_types_meshdata.c │ │ │ ├── bmesh_py_types_meshdata.h │ │ │ ├── bmesh_py_types_select.c │ │ │ ├── bmesh_py_types_select.h │ │ │ ├── bmesh_py_utils.c │ │ │ └── bmesh_py_utils.h │ │ ├── generic │ │ │ ├── CMakeLists.txt │ │ │ ├── bgl.c │ │ │ ├── bgl.h │ │ │ ├── blf_py_api.c │ │ │ ├── blf_py_api.h │ │ │ ├── bpy_internal_import.c │ │ │ ├── bpy_internal_import.h │ │ │ ├── bpy_threads.c │ │ │ ├── idprop_py_api.c │ │ │ ├── idprop_py_api.h │ │ │ ├── py_capi_utils.c │ │ │ ├── py_capi_utils.h │ │ │ └── python_utildefines.h │ │ ├── intern │ │ │ ├── CMakeLists.txt │ │ │ ├── bpy.c │ │ │ ├── bpy.h │ │ │ ├── bpy_app.c │ │ │ ├── bpy_app.h │ │ │ ├── bpy_app_alembic.c │ │ │ ├── bpy_app_alembic.h │ │ │ ├── bpy_app_build_options.c │ │ │ ├── bpy_app_build_options.h │ │ │ ├── bpy_app_ffmpeg.c │ │ │ ├── bpy_app_ffmpeg.h │ │ │ ├── bpy_app_handlers.c │ │ │ ├── bpy_app_handlers.h │ │ │ ├── bpy_app_ocio.c │ │ │ ├── bpy_app_ocio.h │ │ │ ├── bpy_app_oiio.c │ │ │ ├── bpy_app_oiio.h │ │ │ ├── bpy_app_openvdb.c │ │ │ ├── bpy_app_openvdb.h │ │ │ ├── bpy_app_sdl.c │ │ │ ├── bpy_app_sdl.h │ │ │ ├── bpy_app_translations.c │ │ │ ├── bpy_app_translations.h │ │ │ ├── bpy_driver.c │ │ │ ├── bpy_driver.h │ │ │ ├── bpy_interface.c │ │ │ ├── bpy_interface_atexit.c │ │ │ ├── bpy_intern_string.c │ │ │ ├── bpy_intern_string.h │ │ │ ├── bpy_library.h │ │ │ ├── bpy_library_load.c │ │ │ ├── bpy_library_write.c │ │ │ ├── bpy_operator.c │ │ │ ├── bpy_operator.h │ │ │ ├── bpy_operator_wrap.c │ │ │ ├── bpy_operator_wrap.h │ │ │ ├── bpy_path.c │ │ │ ├── bpy_path.h │ │ │ ├── bpy_props.c │ │ │ ├── bpy_props.h │ │ │ ├── bpy_rna.c │ │ │ ├── bpy_rna.h │ │ │ ├── bpy_rna_anim.c │ │ │ ├── bpy_rna_anim.h │ │ │ ├── bpy_rna_array.c │ │ │ ├── bpy_rna_callback.c │ │ │ ├── bpy_rna_callback.h │ │ │ ├── bpy_rna_driver.c │ │ │ ├── bpy_rna_driver.h │ │ │ ├── bpy_rna_id_collection.c │ │ │ ├── bpy_rna_id_collection.h │ │ │ ├── bpy_traceback.c │ │ │ ├── bpy_traceback.h │ │ │ ├── bpy_util.c │ │ │ ├── bpy_util.h │ │ │ ├── bpy_utils_previews.c │ │ │ ├── bpy_utils_previews.h │ │ │ ├── bpy_utils_units.c │ │ │ ├── bpy_utils_units.h │ │ │ ├── gpu.c │ │ │ ├── gpu.h │ │ │ ├── gpu_offscreen.c │ │ │ └── stubs.c │ │ ├── mathutils │ │ │ ├── CMakeLists.txt │ │ │ ├── mathutils.c │ │ │ ├── mathutils.h │ │ │ ├── mathutils_Color.c │ │ │ ├── mathutils_Color.h │ │ │ ├── mathutils_Euler.c │ │ │ ├── mathutils_Euler.h │ │ │ ├── mathutils_Matrix.c │ │ │ ├── mathutils_Matrix.h │ │ │ ├── mathutils_Quaternion.c │ │ │ ├── mathutils_Quaternion.h │ │ │ ├── mathutils_Vector.c │ │ │ ├── mathutils_Vector.h │ │ │ ├── mathutils_bvhtree.c │ │ │ ├── mathutils_bvhtree.h │ │ │ ├── mathutils_geometry.c │ │ │ ├── mathutils_geometry.h │ │ │ ├── mathutils_interpolate.c │ │ │ ├── mathutils_interpolate.h │ │ │ ├── mathutils_kdtree.c │ │ │ ├── mathutils_kdtree.h │ │ │ ├── mathutils_noise.c │ │ │ └── mathutils_noise.h │ │ ├── rna_dump.py │ │ └── simple_enum_gen.py │ ├── quicktime │ │ ├── CMakeLists.txt │ │ ├── apple │ │ │ ├── qtkit_export.m │ │ │ └── qtkit_import.m │ │ ├── quicktime_export.h │ │ └── quicktime_import.h │ ├── render │ │ ├── CMakeLists.txt │ │ ├── extern │ │ │ └── include │ │ │ │ ├── RE_bake.h │ │ │ │ ├── RE_engine.h │ │ │ │ ├── RE_multires_bake.h │ │ │ │ ├── RE_pipeline.h │ │ │ │ ├── RE_render_ext.h │ │ │ │ └── RE_shader_ext.h │ │ └── intern │ │ │ ├── include │ │ │ ├── envmap.h │ │ │ ├── initrender.h │ │ │ ├── occlusion.h │ │ │ ├── pixelblending.h │ │ │ ├── pixelshading.h │ │ │ ├── pointdensity.h │ │ │ ├── raycounter.h │ │ │ ├── rayintersection.h │ │ │ ├── rayobject.h │ │ │ ├── render_result.h │ │ │ ├── render_types.h │ │ │ ├── rendercore.h │ │ │ ├── renderdatabase.h │ │ │ ├── renderpipeline.h │ │ │ ├── shadbuf.h │ │ │ ├── shading.h │ │ │ ├── sss.h │ │ │ ├── strand.h │ │ │ ├── sunsky.h │ │ │ ├── texture.h │ │ │ ├── texture_ocean.h │ │ │ ├── volume_precache.h │ │ │ ├── volumetric.h │ │ │ ├── voxeldata.h │ │ │ └── zbuf.h │ │ │ ├── raytrace │ │ │ ├── bvh.h │ │ │ ├── rayobject.cpp │ │ │ ├── rayobject_empty.cpp │ │ │ ├── rayobject_hint.h │ │ │ ├── rayobject_instance.cpp │ │ │ ├── rayobject_internal.h │ │ │ ├── rayobject_octree.cpp │ │ │ ├── rayobject_qbvh.cpp │ │ │ ├── rayobject_raycounter.cpp │ │ │ ├── rayobject_rtbuild.cpp │ │ │ ├── rayobject_rtbuild.h │ │ │ ├── rayobject_svbvh.cpp │ │ │ ├── rayobject_vbvh.cpp │ │ │ ├── reorganize.h │ │ │ ├── svbvh.h │ │ │ └── vbvh.h │ │ │ └── source │ │ │ ├── bake.c │ │ │ ├── bake_api.c │ │ │ ├── convertblender.c │ │ │ ├── envmap.c │ │ │ ├── external_engine.c │ │ │ ├── imagetexture.c │ │ │ ├── initrender.c │ │ │ ├── multires_bake.c │ │ │ ├── occlusion.c │ │ │ ├── pipeline.c │ │ │ ├── pixelblending.c │ │ │ ├── pixelshading.c │ │ │ ├── pointdensity.c │ │ │ ├── rayshade.c │ │ │ ├── render_result.c │ │ │ ├── render_texture.c │ │ │ ├── rendercore.c │ │ │ ├── renderdatabase.c │ │ │ ├── shadbuf.c │ │ │ ├── shadeinput.c │ │ │ ├── shadeoutput.c │ │ │ ├── sss.c │ │ │ ├── strand.c │ │ │ ├── sunsky.c │ │ │ ├── texture_ocean.c │ │ │ ├── volume_precache.c │ │ │ ├── volumetric.c │ │ │ ├── voxeldata.c │ │ │ └── zbuf.c │ └── windowmanager │ │ ├── CMakeLists.txt │ │ ├── WM_api.h │ │ ├── WM_keymap.h │ │ ├── WM_types.h │ │ ├── intern │ │ ├── wm.c │ │ ├── wm_cursors.c │ │ ├── wm_dragdrop.c │ │ ├── wm_draw.c │ │ ├── wm_event_system.c │ │ ├── wm_files.c │ │ ├── wm_files_link.c │ │ ├── wm_gesture.c │ │ ├── wm_init_exit.c │ │ ├── wm_jobs.c │ │ ├── wm_keymap.c │ │ ├── wm_operator_props.c │ │ ├── wm_operators.c │ │ ├── wm_playanim.c │ │ ├── wm_stereo.c │ │ ├── wm_subwindow.c │ │ └── wm_window.c │ │ ├── wm.h │ │ ├── wm_cursors.h │ │ ├── wm_draw.h │ │ ├── wm_event_system.h │ │ ├── wm_event_types.h │ │ ├── wm_files.h │ │ ├── wm_subwindow.h │ │ └── wm_window.h ├── blenderplayer │ ├── CMakeLists.txt │ └── bad_level_call_stubs │ │ ├── CMakeLists.txt │ │ └── stubs.c ├── creator │ ├── CMakeLists.txt │ ├── blender.map │ ├── buildinfo.c │ ├── creator.c │ ├── creator_args.c │ ├── creator_intern.h │ ├── creator_signals.c │ └── osx_locals.map └── gameengine │ ├── BlenderRoutines │ ├── BL_KetsjiEmbedStart.cpp │ ├── BL_System.cpp │ ├── BL_System.h │ ├── CMakeLists.txt │ ├── KX_BlenderCanvas.cpp │ ├── KX_BlenderCanvas.h │ ├── KX_BlenderInputDevice.cpp │ ├── KX_BlenderInputDevice.h │ ├── KX_BlenderKeyboardDevice.cpp │ ├── KX_BlenderKeyboardDevice.h │ ├── KX_BlenderMouseDevice.cpp │ ├── KX_BlenderMouseDevice.h │ ├── KX_BlenderSystem.cpp │ └── KX_BlenderSystem.h │ ├── CMakeLists.txt │ ├── Converter │ ├── BL_ActionActuator.cpp │ ├── BL_ActionActuator.h │ ├── BL_ArmatureActuator.cpp │ ├── BL_ArmatureActuator.h │ ├── BL_ArmatureChannel.cpp │ ├── BL_ArmatureChannel.h │ ├── BL_ArmatureConstraint.cpp │ ├── BL_ArmatureConstraint.h │ ├── BL_ArmatureObject.cpp │ ├── BL_ArmatureObject.h │ ├── BL_BlenderDataConversion.cpp │ ├── BL_BlenderDataConversion.h │ ├── BL_DeformableGameObject.cpp │ ├── BL_DeformableGameObject.h │ ├── BL_MeshDeformer.cpp │ ├── BL_MeshDeformer.h │ ├── BL_ModifierDeformer.cpp │ ├── BL_ModifierDeformer.h │ ├── BL_ShapeActionActuator.cpp │ ├── BL_ShapeActionActuator.h │ ├── BL_ShapeDeformer.cpp │ ├── BL_ShapeDeformer.h │ ├── BL_SkinDeformer.cpp │ ├── BL_SkinDeformer.h │ ├── CMakeLists.txt │ ├── KX_BlenderScalarInterpolator.cpp │ ├── KX_BlenderScalarInterpolator.h │ ├── KX_BlenderSceneConverter.cpp │ ├── KX_BlenderSceneConverter.h │ ├── KX_ConvertActuators.cpp │ ├── KX_ConvertActuators.h │ ├── KX_ConvertControllers.cpp │ ├── KX_ConvertControllers.h │ ├── KX_ConvertProperties.cpp │ ├── KX_ConvertProperties.h │ ├── KX_ConvertSensors.cpp │ ├── KX_ConvertSensors.h │ ├── KX_LibLoadStatus.cpp │ ├── KX_LibLoadStatus.h │ ├── KX_SoftBodyDeformer.cpp │ └── KX_SoftBodyDeformer.h │ ├── Expressions │ ├── CMakeLists.txt │ ├── EXP_BoolValue.h │ ├── EXP_ConstExpr.h │ ├── EXP_EmptyValue.h │ ├── EXP_ErrorValue.h │ ├── EXP_Expression.h │ ├── EXP_FloatValue.h │ ├── EXP_HashedPtr.h │ ├── EXP_IdentifierExpr.h │ ├── EXP_IfExpr.h │ ├── EXP_InputParser.h │ ├── EXP_IntValue.h │ ├── EXP_ListValue.h │ ├── EXP_ListWrapper.h │ ├── EXP_Operator1Expr.h │ ├── EXP_Operator2Expr.h │ ├── EXP_PyObjectPlus.h │ ├── EXP_Python.h │ ├── EXP_PythonCallBack.h │ ├── EXP_StringValue.h │ ├── EXP_Value.h │ ├── EXP_VectorValue.h │ ├── EXP_VoidValue.h │ └── intern │ │ ├── BoolValue.cpp │ │ ├── ConstExpr.cpp │ │ ├── EmptyValue.cpp │ │ ├── ErrorValue.cpp │ │ ├── Expression.cpp │ │ ├── FloatValue.cpp │ │ ├── HashedPtr.cpp │ │ ├── IdentifierExpr.cpp │ │ ├── IfExpr.cpp │ │ ├── InputParser.cpp │ │ ├── IntValue.cpp │ │ ├── ListValue.cpp │ │ ├── ListWrapper.cpp │ │ ├── Operator1Expr.cpp │ │ ├── Operator2Expr.cpp │ │ ├── PyObjectPlus.cpp │ │ ├── PythonCallBack.cpp │ │ ├── StringValue.cpp │ │ ├── Value.cpp │ │ └── VectorValue.cpp │ ├── GameLogic │ ├── CMakeLists.txt │ ├── Joystick │ │ ├── SCA_Joystick.cpp │ │ ├── SCA_Joystick.h │ │ ├── SCA_JoystickDefines.h │ │ ├── SCA_JoystickEvents.cpp │ │ └── SCA_JoystickPrivate.h │ ├── SCA_2DFilterActuator.cpp │ ├── SCA_2DFilterActuator.h │ ├── SCA_ANDController.cpp │ ├── SCA_ANDController.h │ ├── SCA_ActuatorEventManager.cpp │ ├── SCA_ActuatorEventManager.h │ ├── SCA_ActuatorSensor.cpp │ ├── SCA_ActuatorSensor.h │ ├── SCA_AlwaysEventManager.cpp │ ├── SCA_AlwaysEventManager.h │ ├── SCA_AlwaysSensor.cpp │ ├── SCA_AlwaysSensor.h │ ├── SCA_BasicEventManager.cpp │ ├── SCA_BasicEventManager.h │ ├── SCA_DelaySensor.cpp │ ├── SCA_DelaySensor.h │ ├── SCA_EventManager.cpp │ ├── SCA_EventManager.h │ ├── SCA_ExpressionController.cpp │ ├── SCA_ExpressionController.h │ ├── SCA_IActuator.cpp │ ├── SCA_IActuator.h │ ├── SCA_IController.cpp │ ├── SCA_IController.h │ ├── SCA_IInputDevice.cpp │ ├── SCA_IInputDevice.h │ ├── SCA_ILogicBrick.cpp │ ├── SCA_ILogicBrick.h │ ├── SCA_IObject.cpp │ ├── SCA_IObject.h │ ├── SCA_IScene.cpp │ ├── SCA_IScene.h │ ├── SCA_ISensor.cpp │ ├── SCA_ISensor.h │ ├── SCA_JoystickManager.cpp │ ├── SCA_JoystickManager.h │ ├── SCA_JoystickSensor.cpp │ ├── SCA_JoystickSensor.h │ ├── SCA_KeyboardManager.cpp │ ├── SCA_KeyboardManager.h │ ├── SCA_KeyboardSensor.cpp │ ├── SCA_KeyboardSensor.h │ ├── SCA_LogicManager.cpp │ ├── SCA_LogicManager.h │ ├── SCA_MouseManager.cpp │ ├── SCA_MouseManager.h │ ├── SCA_MouseSensor.cpp │ ├── SCA_MouseSensor.h │ ├── SCA_NANDController.cpp │ ├── SCA_NANDController.h │ ├── SCA_NORController.cpp │ ├── SCA_NORController.h │ ├── SCA_ORController.cpp │ ├── SCA_ORController.h │ ├── SCA_PropertyActuator.cpp │ ├── SCA_PropertyActuator.h │ ├── SCA_PropertyEventManager.cpp │ ├── SCA_PropertyEventManager.h │ ├── SCA_PropertySensor.cpp │ ├── SCA_PropertySensor.h │ ├── SCA_PythonController.cpp │ ├── SCA_PythonController.h │ ├── SCA_PythonJoystick.cpp │ ├── SCA_PythonJoystick.h │ ├── SCA_PythonKeyboard.cpp │ ├── SCA_PythonKeyboard.h │ ├── SCA_PythonMouse.cpp │ ├── SCA_PythonMouse.h │ ├── SCA_RandomActuator.cpp │ ├── SCA_RandomActuator.h │ ├── SCA_RandomEventManager.cpp │ ├── SCA_RandomEventManager.h │ ├── SCA_RandomNumberGenerator.cpp │ ├── SCA_RandomNumberGenerator.h │ ├── SCA_RandomSensor.cpp │ ├── SCA_RandomSensor.h │ ├── SCA_TimeEventManager.cpp │ ├── SCA_TimeEventManager.h │ ├── SCA_XNORController.cpp │ ├── SCA_XNORController.h │ ├── SCA_XORController.cpp │ └── SCA_XORController.h │ ├── GamePlayer │ ├── CMakeLists.txt │ ├── common │ │ ├── CMakeLists.txt │ │ ├── GPC_Canvas.cpp │ │ ├── GPC_Canvas.h │ │ ├── GPC_KeyboardDevice.cpp │ │ ├── GPC_KeyboardDevice.h │ │ ├── GPC_MouseDevice.cpp │ │ └── GPC_MouseDevice.h │ └── ghost │ │ ├── CMakeLists.txt │ │ ├── GPG_Application.cpp │ │ ├── GPG_Application.h │ │ ├── GPG_Canvas.cpp │ │ ├── GPG_Canvas.h │ │ ├── GPG_KeyboardDevice.cpp │ │ ├── GPG_KeyboardDevice.h │ │ ├── GPG_System.cpp │ │ ├── GPG_System.h │ │ └── GPG_ghost.cpp │ ├── Ketsji │ ├── BL_Action.cpp │ ├── BL_Action.h │ ├── BL_ActionManager.cpp │ ├── BL_ActionManager.h │ ├── BL_BlenderShader.cpp │ ├── BL_BlenderShader.h │ ├── BL_Material.cpp │ ├── BL_Material.h │ ├── BL_Shader.cpp │ ├── BL_Shader.h │ ├── BL_Texture.cpp │ ├── BL_Texture.h │ ├── CMakeLists.txt │ ├── KXNetwork │ │ ├── CMakeLists.txt │ │ ├── KX_NetworkEventManager.cpp │ │ ├── KX_NetworkEventManager.h │ │ ├── KX_NetworkMessageActuator.cpp │ │ ├── KX_NetworkMessageActuator.h │ │ ├── KX_NetworkMessageSensor.cpp │ │ ├── KX_NetworkMessageSensor.h │ │ ├── KX_NetworkObjectActuator.cpp │ │ ├── KX_NetworkObjectActuator.h │ │ ├── KX_NetworkObjectSensor.cpp │ │ └── KX_NetworkObjectSensor.h │ ├── KX_ArmatureSensor.cpp │ ├── KX_ArmatureSensor.h │ ├── KX_BlenderMaterial.cpp │ ├── KX_BlenderMaterial.h │ ├── KX_Camera.cpp │ ├── KX_Camera.h │ ├── KX_CameraActuator.cpp │ ├── KX_CameraActuator.h │ ├── KX_CameraIpoSGController.cpp │ ├── KX_CameraIpoSGController.h │ ├── KX_CharacterWrapper.cpp │ ├── KX_CharacterWrapper.h │ ├── KX_ClientObjectInfo.h │ ├── KX_ConstraintActuator.cpp │ ├── KX_ConstraintActuator.h │ ├── KX_ConstraintWrapper.cpp │ ├── KX_ConstraintWrapper.h │ ├── KX_Dome.cpp │ ├── KX_Dome.h │ ├── KX_EmptyObject.cpp │ ├── KX_EmptyObject.h │ ├── KX_FontObject.cpp │ ├── KX_FontObject.h │ ├── KX_GameActuator.cpp │ ├── KX_GameActuator.h │ ├── KX_GameObject.cpp │ ├── KX_GameObject.h │ ├── KX_IInterpolator.h │ ├── KX_IPOTransform.h │ ├── KX_IPO_SGController.cpp │ ├── KX_IPO_SGController.h │ ├── KX_IScalarInterpolator.h │ ├── KX_ISceneConverter.h │ ├── KX_ISystem.h │ ├── KX_IpoConvert.cpp │ ├── KX_IpoConvert.h │ ├── KX_KetsjiEngine.cpp │ ├── KX_KetsjiEngine.h │ ├── KX_Light.cpp │ ├── KX_Light.h │ ├── KX_LightIpoSGController.cpp │ ├── KX_LightIpoSGController.h │ ├── KX_MaterialIpoController.cpp │ ├── KX_MaterialIpoController.h │ ├── KX_MeshProxy.cpp │ ├── KX_MeshProxy.h │ ├── KX_MotionState.cpp │ ├── KX_MotionState.h │ ├── KX_MouseActuator.cpp │ ├── KX_MouseActuator.h │ ├── KX_MouseFocusSensor.cpp │ ├── KX_MouseFocusSensor.h │ ├── KX_NavMeshObject.cpp │ ├── KX_NavMeshObject.h │ ├── KX_NearSensor.cpp │ ├── KX_NearSensor.h │ ├── KX_ObColorIpoSGController.cpp │ ├── KX_ObColorIpoSGController.h │ ├── KX_ObjectActuator.cpp │ ├── KX_ObjectActuator.h │ ├── KX_ObstacleSimulation.cpp │ ├── KX_ObstacleSimulation.h │ ├── KX_OrientationInterpolator.cpp │ ├── KX_OrientationInterpolator.h │ ├── KX_ParentActuator.cpp │ ├── KX_ParentActuator.h │ ├── KX_PhysicsEngineEnums.h │ ├── KX_PolyProxy.cpp │ ├── KX_PolyProxy.h │ ├── KX_PositionInterpolator.cpp │ ├── KX_PositionInterpolator.h │ ├── KX_PyConstraintBinding.cpp │ ├── KX_PyConstraintBinding.h │ ├── KX_PyMath.cpp │ ├── KX_PyMath.h │ ├── KX_PythonInit.cpp │ ├── KX_PythonInit.h │ ├── KX_PythonInitTypes.cpp │ ├── KX_PythonInitTypes.h │ ├── KX_PythonMain.cpp │ ├── KX_PythonMain.h │ ├── KX_RadarSensor.cpp │ ├── KX_RadarSensor.h │ ├── KX_RayCast.cpp │ ├── KX_RayCast.h │ ├── KX_RayEventManager.cpp │ ├── KX_RayEventManager.h │ ├── KX_RaySensor.cpp │ ├── KX_RaySensor.h │ ├── KX_SCA_AddObjectActuator.cpp │ ├── KX_SCA_AddObjectActuator.h │ ├── KX_SCA_DynamicActuator.cpp │ ├── KX_SCA_DynamicActuator.h │ ├── KX_SCA_EndObjectActuator.cpp │ ├── KX_SCA_EndObjectActuator.h │ ├── KX_SCA_ReplaceMeshActuator.cpp │ ├── KX_SCA_ReplaceMeshActuator.h │ ├── KX_SG_BoneParentNodeRelationship.cpp │ ├── KX_SG_BoneParentNodeRelationship.h │ ├── KX_SG_NodeRelationships.cpp │ ├── KX_SG_NodeRelationships.h │ ├── KX_ScalarInterpolator.cpp │ ├── KX_ScalarInterpolator.h │ ├── KX_ScalingInterpolator.cpp │ ├── KX_ScalingInterpolator.h │ ├── KX_Scene.cpp │ ├── KX_Scene.h │ ├── KX_SceneActuator.cpp │ ├── KX_SceneActuator.h │ ├── KX_SoundActuator.cpp │ ├── KX_SoundActuator.h │ ├── KX_StateActuator.cpp │ ├── KX_StateActuator.h │ ├── KX_SteeringActuator.cpp │ ├── KX_SteeringActuator.h │ ├── KX_TimeCategoryLogger.cpp │ ├── KX_TimeCategoryLogger.h │ ├── KX_TimeLogger.cpp │ ├── KX_TimeLogger.h │ ├── KX_TouchEventManager.cpp │ ├── KX_TouchEventManager.h │ ├── KX_TouchSensor.cpp │ ├── KX_TouchSensor.h │ ├── KX_TrackToActuator.cpp │ ├── KX_TrackToActuator.h │ ├── KX_VehicleWrapper.cpp │ ├── KX_VehicleWrapper.h │ ├── KX_VertexProxy.cpp │ ├── KX_VertexProxy.h │ ├── KX_VisibilityActuator.cpp │ ├── KX_VisibilityActuator.h │ ├── KX_WorldInfo.cpp │ ├── KX_WorldInfo.h │ ├── KX_WorldIpoController.cpp │ └── KX_WorldIpoController.h │ ├── Network │ ├── CMakeLists.txt │ ├── LoopBackNetwork │ │ ├── CMakeLists.txt │ │ ├── NG_LoopBackNetworkDeviceInterface.cpp │ │ └── NG_LoopBackNetworkDeviceInterface.h │ ├── NG_NetworkDeviceInterface.h │ ├── NG_NetworkMessage.cpp │ ├── NG_NetworkMessage.h │ ├── NG_NetworkObject.cpp │ ├── NG_NetworkObject.h │ ├── NG_NetworkScene.cpp │ └── NG_NetworkScene.h │ ├── Physics │ ├── Bullet │ │ ├── CMakeLists.txt │ │ ├── CcdGraphicController.cpp │ │ ├── CcdGraphicController.h │ │ ├── CcdPhysicsController.cpp │ │ ├── CcdPhysicsController.h │ │ ├── CcdPhysicsEnvironment.cpp │ │ └── CcdPhysicsEnvironment.h │ ├── Dummy │ │ ├── CMakeLists.txt │ │ ├── DummyPhysicsEnvironment.cpp │ │ └── DummyPhysicsEnvironment.h │ └── common │ │ ├── PHY_DynamicTypes.h │ │ ├── PHY_ICharacter.h │ │ ├── PHY_IController.h │ │ ├── PHY_IGraphicController.h │ │ ├── PHY_IMotionState.h │ │ ├── PHY_IPhysicsController.h │ │ ├── PHY_IPhysicsEnvironment.h │ │ ├── PHY_IVehicle.h │ │ └── PHY_Pro.h │ ├── Rasterizer │ ├── CMakeLists.txt │ ├── RAS_2DFilterManager.cpp │ ├── RAS_2DFilterManager.h │ ├── RAS_BucketManager.cpp │ ├── RAS_BucketManager.h │ ├── RAS_CameraData.h │ ├── RAS_Deformer.h │ ├── RAS_FramingManager.cpp │ ├── RAS_FramingManager.h │ ├── RAS_ICanvas.cpp │ ├── RAS_ICanvas.h │ ├── RAS_ILightObject.h │ ├── RAS_IOffScreen.h │ ├── RAS_IPolygonMaterial.cpp │ ├── RAS_IPolygonMaterial.h │ ├── RAS_IRasterizer.h │ ├── RAS_ISync.h │ ├── RAS_MaterialBucket.cpp │ ├── RAS_MaterialBucket.h │ ├── RAS_MeshObject.cpp │ ├── RAS_MeshObject.h │ ├── RAS_ObjectColor.h │ ├── RAS_OpenGLFilters │ │ ├── RAS_Blur2DFilter.h │ │ ├── RAS_Dilation2DFilter.h │ │ ├── RAS_Erosion2DFilter.h │ │ ├── RAS_GrayScale2DFilter.h │ │ ├── RAS_Invert2DFilter.h │ │ ├── RAS_Laplacian2DFilter.h │ │ ├── RAS_Prewitt2DFilter.h │ │ ├── RAS_Sepia2DFilter.h │ │ ├── RAS_Sharpen2DFilter.h │ │ └── RAS_Sobel2DFilter.h │ ├── RAS_OpenGLRasterizer │ │ ├── CMakeLists.txt │ │ ├── RAS_IStorage.h │ │ ├── RAS_ListRasterizer.cpp │ │ ├── RAS_ListRasterizer.h │ │ ├── RAS_OpenGLLight.cpp │ │ ├── RAS_OpenGLLight.h │ │ ├── RAS_OpenGLOffScreen.cpp │ │ ├── RAS_OpenGLOffScreen.h │ │ ├── RAS_OpenGLRasterizer.cpp │ │ ├── RAS_OpenGLRasterizer.h │ │ ├── RAS_OpenGLSync.cpp │ │ ├── RAS_OpenGLSync.h │ │ ├── RAS_StorageVA.cpp │ │ ├── RAS_StorageVA.h │ │ ├── RAS_StorageVBO.cpp │ │ └── RAS_StorageVBO.h │ ├── RAS_Polygon.cpp │ ├── RAS_Polygon.h │ ├── RAS_Rect.h │ ├── RAS_TexMatrix.h │ ├── RAS_TexVert.cpp │ ├── RAS_TexVert.h │ └── RAS_texmatrix.cpp │ ├── SceneGraph │ ├── CMakeLists.txt │ ├── SG_BBox.cpp │ ├── SG_BBox.h │ ├── SG_Controller.cpp │ ├── SG_Controller.h │ ├── SG_DList.h │ ├── SG_IObject.cpp │ ├── SG_IObject.h │ ├── SG_Node.cpp │ ├── SG_Node.h │ ├── SG_ParentRelation.h │ ├── SG_QList.h │ ├── SG_Spatial.cpp │ ├── SG_Spatial.h │ ├── SG_Tree.cpp │ └── SG_Tree.h │ └── VideoTexture │ ├── BlendType.h │ ├── CMakeLists.txt │ ├── Common.h │ ├── DeckLink.cpp │ ├── DeckLink.h │ ├── Exception.cpp │ ├── Exception.h │ ├── FilterBase.cpp │ ├── FilterBase.h │ ├── FilterBlueScreen.cpp │ ├── FilterBlueScreen.h │ ├── FilterColor.cpp │ ├── FilterColor.h │ ├── FilterNormal.cpp │ ├── FilterNormal.h │ ├── FilterSource.cpp │ ├── FilterSource.h │ ├── ImageBase.cpp │ ├── ImageBase.h │ ├── ImageBuff.cpp │ ├── ImageBuff.h │ ├── ImageMix.cpp │ ├── ImageMix.h │ ├── ImageRender.cpp │ ├── ImageRender.h │ ├── ImageViewport.cpp │ ├── ImageViewport.h │ ├── PyTypeList.cpp │ ├── PyTypeList.h │ ├── Texture.cpp │ ├── Texture.h │ ├── VideoBase.cpp │ ├── VideoBase.h │ ├── VideoDeckLink.cpp │ ├── VideoDeckLink.h │ ├── VideoFFmpeg.cpp │ ├── VideoFFmpeg.h │ └── blendVideoTex.cpp └── tests ├── CMakeLists.txt ├── check_deprecated.py ├── gtests ├── CMakeLists.txt ├── alembic │ ├── CMakeLists.txt │ ├── abc_export_test.cc │ └── abc_matrix_test.cc ├── blenlib │ ├── BLI_array_store_test.cc │ ├── BLI_array_utils_test.cc │ ├── BLI_ghash_performance_test.cc │ ├── BLI_ghash_test.cc │ ├── BLI_hash_mm2a_test.cc │ ├── BLI_listbase_test.cc │ ├── BLI_math_base_test.cc │ ├── BLI_math_color_test.cc │ ├── BLI_math_geom_test.cc │ ├── BLI_path_util_test.cc │ ├── BLI_polyfill2d_test.cc │ ├── BLI_ressource_strings.h │ ├── BLI_stack_test.cc │ ├── BLI_string_test.cc │ ├── BLI_string_utf8_test.cc │ └── CMakeLists.txt ├── bmesh │ ├── CMakeLists.txt │ └── bmesh_core_test.cc ├── guardedalloc │ ├── CMakeLists.txt │ └── guardedalloc_alignment_test.cc └── testing │ ├── CMakeLists.txt │ ├── mock_log.h │ ├── testing.h │ └── testing_main.cc └── python ├── CMakeLists.txt ├── alembic_tests.py ├── batch_import.py ├── bl_alembic_import_test.py ├── bl_keymap_completeness.py ├── bl_load_addons.py ├── bl_load_py_modules.py ├── bl_mesh_modifiers.py ├── bl_mesh_validate.py ├── bl_pyapi_bpy_path.py ├── bl_pyapi_bpy_utils_units.py ├── bl_pyapi_idprop.py ├── bl_pyapi_idprop_datablock.py ├── bl_pyapi_mathutils.py ├── bl_rna_defaults.py ├── bl_rna_manual_reference.py ├── bl_rst_completeness.py ├── bl_run_operators.py ├── bl_test.py ├── cycles_render_tests.py ├── pep8.py ├── rna_array.py ├── rna_info_dump.py └── rst_to_doctree_mini.py /.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/.arcconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/COPYING -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/GNUmakefile -------------------------------------------------------------------------------- /doc/blender_file_format/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/blender_file_format/README -------------------------------------------------------------------------------- /doc/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/doxygen/Doxyfile -------------------------------------------------------------------------------- /doc/doxygen/doxygen.extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/doxygen/doxygen.extern.h -------------------------------------------------------------------------------- /doc/doxygen/doxygen.intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/doxygen/doxygen.intern.h -------------------------------------------------------------------------------- /doc/doxygen/doxygen.main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/doxygen/doxygen.main.h -------------------------------------------------------------------------------- /doc/doxygen/doxygen.source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/doxygen/doxygen.source.h -------------------------------------------------------------------------------- /doc/doxygen/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/doxygen/footer.html -------------------------------------------------------------------------------- /doc/guides/blender-guardedalloc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/guides/blender-guardedalloc.txt -------------------------------------------------------------------------------- /doc/guides/interface_API.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/guides/interface_API.txt -------------------------------------------------------------------------------- /doc/guides/python-dev-guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/guides/python-dev-guide.txt -------------------------------------------------------------------------------- /doc/license/BL-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/license/BL-license.txt -------------------------------------------------------------------------------- /doc/license/GPL-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/license/GPL-license.txt -------------------------------------------------------------------------------- /doc/license/GPL3-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/license/GPL3-license.txt -------------------------------------------------------------------------------- /doc/license/bf-members.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/license/bf-members.txt -------------------------------------------------------------------------------- /doc/manpage/blender.1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/manpage/blender.1.py -------------------------------------------------------------------------------- /doc/python_api/examples/aud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/python_api/examples/aud.py -------------------------------------------------------------------------------- /doc/python_api/examples/blf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/python_api/examples/blf.py -------------------------------------------------------------------------------- /doc/python_api/examples/bpy.data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/python_api/examples/bpy.data.py -------------------------------------------------------------------------------- /doc/python_api/examples/bpy.ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/python_api/examples/bpy.ops.py -------------------------------------------------------------------------------- /doc/python_api/rst/bge.app.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/python_api/rst/bge.app.rst -------------------------------------------------------------------------------- /doc/python_api/rst/bge.events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/python_api/rst/bge.events.rst -------------------------------------------------------------------------------- /doc/python_api/rst/bge.logic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/python_api/rst/bge.logic.rst -------------------------------------------------------------------------------- /doc/python_api/rst/bge.render.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/python_api/rst/bge.render.rst -------------------------------------------------------------------------------- /doc/python_api/rst/bge.texture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/python_api/rst/bge.texture.rst -------------------------------------------------------------------------------- /doc/python_api/rst/bge.types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/python_api/rst/bge.types.rst -------------------------------------------------------------------------------- /doc/python_api/rst/bgl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/python_api/rst/bgl.rst -------------------------------------------------------------------------------- /doc/python_api/rst/change_log.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/python_api/rst/change_log.rst -------------------------------------------------------------------------------- /doc/python_api/rst/gpu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/python_api/rst/gpu.rst -------------------------------------------------------------------------------- /doc/python_api/rst/info_gotcha.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/python_api/rst/info_gotcha.rst -------------------------------------------------------------------------------- /doc/python_api/sphinx_doc_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/python_api/sphinx_doc_gen.py -------------------------------------------------------------------------------- /doc/python_api/sphinx_doc_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/python_api/sphinx_doc_gen.sh -------------------------------------------------------------------------------- /doc/python_api/sphinx_doc_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/doc/python_api/sphinx_doc_update.py -------------------------------------------------------------------------------- /extern/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/CMakeLists.txt -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/Array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/Array -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/Cholesky -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/CholmodSupport -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/Core -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/Dense -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/Eigen -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/Eigen2Support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/Eigen2Support -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/Eigenvalues -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/Geometry -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/Householder -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/Jacobi -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/LU -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/LeastSquares: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/LeastSquares -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/MetisSupport -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/OrderingMethods -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/PardisoSupport -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/QR -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/SPQRSupport -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/SVD -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/Sparse -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/SparseCholesky -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/SparseCore -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/SparseLU -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/SparseQR -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/StdDeque -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/StdList -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/StdVector -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extern/Eigen3/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /extern/Eigen3/README.blender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/README.blender -------------------------------------------------------------------------------- /extern/Eigen3/eigen-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/Eigen3/eigen-update.sh -------------------------------------------------------------------------------- /extern/binreloc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/binreloc/CMakeLists.txt -------------------------------------------------------------------------------- /extern/binreloc/README.blender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/binreloc/README.blender -------------------------------------------------------------------------------- /extern/binreloc/binreloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/binreloc/binreloc.c -------------------------------------------------------------------------------- /extern/binreloc/include/binreloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/binreloc/include/binreloc.h -------------------------------------------------------------------------------- /extern/bullet2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/bullet2/CMakeLists.txt -------------------------------------------------------------------------------- /extern/bullet2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/bullet2/readme.txt -------------------------------------------------------------------------------- /extern/bullet2/src/Bullet-C-Api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/bullet2/src/Bullet-C-Api.h -------------------------------------------------------------------------------- /extern/carve/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/CMakeLists.txt -------------------------------------------------------------------------------- /extern/carve/LICENSE.GPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/LICENSE.GPL2 -------------------------------------------------------------------------------- /extern/carve/LICENSE.GPL3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/LICENSE.GPL3 -------------------------------------------------------------------------------- /extern/carve/README.blender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/README.blender -------------------------------------------------------------------------------- /extern/carve/bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/bundle.sh -------------------------------------------------------------------------------- /extern/carve/carve-capi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/carve-capi.cc -------------------------------------------------------------------------------- /extern/carve/carve-capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/carve-capi.h -------------------------------------------------------------------------------- /extern/carve/carve-util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/carve-util.cc -------------------------------------------------------------------------------- /extern/carve/carve-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/carve-util.h -------------------------------------------------------------------------------- /extern/carve/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/files.txt -------------------------------------------------------------------------------- /extern/carve/include/carve/aabb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/include/carve/aabb.hpp -------------------------------------------------------------------------------- /extern/carve/include/carve/cbrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/include/carve/cbrt.h -------------------------------------------------------------------------------- /extern/carve/include/carve/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/include/carve/config.h -------------------------------------------------------------------------------- /extern/carve/include/carve/csg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/include/carve/csg.hpp -------------------------------------------------------------------------------- /extern/carve/include/carve/geom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/include/carve/geom.hpp -------------------------------------------------------------------------------- /extern/carve/include/carve/heap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/include/carve/heap.hpp -------------------------------------------------------------------------------- /extern/carve/include/carve/iobj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/include/carve/iobj.hpp -------------------------------------------------------------------------------- /extern/carve/include/carve/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/include/carve/math.hpp -------------------------------------------------------------------------------- /extern/carve/include/carve/mesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/include/carve/mesh.hpp -------------------------------------------------------------------------------- /extern/carve/include/carve/poly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/include/carve/poly.hpp -------------------------------------------------------------------------------- /extern/carve/include/carve/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/include/carve/tag.hpp -------------------------------------------------------------------------------- /extern/carve/include/carve/tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/include/carve/tree.hpp -------------------------------------------------------------------------------- /extern/carve/include/carve/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/include/carve/util.hpp -------------------------------------------------------------------------------- /extern/carve/include/carve/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/include/carve/win32.h -------------------------------------------------------------------------------- /extern/carve/lib/carve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/carve.cpp -------------------------------------------------------------------------------- /extern/carve/lib/convex_hull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/convex_hull.cpp -------------------------------------------------------------------------------- /extern/carve/lib/csg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/csg.cpp -------------------------------------------------------------------------------- /extern/carve/lib/csg_collector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/csg_collector.cpp -------------------------------------------------------------------------------- /extern/carve/lib/csg_collector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/csg_collector.hpp -------------------------------------------------------------------------------- /extern/carve/lib/csg_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/csg_data.hpp -------------------------------------------------------------------------------- /extern/carve/lib/csg_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/csg_detail.hpp -------------------------------------------------------------------------------- /extern/carve/lib/face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/face.cpp -------------------------------------------------------------------------------- /extern/carve/lib/geom2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/geom2d.cpp -------------------------------------------------------------------------------- /extern/carve/lib/geom3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/geom3d.cpp -------------------------------------------------------------------------------- /extern/carve/lib/intersect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/intersect.cpp -------------------------------------------------------------------------------- /extern/carve/lib/intersection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/intersection.cpp -------------------------------------------------------------------------------- /extern/carve/lib/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/math.cpp -------------------------------------------------------------------------------- /extern/carve/lib/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/mesh.cpp -------------------------------------------------------------------------------- /extern/carve/lib/octree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/octree.cpp -------------------------------------------------------------------------------- /extern/carve/lib/pointset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/pointset.cpp -------------------------------------------------------------------------------- /extern/carve/lib/polyhedron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/polyhedron.cpp -------------------------------------------------------------------------------- /extern/carve/lib/polyline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/polyline.cpp -------------------------------------------------------------------------------- /extern/carve/lib/tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/tag.cpp -------------------------------------------------------------------------------- /extern/carve/lib/timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/timing.cpp -------------------------------------------------------------------------------- /extern/carve/lib/triangulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/lib/triangulator.cpp -------------------------------------------------------------------------------- /extern/carve/mkfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/mkfiles.sh -------------------------------------------------------------------------------- /extern/carve/patches/files/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/patches/files/config.h -------------------------------------------------------------------------------- /extern/carve/patches/files/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/patches/files/random.h -------------------------------------------------------------------------------- /extern/carve/patches/gcc46.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/patches/gcc46.patch -------------------------------------------------------------------------------- /extern/carve/patches/includes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/patches/includes.patch -------------------------------------------------------------------------------- /extern/carve/patches/mingw.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/patches/mingw.patch -------------------------------------------------------------------------------- /extern/carve/patches/msvc_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/patches/msvc_fix.patch -------------------------------------------------------------------------------- /extern/carve/patches/random.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/patches/random.patch -------------------------------------------------------------------------------- /extern/carve/patches/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/patches/series -------------------------------------------------------------------------------- /extern/carve/patches/win32.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/carve/patches/win32.patch -------------------------------------------------------------------------------- /extern/ceres/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/CMakeLists.txt -------------------------------------------------------------------------------- /extern/ceres/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/ChangeLog -------------------------------------------------------------------------------- /extern/ceres/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/LICENSE -------------------------------------------------------------------------------- /extern/ceres/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/README -------------------------------------------------------------------------------- /extern/ceres/README.blender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/README.blender -------------------------------------------------------------------------------- /extern/ceres/bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/bundle.sh -------------------------------------------------------------------------------- /extern/ceres/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/files.txt -------------------------------------------------------------------------------- /extern/ceres/include/ceres/c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/include/ceres/c_api.h -------------------------------------------------------------------------------- /extern/ceres/include/ceres/ceres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/include/ceres/ceres.h -------------------------------------------------------------------------------- /extern/ceres/include/ceres/jet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/include/ceres/jet.h -------------------------------------------------------------------------------- /extern/ceres/include/ceres/solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/include/ceres/solver.h -------------------------------------------------------------------------------- /extern/ceres/include/ceres/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/include/ceres/types.h -------------------------------------------------------------------------------- /extern/ceres/internal/ceres/blas.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/internal/ceres/blas.cc -------------------------------------------------------------------------------- /extern/ceres/internal/ceres/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/internal/ceres/blas.h -------------------------------------------------------------------------------- /extern/ceres/internal/ceres/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/internal/ceres/casts.h -------------------------------------------------------------------------------- /extern/ceres/internal/ceres/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/internal/ceres/file.cc -------------------------------------------------------------------------------- /extern/ceres/internal/ceres/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/internal/ceres/file.h -------------------------------------------------------------------------------- /extern/ceres/internal/ceres/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/internal/ceres/graph.h -------------------------------------------------------------------------------- /extern/ceres/internal/ceres/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/internal/ceres/mutex.h -------------------------------------------------------------------------------- /extern/ceres/internal/ceres/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/internal/ceres/split.h -------------------------------------------------------------------------------- /extern/ceres/mkfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/ceres/mkfiles.sh -------------------------------------------------------------------------------- /extern/ceres/patches/series: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extern/clew/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/clew/CMakeLists.txt -------------------------------------------------------------------------------- /extern/clew/README.blender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/clew/README.blender -------------------------------------------------------------------------------- /extern/clew/include/clew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/clew/include/clew.h -------------------------------------------------------------------------------- /extern/clew/src/clew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/clew/src/clew.c -------------------------------------------------------------------------------- /extern/cuew/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/cuew/CMakeLists.txt -------------------------------------------------------------------------------- /extern/cuew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/cuew/LICENSE -------------------------------------------------------------------------------- /extern/cuew/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/cuew/README -------------------------------------------------------------------------------- /extern/cuew/README.blender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/cuew/README.blender -------------------------------------------------------------------------------- /extern/cuew/include/cuew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/cuew/include/cuew.h -------------------------------------------------------------------------------- /extern/cuew/src/cuew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/cuew/src/cuew.c -------------------------------------------------------------------------------- /extern/curve_fit_nd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/curve_fit_nd/CMakeLists.txt -------------------------------------------------------------------------------- /extern/curve_fit_nd/README.blender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/curve_fit_nd/README.blender -------------------------------------------------------------------------------- /extern/curve_fit_nd/curve_fit_nd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/curve_fit_nd/curve_fit_nd.h -------------------------------------------------------------------------------- /extern/gflags/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gflags/AUTHORS.txt -------------------------------------------------------------------------------- /extern/gflags/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gflags/CMakeLists.txt -------------------------------------------------------------------------------- /extern/gflags/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gflags/COPYING.txt -------------------------------------------------------------------------------- /extern/gflags/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gflags/ChangeLog.txt -------------------------------------------------------------------------------- /extern/gflags/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gflags/NEWS.txt -------------------------------------------------------------------------------- /extern/gflags/README.blender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gflags/README.blender -------------------------------------------------------------------------------- /extern/gflags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gflags/README.md -------------------------------------------------------------------------------- /extern/gflags/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gflags/src/config.h -------------------------------------------------------------------------------- /extern/gflags/src/gflags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gflags/src/gflags.cc -------------------------------------------------------------------------------- /extern/gflags/src/gflags/gflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gflags/src/gflags/gflags.h -------------------------------------------------------------------------------- /extern/gflags/src/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gflags/src/mutex.h -------------------------------------------------------------------------------- /extern/gflags/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gflags/src/util.h -------------------------------------------------------------------------------- /extern/gflags/src/windows_port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gflags/src/windows_port.cc -------------------------------------------------------------------------------- /extern/gflags/src/windows_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gflags/src/windows_port.h -------------------------------------------------------------------------------- /extern/glew-es/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glew-es/CMakeLists.txt -------------------------------------------------------------------------------- /extern/glew-es/include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glew-es/include/GL/eglew.h -------------------------------------------------------------------------------- /extern/glew-es/include/GL/glesew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glew-es/include/GL/glesew.h -------------------------------------------------------------------------------- /extern/glew-es/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glew-es/include/GL/glew.h -------------------------------------------------------------------------------- /extern/glew-es/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glew-es/include/GL/glxew.h -------------------------------------------------------------------------------- /extern/glew-es/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glew-es/include/GL/wglew.h -------------------------------------------------------------------------------- /extern/glew-es/src/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glew-es/src/glew.c -------------------------------------------------------------------------------- /extern/glew/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glew/CMakeLists.txt -------------------------------------------------------------------------------- /extern/glew/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glew/include/GL/glew.h -------------------------------------------------------------------------------- /extern/glew/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glew/include/GL/glxew.h -------------------------------------------------------------------------------- /extern/glew/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glew/include/GL/wglew.h -------------------------------------------------------------------------------- /extern/glew/src/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glew/src/glew.c -------------------------------------------------------------------------------- /extern/glog/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/AUTHORS -------------------------------------------------------------------------------- /extern/glog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/CMakeLists.txt -------------------------------------------------------------------------------- /extern/glog/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/COPYING -------------------------------------------------------------------------------- /extern/glog/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/ChangeLog -------------------------------------------------------------------------------- /extern/glog/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extern/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/README -------------------------------------------------------------------------------- /extern/glog/README.blender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/README.blender -------------------------------------------------------------------------------- /extern/glog/src/base/googleinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/base/googleinit.h -------------------------------------------------------------------------------- /extern/glog/src/base/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/base/mutex.h -------------------------------------------------------------------------------- /extern/glog/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/config.h -------------------------------------------------------------------------------- /extern/glog/src/config_freebsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/config_freebsd.h -------------------------------------------------------------------------------- /extern/glog/src/config_hurd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/config_hurd.h -------------------------------------------------------------------------------- /extern/glog/src/config_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/config_linux.h -------------------------------------------------------------------------------- /extern/glog/src/config_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/config_mac.h -------------------------------------------------------------------------------- /extern/glog/src/demangle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/demangle.cc -------------------------------------------------------------------------------- /extern/glog/src/demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/demangle.h -------------------------------------------------------------------------------- /extern/glog/src/glog/log_severity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/glog/log_severity.h -------------------------------------------------------------------------------- /extern/glog/src/glog/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/glog/logging.h -------------------------------------------------------------------------------- /extern/glog/src/glog/raw_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/glog/raw_logging.h -------------------------------------------------------------------------------- /extern/glog/src/glog/vlog_is_on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/glog/vlog_is_on.h -------------------------------------------------------------------------------- /extern/glog/src/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/logging.cc -------------------------------------------------------------------------------- /extern/glog/src/raw_logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/raw_logging.cc -------------------------------------------------------------------------------- /extern/glog/src/signalhandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/signalhandler.cc -------------------------------------------------------------------------------- /extern/glog/src/stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/stacktrace.h -------------------------------------------------------------------------------- /extern/glog/src/symbolize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/symbolize.cc -------------------------------------------------------------------------------- /extern/glog/src/symbolize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/symbolize.h -------------------------------------------------------------------------------- /extern/glog/src/utilities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/utilities.cc -------------------------------------------------------------------------------- /extern/glog/src/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/utilities.h -------------------------------------------------------------------------------- /extern/glog/src/vlog_is_on.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/vlog_is_on.cc -------------------------------------------------------------------------------- /extern/glog/src/windows/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/windows/config.h -------------------------------------------------------------------------------- /extern/glog/src/windows/port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/windows/port.cc -------------------------------------------------------------------------------- /extern/glog/src/windows/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/glog/src/windows/port.h -------------------------------------------------------------------------------- /extern/gmock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gmock/CMakeLists.txt -------------------------------------------------------------------------------- /extern/gmock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gmock/LICENSE -------------------------------------------------------------------------------- /extern/gmock/README.blender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gmock/README.blender -------------------------------------------------------------------------------- /extern/gmock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gmock/README.md -------------------------------------------------------------------------------- /extern/gmock/include/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gmock/include/gmock/gmock.h -------------------------------------------------------------------------------- /extern/gmock/src/gmock-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gmock/src/gmock-all.cc -------------------------------------------------------------------------------- /extern/gmock/src/gmock-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gmock/src/gmock-matchers.cc -------------------------------------------------------------------------------- /extern/gmock/src/gmock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gmock/src/gmock.cc -------------------------------------------------------------------------------- /extern/gmock/src/gmock_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gmock/src/gmock_main.cc -------------------------------------------------------------------------------- /extern/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /extern/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gtest/LICENSE -------------------------------------------------------------------------------- /extern/gtest/README.blender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gtest/README.blender -------------------------------------------------------------------------------- /extern/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /extern/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /extern/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /extern/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /extern/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /extern/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /extern/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gtest/src/gtest.cc -------------------------------------------------------------------------------- /extern/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /extern/libopenjpeg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/CMakeLists.txt -------------------------------------------------------------------------------- /extern/libopenjpeg/README.blender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/README.blender -------------------------------------------------------------------------------- /extern/libopenjpeg/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/bio.c -------------------------------------------------------------------------------- /extern/libopenjpeg/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/bio.h -------------------------------------------------------------------------------- /extern/libopenjpeg/cidx_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/cidx_manager.c -------------------------------------------------------------------------------- /extern/libopenjpeg/cidx_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/cidx_manager.h -------------------------------------------------------------------------------- /extern/libopenjpeg/cio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/cio.c -------------------------------------------------------------------------------- /extern/libopenjpeg/cio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/cio.h -------------------------------------------------------------------------------- /extern/libopenjpeg/dwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/dwt.c -------------------------------------------------------------------------------- /extern/libopenjpeg/dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/dwt.h -------------------------------------------------------------------------------- /extern/libopenjpeg/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/event.c -------------------------------------------------------------------------------- /extern/libopenjpeg/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/event.h -------------------------------------------------------------------------------- /extern/libopenjpeg/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/fix.h -------------------------------------------------------------------------------- /extern/libopenjpeg/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/image.c -------------------------------------------------------------------------------- /extern/libopenjpeg/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/image.h -------------------------------------------------------------------------------- /extern/libopenjpeg/int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/int.h -------------------------------------------------------------------------------- /extern/libopenjpeg/j2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/j2k.c -------------------------------------------------------------------------------- /extern/libopenjpeg/j2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/j2k.h -------------------------------------------------------------------------------- /extern/libopenjpeg/j2k_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/j2k_lib.c -------------------------------------------------------------------------------- /extern/libopenjpeg/j2k_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/j2k_lib.h -------------------------------------------------------------------------------- /extern/libopenjpeg/jp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/jp2.c -------------------------------------------------------------------------------- /extern/libopenjpeg/jp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/jp2.h -------------------------------------------------------------------------------- /extern/libopenjpeg/jpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/jpt.c -------------------------------------------------------------------------------- /extern/libopenjpeg/jpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/jpt.h -------------------------------------------------------------------------------- /extern/libopenjpeg/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/license.txt -------------------------------------------------------------------------------- /extern/libopenjpeg/mct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/mct.c -------------------------------------------------------------------------------- /extern/libopenjpeg/mct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/mct.h -------------------------------------------------------------------------------- /extern/libopenjpeg/mqc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/mqc.c -------------------------------------------------------------------------------- /extern/libopenjpeg/mqc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/mqc.h -------------------------------------------------------------------------------- /extern/libopenjpeg/openjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/openjpeg.c -------------------------------------------------------------------------------- /extern/libopenjpeg/openjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/openjpeg.h -------------------------------------------------------------------------------- /extern/libopenjpeg/opj_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/opj_config.h -------------------------------------------------------------------------------- /extern/libopenjpeg/opj_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/opj_includes.h -------------------------------------------------------------------------------- /extern/libopenjpeg/opj_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/opj_malloc.h -------------------------------------------------------------------------------- /extern/libopenjpeg/phix_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/phix_manager.c -------------------------------------------------------------------------------- /extern/libopenjpeg/pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/pi.c -------------------------------------------------------------------------------- /extern/libopenjpeg/pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/pi.h -------------------------------------------------------------------------------- /extern/libopenjpeg/ppix_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/ppix_manager.c -------------------------------------------------------------------------------- /extern/libopenjpeg/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/raw.c -------------------------------------------------------------------------------- /extern/libopenjpeg/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/raw.h -------------------------------------------------------------------------------- /extern/libopenjpeg/t1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/t1.c -------------------------------------------------------------------------------- /extern/libopenjpeg/t1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/t1.h -------------------------------------------------------------------------------- /extern/libopenjpeg/t1_luts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/t1_luts.h -------------------------------------------------------------------------------- /extern/libopenjpeg/t2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/t2.c -------------------------------------------------------------------------------- /extern/libopenjpeg/t2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/t2.h -------------------------------------------------------------------------------- /extern/libopenjpeg/tcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/tcd.c -------------------------------------------------------------------------------- /extern/libopenjpeg/tcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/tcd.h -------------------------------------------------------------------------------- /extern/libopenjpeg/tgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/tgt.c -------------------------------------------------------------------------------- /extern/libopenjpeg/tgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/tgt.h -------------------------------------------------------------------------------- /extern/libopenjpeg/thix_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/thix_manager.c -------------------------------------------------------------------------------- /extern/libopenjpeg/tpix_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/libopenjpeg/tpix_manager.c -------------------------------------------------------------------------------- /extern/lzma/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzma/Alloc.c -------------------------------------------------------------------------------- /extern/lzma/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzma/Alloc.h -------------------------------------------------------------------------------- /extern/lzma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzma/CMakeLists.txt -------------------------------------------------------------------------------- /extern/lzma/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzma/LzFind.c -------------------------------------------------------------------------------- /extern/lzma/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzma/LzFind.h -------------------------------------------------------------------------------- /extern/lzma/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzma/LzHash.h -------------------------------------------------------------------------------- /extern/lzma/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzma/LzmaDec.c -------------------------------------------------------------------------------- /extern/lzma/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzma/LzmaDec.h -------------------------------------------------------------------------------- /extern/lzma/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzma/LzmaEnc.c -------------------------------------------------------------------------------- /extern/lzma/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzma/LzmaEnc.h -------------------------------------------------------------------------------- /extern/lzma/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzma/LzmaLib.c -------------------------------------------------------------------------------- /extern/lzma/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzma/LzmaLib.h -------------------------------------------------------------------------------- /extern/lzma/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzma/Types.h -------------------------------------------------------------------------------- /extern/lzma/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzma/history.txt -------------------------------------------------------------------------------- /extern/lzma/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzma/lzma.txt -------------------------------------------------------------------------------- /extern/lzo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzo/CMakeLists.txt -------------------------------------------------------------------------------- /extern/lzo/minilzo/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzo/minilzo/COPYING -------------------------------------------------------------------------------- /extern/lzo/minilzo/README.LZO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzo/minilzo/README.LZO -------------------------------------------------------------------------------- /extern/lzo/minilzo/lzoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzo/minilzo/lzoconf.h -------------------------------------------------------------------------------- /extern/lzo/minilzo/lzodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzo/minilzo/lzodefs.h -------------------------------------------------------------------------------- /extern/lzo/minilzo/minilzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzo/minilzo/minilzo.c -------------------------------------------------------------------------------- /extern/lzo/minilzo/minilzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/lzo/minilzo/minilzo.h -------------------------------------------------------------------------------- /extern/rangetree/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/rangetree/CMakeLists.txt -------------------------------------------------------------------------------- /extern/rangetree/README.blender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/rangetree/README.blender -------------------------------------------------------------------------------- /extern/rangetree/range_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/rangetree/range_tree.h -------------------------------------------------------------------------------- /extern/recastnavigation/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/recastnavigation/License.txt -------------------------------------------------------------------------------- /extern/recastnavigation/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/recastnavigation/Readme.txt -------------------------------------------------------------------------------- /extern/sdlew/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/sdlew/CMakeLists.txt -------------------------------------------------------------------------------- /extern/sdlew/README.blender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/sdlew/README.blender -------------------------------------------------------------------------------- /extern/sdlew/include/SDL2/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/sdlew/include/SDL2/SDL.h -------------------------------------------------------------------------------- /extern/sdlew/include/SDL2/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/sdlew/include/SDL2/SDL_log.h -------------------------------------------------------------------------------- /extern/sdlew/include/SDL2/SDL_types.h: -------------------------------------------------------------------------------- 1 | 2 | #include "SDL_stdinc.h" 3 | -------------------------------------------------------------------------------- /extern/sdlew/include/sdlew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/sdlew/include/sdlew.h -------------------------------------------------------------------------------- /extern/sdlew/src/sdlew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/sdlew/src/sdlew.c -------------------------------------------------------------------------------- /extern/sdlew/src/sdlew.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/sdlew/src/sdlew.map -------------------------------------------------------------------------------- /extern/wcwidth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/wcwidth/CMakeLists.txt -------------------------------------------------------------------------------- /extern/wcwidth/README.blender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/wcwidth/README.blender -------------------------------------------------------------------------------- /extern/wcwidth/wcwidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/wcwidth/wcwidth.c -------------------------------------------------------------------------------- /extern/wcwidth/wcwidth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/wcwidth/wcwidth.h -------------------------------------------------------------------------------- /extern/xdnd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/xdnd/CMakeLists.txt -------------------------------------------------------------------------------- /extern/xdnd/README.blender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/xdnd/README.blender -------------------------------------------------------------------------------- /extern/xdnd/xdnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/xdnd/xdnd.c -------------------------------------------------------------------------------- /extern/xdnd/xdnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/extern/xdnd/xdnd.h -------------------------------------------------------------------------------- /intern/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/CMakeLists.txt -------------------------------------------------------------------------------- /intern/atomic/atomic_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/atomic/atomic_ops.h -------------------------------------------------------------------------------- /intern/audaspace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/audaspace/CMakeLists.txt -------------------------------------------------------------------------------- /intern/audaspace/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/audaspace/COPYING -------------------------------------------------------------------------------- /intern/audaspace/Python/AUD_PyAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/audaspace/Python/AUD_PyAPI.h -------------------------------------------------------------------------------- /intern/audaspace/intern/AUD_C-API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/audaspace/intern/AUD_C-API.h -------------------------------------------------------------------------------- /intern/audaspace/intern/AUD_Mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/audaspace/intern/AUD_Mixer.h -------------------------------------------------------------------------------- /intern/audaspace/intern/AUD_Set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/audaspace/intern/AUD_Set.cpp -------------------------------------------------------------------------------- /intern/audaspace/intern/AUD_Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/audaspace/intern/AUD_Set.h -------------------------------------------------------------------------------- /intern/audaspace/intern/AUD_Space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/audaspace/intern/AUD_Space.h -------------------------------------------------------------------------------- /intern/container/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/container/CMakeLists.txt -------------------------------------------------------------------------------- /intern/container/CTR_HashedPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/container/CTR_HashedPtr.h -------------------------------------------------------------------------------- /intern/container/CTR_Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/container/CTR_Map.h -------------------------------------------------------------------------------- /intern/cycles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/CMakeLists.txt -------------------------------------------------------------------------------- /intern/cycles/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/app/CMakeLists.txt -------------------------------------------------------------------------------- /intern/cycles/app/cycles_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/app/cycles_server.cpp -------------------------------------------------------------------------------- /intern/cycles/app/cycles_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/app/cycles_xml.cpp -------------------------------------------------------------------------------- /intern/cycles/app/cycles_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/app/cycles_xml.h -------------------------------------------------------------------------------- /intern/cycles/blender/CCL_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/blender/CCL_api.h -------------------------------------------------------------------------------- /intern/cycles/blender/addon/osl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/blender/addon/osl.py -------------------------------------------------------------------------------- /intern/cycles/blender/addon/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/blender/addon/ui.py -------------------------------------------------------------------------------- /intern/cycles/bvh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/CMakeLists.txt -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh.cpp -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh.h -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh2.cpp -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh2.h -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh4.cpp -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh4.h -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh_binning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh_binning.cpp -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh_binning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh_binning.h -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh_build.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh_build.cpp -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh_build.h -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh_node.cpp -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh_node.h -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh_params.h -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh_sort.cpp -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh_sort.h -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh_split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh_split.cpp -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh_split.h -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh_unaligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh_unaligned.cpp -------------------------------------------------------------------------------- /intern/cycles/bvh/bvh_unaligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/bvh/bvh_unaligned.h -------------------------------------------------------------------------------- /intern/cycles/device/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/device/CMakeLists.txt -------------------------------------------------------------------------------- /intern/cycles/device/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/device/device.cpp -------------------------------------------------------------------------------- /intern/cycles/device/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/device/device.h -------------------------------------------------------------------------------- /intern/cycles/device/device_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/device/device_cpu.cpp -------------------------------------------------------------------------------- /intern/cycles/device/device_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/device/device_task.h -------------------------------------------------------------------------------- /intern/cycles/doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | add_subdirectory(license) 3 | -------------------------------------------------------------------------------- /intern/cycles/doc/license/Boost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/doc/license/Boost.txt -------------------------------------------------------------------------------- /intern/cycles/doc/license/ILM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/doc/license/ILM.txt -------------------------------------------------------------------------------- /intern/cycles/doc/license/OSL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/doc/license/OSL.txt -------------------------------------------------------------------------------- /intern/cycles/doc/license/Sobol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/doc/license/Sobol.txt -------------------------------------------------------------------------------- /intern/cycles/graph/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/graph/CMakeLists.txt -------------------------------------------------------------------------------- /intern/cycles/graph/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/graph/node.cpp -------------------------------------------------------------------------------- /intern/cycles/graph/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/graph/node.h -------------------------------------------------------------------------------- /intern/cycles/graph/node_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/graph/node_enum.h -------------------------------------------------------------------------------- /intern/cycles/graph/node_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/graph/node_type.cpp -------------------------------------------------------------------------------- /intern/cycles/graph/node_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/graph/node_type.h -------------------------------------------------------------------------------- /intern/cycles/graph/node_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/graph/node_xml.cpp -------------------------------------------------------------------------------- /intern/cycles/graph/node_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/graph/node_xml.h -------------------------------------------------------------------------------- /intern/cycles/kernel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/CMakeLists.txt -------------------------------------------------------------------------------- /intern/cycles/kernel/bvh/bvh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/bvh/bvh.h -------------------------------------------------------------------------------- /intern/cycles/kernel/closure/bsdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/closure/bsdf.h -------------------------------------------------------------------------------- /intern/cycles/kernel/geom/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/geom/geom.h -------------------------------------------------------------------------------- /intern/cycles/kernel/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/kernel.h -------------------------------------------------------------------------------- /intern/cycles/kernel/kernel_bake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/kernel_bake.h -------------------------------------------------------------------------------- /intern/cycles/kernel/kernel_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/kernel_debug.h -------------------------------------------------------------------------------- /intern/cycles/kernel/kernel_film.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/kernel_film.h -------------------------------------------------------------------------------- /intern/cycles/kernel/kernel_light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/kernel_light.h -------------------------------------------------------------------------------- /intern/cycles/kernel/kernel_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/kernel_math.h -------------------------------------------------------------------------------- /intern/cycles/kernel/kernel_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/kernel_path.h -------------------------------------------------------------------------------- /intern/cycles/kernel/kernel_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/kernel_types.h -------------------------------------------------------------------------------- /intern/cycles/kernel/svm/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/svm/svm.h -------------------------------------------------------------------------------- /intern/cycles/kernel/svm/svm_aov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/svm/svm_aov.h -------------------------------------------------------------------------------- /intern/cycles/kernel/svm/svm_bump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/svm/svm_bump.h -------------------------------------------------------------------------------- /intern/cycles/kernel/svm/svm_hsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/svm/svm_hsv.h -------------------------------------------------------------------------------- /intern/cycles/kernel/svm/svm_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/svm/svm_math.h -------------------------------------------------------------------------------- /intern/cycles/kernel/svm/svm_mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/svm/svm_mix.h -------------------------------------------------------------------------------- /intern/cycles/kernel/svm/svm_ramp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/svm/svm_ramp.h -------------------------------------------------------------------------------- /intern/cycles/kernel/svm/svm_sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/svm/svm_sky.h -------------------------------------------------------------------------------- /intern/cycles/kernel/svm/svm_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/kernel/svm/svm_wave.h -------------------------------------------------------------------------------- /intern/cycles/render/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/CMakeLists.txt -------------------------------------------------------------------------------- /intern/cycles/render/attribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/attribute.cpp -------------------------------------------------------------------------------- /intern/cycles/render/attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/attribute.h -------------------------------------------------------------------------------- /intern/cycles/render/background.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/background.cpp -------------------------------------------------------------------------------- /intern/cycles/render/background.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/background.h -------------------------------------------------------------------------------- /intern/cycles/render/bake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/bake.cpp -------------------------------------------------------------------------------- /intern/cycles/render/bake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/bake.h -------------------------------------------------------------------------------- /intern/cycles/render/buffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/buffers.cpp -------------------------------------------------------------------------------- /intern/cycles/render/buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/buffers.h -------------------------------------------------------------------------------- /intern/cycles/render/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/camera.cpp -------------------------------------------------------------------------------- /intern/cycles/render/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/camera.h -------------------------------------------------------------------------------- /intern/cycles/render/coverage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/coverage.cpp -------------------------------------------------------------------------------- /intern/cycles/render/coverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/coverage.h -------------------------------------------------------------------------------- /intern/cycles/render/curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/curves.cpp -------------------------------------------------------------------------------- /intern/cycles/render/curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/curves.h -------------------------------------------------------------------------------- /intern/cycles/render/film.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/film.cpp -------------------------------------------------------------------------------- /intern/cycles/render/film.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/film.h -------------------------------------------------------------------------------- /intern/cycles/render/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/graph.cpp -------------------------------------------------------------------------------- /intern/cycles/render/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/graph.h -------------------------------------------------------------------------------- /intern/cycles/render/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/image.cpp -------------------------------------------------------------------------------- /intern/cycles/render/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/image.h -------------------------------------------------------------------------------- /intern/cycles/render/integrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/integrator.cpp -------------------------------------------------------------------------------- /intern/cycles/render/integrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/integrator.h -------------------------------------------------------------------------------- /intern/cycles/render/light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/light.cpp -------------------------------------------------------------------------------- /intern/cycles/render/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/light.h -------------------------------------------------------------------------------- /intern/cycles/render/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/mesh.cpp -------------------------------------------------------------------------------- /intern/cycles/render/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/mesh.h -------------------------------------------------------------------------------- /intern/cycles/render/nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/nodes.cpp -------------------------------------------------------------------------------- /intern/cycles/render/nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/nodes.h -------------------------------------------------------------------------------- /intern/cycles/render/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/object.cpp -------------------------------------------------------------------------------- /intern/cycles/render/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/object.h -------------------------------------------------------------------------------- /intern/cycles/render/osl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/osl.cpp -------------------------------------------------------------------------------- /intern/cycles/render/osl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/osl.h -------------------------------------------------------------------------------- /intern/cycles/render/particles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/particles.cpp -------------------------------------------------------------------------------- /intern/cycles/render/particles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/particles.h -------------------------------------------------------------------------------- /intern/cycles/render/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/scene.cpp -------------------------------------------------------------------------------- /intern/cycles/render/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/scene.h -------------------------------------------------------------------------------- /intern/cycles/render/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/session.cpp -------------------------------------------------------------------------------- /intern/cycles/render/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/session.h -------------------------------------------------------------------------------- /intern/cycles/render/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/shader.cpp -------------------------------------------------------------------------------- /intern/cycles/render/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/shader.h -------------------------------------------------------------------------------- /intern/cycles/render/sobol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/sobol.cpp -------------------------------------------------------------------------------- /intern/cycles/render/sobol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/sobol.h -------------------------------------------------------------------------------- /intern/cycles/render/svm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/svm.cpp -------------------------------------------------------------------------------- /intern/cycles/render/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/svm.h -------------------------------------------------------------------------------- /intern/cycles/render/tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/tables.cpp -------------------------------------------------------------------------------- /intern/cycles/render/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/tables.h -------------------------------------------------------------------------------- /intern/cycles/render/tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/tile.cpp -------------------------------------------------------------------------------- /intern/cycles/render/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/render/tile.h -------------------------------------------------------------------------------- /intern/cycles/subd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/subd/CMakeLists.txt -------------------------------------------------------------------------------- /intern/cycles/subd/subd_dice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/subd/subd_dice.cpp -------------------------------------------------------------------------------- /intern/cycles/subd/subd_dice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/subd/subd_dice.h -------------------------------------------------------------------------------- /intern/cycles/subd/subd_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/subd/subd_patch.cpp -------------------------------------------------------------------------------- /intern/cycles/subd/subd_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/subd/subd_patch.h -------------------------------------------------------------------------------- /intern/cycles/subd/subd_split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/subd/subd_split.cpp -------------------------------------------------------------------------------- /intern/cycles/subd/subd_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/subd/subd_split.h -------------------------------------------------------------------------------- /intern/cycles/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/test/CMakeLists.txt -------------------------------------------------------------------------------- /intern/cycles/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/CMakeLists.txt -------------------------------------------------------------------------------- /intern/cycles/util/util_algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_algorithm.h -------------------------------------------------------------------------------- /intern/cycles/util/util_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_args.h -------------------------------------------------------------------------------- /intern/cycles/util/util_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_atomic.h -------------------------------------------------------------------------------- /intern/cycles/util/util_avxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_avxf.h -------------------------------------------------------------------------------- /intern/cycles/util/util_boundbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_boundbox.h -------------------------------------------------------------------------------- /intern/cycles/util/util_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_color.h -------------------------------------------------------------------------------- /intern/cycles/util/util_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_debug.cpp -------------------------------------------------------------------------------- /intern/cycles/util/util_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_debug.h -------------------------------------------------------------------------------- /intern/cycles/util/util_foreach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_foreach.h -------------------------------------------------------------------------------- /intern/cycles/util/util_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_function.h -------------------------------------------------------------------------------- /intern/cycles/util/util_half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_half.h -------------------------------------------------------------------------------- /intern/cycles/util/util_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_hash.h -------------------------------------------------------------------------------- /intern/cycles/util/util_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_image.h -------------------------------------------------------------------------------- /intern/cycles/util/util_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_list.h -------------------------------------------------------------------------------- /intern/cycles/util/util_logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_logging.cpp -------------------------------------------------------------------------------- /intern/cycles/util/util_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_logging.h -------------------------------------------------------------------------------- /intern/cycles/util/util_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_map.h -------------------------------------------------------------------------------- /intern/cycles/util/util_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_math.h -------------------------------------------------------------------------------- /intern/cycles/util/util_math_cdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_math_cdf.h -------------------------------------------------------------------------------- /intern/cycles/util/util_math_fast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_math_fast.h -------------------------------------------------------------------------------- /intern/cycles/util/util_md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_md5.cpp -------------------------------------------------------------------------------- /intern/cycles/util/util_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_md5.h -------------------------------------------------------------------------------- /intern/cycles/util/util_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_opengl.h -------------------------------------------------------------------------------- /intern/cycles/util/util_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_param.h -------------------------------------------------------------------------------- /intern/cycles/util/util_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_path.cpp -------------------------------------------------------------------------------- /intern/cycles/util/util_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_path.h -------------------------------------------------------------------------------- /intern/cycles/util/util_progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_progress.h -------------------------------------------------------------------------------- /intern/cycles/util/util_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_queue.h -------------------------------------------------------------------------------- /intern/cycles/util/util_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_set.h -------------------------------------------------------------------------------- /intern/cycles/util/util_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_simd.cpp -------------------------------------------------------------------------------- /intern/cycles/util/util_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_simd.h -------------------------------------------------------------------------------- /intern/cycles/util/util_sky_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_sky_model.h -------------------------------------------------------------------------------- /intern/cycles/util/util_sseb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_sseb.h -------------------------------------------------------------------------------- /intern/cycles/util/util_ssef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_ssef.h -------------------------------------------------------------------------------- /intern/cycles/util/util_ssei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_ssei.h -------------------------------------------------------------------------------- /intern/cycles/util/util_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_stats.h -------------------------------------------------------------------------------- /intern/cycles/util/util_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_string.cpp -------------------------------------------------------------------------------- /intern/cycles/util/util_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_string.h -------------------------------------------------------------------------------- /intern/cycles/util/util_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_system.cpp -------------------------------------------------------------------------------- /intern/cycles/util/util_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_system.h -------------------------------------------------------------------------------- /intern/cycles/util/util_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_task.cpp -------------------------------------------------------------------------------- /intern/cycles/util/util_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_task.h -------------------------------------------------------------------------------- /intern/cycles/util/util_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_texture.h -------------------------------------------------------------------------------- /intern/cycles/util/util_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_thread.cpp -------------------------------------------------------------------------------- /intern/cycles/util/util_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_thread.h -------------------------------------------------------------------------------- /intern/cycles/util/util_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_time.cpp -------------------------------------------------------------------------------- /intern/cycles/util/util_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_time.h -------------------------------------------------------------------------------- /intern/cycles/util/util_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_transform.h -------------------------------------------------------------------------------- /intern/cycles/util/util_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_types.h -------------------------------------------------------------------------------- /intern/cycles/util/util_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_vector.h -------------------------------------------------------------------------------- /intern/cycles/util/util_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_version.h -------------------------------------------------------------------------------- /intern/cycles/util/util_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_view.cpp -------------------------------------------------------------------------------- /intern/cycles/util/util_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_view.h -------------------------------------------------------------------------------- /intern/cycles/util/util_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_windows.cpp -------------------------------------------------------------------------------- /intern/cycles/util/util_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_windows.h -------------------------------------------------------------------------------- /intern/cycles/util/util_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/cycles/util/util_xml.h -------------------------------------------------------------------------------- /intern/decklink/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/decklink/CMakeLists.txt -------------------------------------------------------------------------------- /intern/decklink/DeckLinkAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/decklink/DeckLinkAPI.cpp -------------------------------------------------------------------------------- /intern/decklink/DeckLinkAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/decklink/DeckLinkAPI.h -------------------------------------------------------------------------------- /intern/decklink/linux/DeckLinkAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/decklink/linux/DeckLinkAPI.h -------------------------------------------------------------------------------- /intern/decklink/linux/LinuxCOM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/decklink/linux/LinuxCOM.h -------------------------------------------------------------------------------- /intern/decklink/win/DeckLinkAPI_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/decklink/win/DeckLinkAPI_h.h -------------------------------------------------------------------------------- /intern/decklink/win/DeckLinkAPI_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/decklink/win/DeckLinkAPI_i.c -------------------------------------------------------------------------------- /intern/dualcon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/dualcon/CMakeLists.txt -------------------------------------------------------------------------------- /intern/dualcon/dualcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/dualcon/dualcon.h -------------------------------------------------------------------------------- /intern/dualcon/intern/GeoCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/dualcon/intern/GeoCommon.h -------------------------------------------------------------------------------- /intern/dualcon/intern/ModelReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/dualcon/intern/ModelReader.h -------------------------------------------------------------------------------- /intern/dualcon/intern/Projections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/dualcon/intern/Projections.h -------------------------------------------------------------------------------- /intern/dualcon/intern/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/dualcon/intern/Queue.h -------------------------------------------------------------------------------- /intern/dualcon/intern/cubes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/dualcon/intern/cubes.h -------------------------------------------------------------------------------- /intern/dualcon/intern/octree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/dualcon/intern/octree.cpp -------------------------------------------------------------------------------- /intern/dualcon/intern/octree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/dualcon/intern/octree.h -------------------------------------------------------------------------------- /intern/dualcon/intern/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/dualcon/intern/readme.txt -------------------------------------------------------------------------------- /intern/eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/eigen/CMakeLists.txt -------------------------------------------------------------------------------- /intern/eigen/eigen_capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/eigen/eigen_capi.h -------------------------------------------------------------------------------- /intern/eigen/intern/eigenvalues.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/eigen/intern/eigenvalues.cc -------------------------------------------------------------------------------- /intern/eigen/intern/eigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/eigen/intern/eigenvalues.h -------------------------------------------------------------------------------- /intern/eigen/intern/linear_solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/eigen/intern/linear_solver.h -------------------------------------------------------------------------------- /intern/eigen/intern/svd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/eigen/intern/svd.cc -------------------------------------------------------------------------------- /intern/eigen/intern/svd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/eigen/intern/svd.h -------------------------------------------------------------------------------- /intern/elbeem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/CMakeLists.txt -------------------------------------------------------------------------------- /intern/elbeem/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/COPYING -------------------------------------------------------------------------------- /intern/elbeem/COPYING_trimesh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/COPYING_trimesh2 -------------------------------------------------------------------------------- /intern/elbeem/extern/LBM_fluidsim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/extern/LBM_fluidsim.h -------------------------------------------------------------------------------- /intern/elbeem/extern/elbeem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/extern/elbeem.h -------------------------------------------------------------------------------- /intern/elbeem/intern/attributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/attributes.cpp -------------------------------------------------------------------------------- /intern/elbeem/intern/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/attributes.h -------------------------------------------------------------------------------- /intern/elbeem/intern/elbeem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/elbeem.cpp -------------------------------------------------------------------------------- /intern/elbeem/intern/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/globals.h -------------------------------------------------------------------------------- /intern/elbeem/intern/isosurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/isosurface.cpp -------------------------------------------------------------------------------- /intern/elbeem/intern/isosurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/isosurface.h -------------------------------------------------------------------------------- /intern/elbeem/intern/loop_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/loop_tools.h -------------------------------------------------------------------------------- /intern/elbeem/intern/mvmcoords.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/mvmcoords.cpp -------------------------------------------------------------------------------- /intern/elbeem/intern/mvmcoords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/mvmcoords.h -------------------------------------------------------------------------------- /intern/elbeem/intern/ntl_bsptree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/ntl_bsptree.h -------------------------------------------------------------------------------- /intern/elbeem/intern/ntl_lighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/ntl_lighting.h -------------------------------------------------------------------------------- /intern/elbeem/intern/ntl_matrices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/ntl_matrices.h -------------------------------------------------------------------------------- /intern/elbeem/intern/ntl_ray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/ntl_ray.cpp -------------------------------------------------------------------------------- /intern/elbeem/intern/ntl_ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/ntl_ray.h -------------------------------------------------------------------------------- /intern/elbeem/intern/ntl_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/ntl_world.cpp -------------------------------------------------------------------------------- /intern/elbeem/intern/ntl_world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/ntl_world.h -------------------------------------------------------------------------------- /intern/elbeem/intern/paraloopend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/paraloopend.h -------------------------------------------------------------------------------- /intern/elbeem/intern/parametrizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/parametrizer.h -------------------------------------------------------------------------------- /intern/elbeem/intern/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/elbeem/intern/utilities.h -------------------------------------------------------------------------------- /intern/ffmpeg/ffmpeg_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/ffmpeg/ffmpeg_compat.h -------------------------------------------------------------------------------- /intern/ghost/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/ghost/CMakeLists.txt -------------------------------------------------------------------------------- /intern/ghost/GHOST_C-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/ghost/GHOST_C-api.h -------------------------------------------------------------------------------- /intern/ghost/GHOST_IEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/ghost/GHOST_IEvent.h -------------------------------------------------------------------------------- /intern/ghost/GHOST_ISystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/ghost/GHOST_ISystem.h -------------------------------------------------------------------------------- /intern/ghost/GHOST_ISystemPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/ghost/GHOST_ISystemPaths.h -------------------------------------------------------------------------------- /intern/ghost/GHOST_ITimerTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/ghost/GHOST_ITimerTask.h -------------------------------------------------------------------------------- /intern/ghost/GHOST_IWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/ghost/GHOST_IWindow.h -------------------------------------------------------------------------------- /intern/ghost/GHOST_Path-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/ghost/GHOST_Path-api.h -------------------------------------------------------------------------------- /intern/ghost/GHOST_Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/ghost/GHOST_Rect.h -------------------------------------------------------------------------------- /intern/ghost/GHOST_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/ghost/GHOST_Types.h -------------------------------------------------------------------------------- /intern/ghost/intern/GHOST_Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/ghost/intern/GHOST_Debug.h -------------------------------------------------------------------------------- /intern/ghost/intern/GHOST_Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/ghost/intern/GHOST_Event.h -------------------------------------------------------------------------------- /intern/ghost/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/ghost/test/CMakeLists.txt -------------------------------------------------------------------------------- /intern/ghost/test/multitest/GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/ghost/test/multitest/GL.h -------------------------------------------------------------------------------- /intern/glew-mx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/glew-mx/CMakeLists.txt -------------------------------------------------------------------------------- /intern/glew-mx/glew-mx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/glew-mx/glew-mx.h -------------------------------------------------------------------------------- /intern/glew-mx/intern/glew-mx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/glew-mx/intern/glew-mx.c -------------------------------------------------------------------------------- /intern/gpudirect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/gpudirect/CMakeLists.txt -------------------------------------------------------------------------------- /intern/gpudirect/dvpapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/gpudirect/dvpapi.cpp -------------------------------------------------------------------------------- /intern/gpudirect/dvpapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/gpudirect/dvpapi.h -------------------------------------------------------------------------------- /intern/guardedalloc/mmap_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/guardedalloc/mmap_win.h -------------------------------------------------------------------------------- /intern/iksolver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/iksolver/CMakeLists.txt -------------------------------------------------------------------------------- /intern/iksolver/intern/IK_Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/iksolver/intern/IK_Math.h -------------------------------------------------------------------------------- /intern/iksolver/intern/IK_QTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/iksolver/intern/IK_QTask.h -------------------------------------------------------------------------------- /intern/itasc/Armature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/Armature.cpp -------------------------------------------------------------------------------- /intern/itasc/Armature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/Armature.hpp -------------------------------------------------------------------------------- /intern/itasc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/CMakeLists.txt -------------------------------------------------------------------------------- /intern/itasc/Cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/Cache.cpp -------------------------------------------------------------------------------- /intern/itasc/Cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/Cache.hpp -------------------------------------------------------------------------------- /intern/itasc/ConstraintSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/ConstraintSet.cpp -------------------------------------------------------------------------------- /intern/itasc/ConstraintSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/ConstraintSet.hpp -------------------------------------------------------------------------------- /intern/itasc/ControlledObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/ControlledObject.cpp -------------------------------------------------------------------------------- /intern/itasc/ControlledObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/ControlledObject.hpp -------------------------------------------------------------------------------- /intern/itasc/CopyPose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/CopyPose.cpp -------------------------------------------------------------------------------- /intern/itasc/CopyPose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/CopyPose.hpp -------------------------------------------------------------------------------- /intern/itasc/Distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/Distance.cpp -------------------------------------------------------------------------------- /intern/itasc/Distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/Distance.hpp -------------------------------------------------------------------------------- /intern/itasc/FixedObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/FixedObject.cpp -------------------------------------------------------------------------------- /intern/itasc/FixedObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/FixedObject.hpp -------------------------------------------------------------------------------- /intern/itasc/MovingFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/MovingFrame.cpp -------------------------------------------------------------------------------- /intern/itasc/MovingFrame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/MovingFrame.hpp -------------------------------------------------------------------------------- /intern/itasc/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/Object.hpp -------------------------------------------------------------------------------- /intern/itasc/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/Scene.cpp -------------------------------------------------------------------------------- /intern/itasc/Scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/Scene.hpp -------------------------------------------------------------------------------- /intern/itasc/Solver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/Solver.hpp -------------------------------------------------------------------------------- /intern/itasc/WDLSSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/WDLSSolver.cpp -------------------------------------------------------------------------------- /intern/itasc/WDLSSolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/WDLSSolver.hpp -------------------------------------------------------------------------------- /intern/itasc/WSDLSSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/WSDLSSolver.cpp -------------------------------------------------------------------------------- /intern/itasc/WSDLSSolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/WSDLSSolver.hpp -------------------------------------------------------------------------------- /intern/itasc/WorldObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/WorldObject.cpp -------------------------------------------------------------------------------- /intern/itasc/WorldObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/WorldObject.hpp -------------------------------------------------------------------------------- /intern/itasc/eigen_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/eigen_types.cpp -------------------------------------------------------------------------------- /intern/itasc/eigen_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/eigen_types.hpp -------------------------------------------------------------------------------- /intern/itasc/kdl/chain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/chain.cpp -------------------------------------------------------------------------------- /intern/itasc/kdl/chain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/chain.hpp -------------------------------------------------------------------------------- /intern/itasc/kdl/frameacc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/frameacc.cpp -------------------------------------------------------------------------------- /intern/itasc/kdl/frameacc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/frameacc.hpp -------------------------------------------------------------------------------- /intern/itasc/kdl/frameacc.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/frameacc.inl -------------------------------------------------------------------------------- /intern/itasc/kdl/frames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/frames.cpp -------------------------------------------------------------------------------- /intern/itasc/kdl/frames.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/frames.hpp -------------------------------------------------------------------------------- /intern/itasc/kdl/frames.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/frames.inl -------------------------------------------------------------------------------- /intern/itasc/kdl/frames_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/frames_io.cpp -------------------------------------------------------------------------------- /intern/itasc/kdl/frames_io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/frames_io.hpp -------------------------------------------------------------------------------- /intern/itasc/kdl/framevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/framevel.cpp -------------------------------------------------------------------------------- /intern/itasc/kdl/framevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/framevel.hpp -------------------------------------------------------------------------------- /intern/itasc/kdl/framevel.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/framevel.inl -------------------------------------------------------------------------------- /intern/itasc/kdl/inertia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/inertia.cpp -------------------------------------------------------------------------------- /intern/itasc/kdl/inertia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/inertia.hpp -------------------------------------------------------------------------------- /intern/itasc/kdl/jacobian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/jacobian.cpp -------------------------------------------------------------------------------- /intern/itasc/kdl/jacobian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/jacobian.hpp -------------------------------------------------------------------------------- /intern/itasc/kdl/jntarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/jntarray.cpp -------------------------------------------------------------------------------- /intern/itasc/kdl/jntarray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/jntarray.hpp -------------------------------------------------------------------------------- /intern/itasc/kdl/jntarrayacc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/jntarrayacc.cpp -------------------------------------------------------------------------------- /intern/itasc/kdl/jntarrayacc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/jntarrayacc.hpp -------------------------------------------------------------------------------- /intern/itasc/kdl/jntarrayvel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/jntarrayvel.cpp -------------------------------------------------------------------------------- /intern/itasc/kdl/jntarrayvel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/jntarrayvel.hpp -------------------------------------------------------------------------------- /intern/itasc/kdl/joint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/joint.cpp -------------------------------------------------------------------------------- /intern/itasc/kdl/joint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/joint.hpp -------------------------------------------------------------------------------- /intern/itasc/kdl/kinfam_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/kinfam_io.cpp -------------------------------------------------------------------------------- /intern/itasc/kdl/kinfam_io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/kinfam_io.hpp -------------------------------------------------------------------------------- /intern/itasc/kdl/segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/segment.cpp -------------------------------------------------------------------------------- /intern/itasc/kdl/segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/segment.hpp -------------------------------------------------------------------------------- /intern/itasc/kdl/tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/tree.cpp -------------------------------------------------------------------------------- /intern/itasc/kdl/tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/tree.hpp -------------------------------------------------------------------------------- /intern/itasc/kdl/treefksolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/kdl/treefksolver.hpp -------------------------------------------------------------------------------- /intern/itasc/ublas_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/itasc/ublas_types.hpp -------------------------------------------------------------------------------- /intern/libmv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/CMakeLists.txt -------------------------------------------------------------------------------- /intern/libmv/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/ChangeLog -------------------------------------------------------------------------------- /intern/libmv/bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/bundle.sh -------------------------------------------------------------------------------- /intern/libmv/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/files.txt -------------------------------------------------------------------------------- /intern/libmv/intern/autotrack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/intern/autotrack.cc -------------------------------------------------------------------------------- /intern/libmv/intern/autotrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/intern/autotrack.h -------------------------------------------------------------------------------- /intern/libmv/intern/detector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/intern/detector.cc -------------------------------------------------------------------------------- /intern/libmv/intern/detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/intern/detector.h -------------------------------------------------------------------------------- /intern/libmv/intern/homography.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/intern/homography.cc -------------------------------------------------------------------------------- /intern/libmv/intern/homography.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/intern/homography.h -------------------------------------------------------------------------------- /intern/libmv/intern/image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/intern/image.cc -------------------------------------------------------------------------------- /intern/libmv/intern/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/intern/image.h -------------------------------------------------------------------------------- /intern/libmv/intern/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/intern/logging.cc -------------------------------------------------------------------------------- /intern/libmv/intern/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/intern/logging.h -------------------------------------------------------------------------------- /intern/libmv/intern/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/intern/region.h -------------------------------------------------------------------------------- /intern/libmv/intern/stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/intern/stub.cc -------------------------------------------------------------------------------- /intern/libmv/intern/tracks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/intern/tracks.cc -------------------------------------------------------------------------------- /intern/libmv/intern/tracks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/intern/tracks.h -------------------------------------------------------------------------------- /intern/libmv/intern/tracksN.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/intern/tracksN.cc -------------------------------------------------------------------------------- /intern/libmv/intern/tracksN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/intern/tracksN.h -------------------------------------------------------------------------------- /intern/libmv/intern/utildefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/intern/utildefines.h -------------------------------------------------------------------------------- /intern/libmv/libmv-capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/libmv-capi.h -------------------------------------------------------------------------------- /intern/libmv/libmv/base/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/libmv/base/vector.h -------------------------------------------------------------------------------- /intern/libmv/libmv/image/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/libmv/image/image.h -------------------------------------------------------------------------------- /intern/libmv/libmv/image/sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/libmv/image/sample.h -------------------------------------------------------------------------------- /intern/libmv/libmv/image/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/libmv/image/tuple.h -------------------------------------------------------------------------------- /intern/libmv/libmv/numeric/poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/libmv/numeric/poly.h -------------------------------------------------------------------------------- /intern/libmv/mkfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/libmv/mkfiles.sh -------------------------------------------------------------------------------- /intern/locale/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/locale/CMakeLists.txt -------------------------------------------------------------------------------- /intern/locale/msgfmt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/locale/msgfmt.cc -------------------------------------------------------------------------------- /intern/locale/osx_user_locale.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/locale/osx_user_locale.mm -------------------------------------------------------------------------------- /intern/memutil/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/memutil/CMakeLists.txt -------------------------------------------------------------------------------- /intern/memutil/MEM_Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/memutil/MEM_Allocator.h -------------------------------------------------------------------------------- /intern/memutil/MEM_CacheLimiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/memutil/MEM_CacheLimiter.h -------------------------------------------------------------------------------- /intern/memutil/MEM_RefCounted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/memutil/MEM_RefCounted.h -------------------------------------------------------------------------------- /intern/mikktspace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/mikktspace/CMakeLists.txt -------------------------------------------------------------------------------- /intern/mikktspace/mikktspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/mikktspace/mikktspace.c -------------------------------------------------------------------------------- /intern/mikktspace/mikktspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/mikktspace/mikktspace.h -------------------------------------------------------------------------------- /intern/moto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/CMakeLists.txt -------------------------------------------------------------------------------- /intern/moto/include/MT_MinMax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/include/MT_MinMax.h -------------------------------------------------------------------------------- /intern/moto/include/MT_Optimize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/include/MT_Optimize.h -------------------------------------------------------------------------------- /intern/moto/include/MT_Point2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/include/MT_Point2.h -------------------------------------------------------------------------------- /intern/moto/include/MT_Point2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/include/MT_Point2.inl -------------------------------------------------------------------------------- /intern/moto/include/MT_Point3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/include/MT_Point3.h -------------------------------------------------------------------------------- /intern/moto/include/MT_Point3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/include/MT_Point3.inl -------------------------------------------------------------------------------- /intern/moto/include/MT_Scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/include/MT_Scalar.h -------------------------------------------------------------------------------- /intern/moto/include/MT_Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/include/MT_Stream.h -------------------------------------------------------------------------------- /intern/moto/include/MT_Tuple2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/include/MT_Tuple2.h -------------------------------------------------------------------------------- /intern/moto/include/MT_Tuple3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/include/MT_Tuple3.h -------------------------------------------------------------------------------- /intern/moto/include/MT_Tuple4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/include/MT_Tuple4.h -------------------------------------------------------------------------------- /intern/moto/include/MT_Vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/include/MT_Vector2.h -------------------------------------------------------------------------------- /intern/moto/include/MT_Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/include/MT_Vector3.h -------------------------------------------------------------------------------- /intern/moto/include/MT_Vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/include/MT_Vector4.h -------------------------------------------------------------------------------- /intern/moto/include/MT_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/include/MT_assert.h -------------------------------------------------------------------------------- /intern/moto/include/MT_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/include/MT_random.h -------------------------------------------------------------------------------- /intern/moto/intern/MT_Assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/intern/MT_Assert.cpp -------------------------------------------------------------------------------- /intern/moto/intern/MT_Point3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/intern/MT_Point3.cpp -------------------------------------------------------------------------------- /intern/moto/intern/MT_Vector2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/intern/MT_Vector2.cpp -------------------------------------------------------------------------------- /intern/moto/intern/MT_Vector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/intern/MT_Vector3.cpp -------------------------------------------------------------------------------- /intern/moto/intern/MT_Vector4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/intern/MT_Vector4.cpp -------------------------------------------------------------------------------- /intern/moto/intern/MT_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/moto/intern/MT_random.cpp -------------------------------------------------------------------------------- /intern/opencolorio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/opencolorio/CMakeLists.txt -------------------------------------------------------------------------------- /intern/opencolorio/ocio_capi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/opencolorio/ocio_capi.cc -------------------------------------------------------------------------------- /intern/opencolorio/ocio_capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/opencolorio/ocio_capi.h -------------------------------------------------------------------------------- /intern/opencolorio/ocio_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/opencolorio/ocio_impl.cc -------------------------------------------------------------------------------- /intern/opencolorio/ocio_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/opencolorio/ocio_impl.h -------------------------------------------------------------------------------- /intern/opensubdiv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/opensubdiv/CMakeLists.txt -------------------------------------------------------------------------------- /intern/openvdb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/openvdb/CMakeLists.txt -------------------------------------------------------------------------------- /intern/openvdb/openvdb_capi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/openvdb/openvdb_capi.cc -------------------------------------------------------------------------------- /intern/openvdb/openvdb_capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/openvdb/openvdb_capi.h -------------------------------------------------------------------------------- /intern/openvdb/openvdb_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/openvdb/openvdb_util.cc -------------------------------------------------------------------------------- /intern/openvdb/openvdb_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/openvdb/openvdb_util.h -------------------------------------------------------------------------------- /intern/rigidbody/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/rigidbody/CMakeLists.txt -------------------------------------------------------------------------------- /intern/rigidbody/RBI_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/rigidbody/RBI_api.h -------------------------------------------------------------------------------- /intern/smoke/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/CMakeLists.txt -------------------------------------------------------------------------------- /intern/smoke/extern/smoke_API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/extern/smoke_API.h -------------------------------------------------------------------------------- /intern/smoke/intern/FFT_NOISE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/FFT_NOISE.h -------------------------------------------------------------------------------- /intern/smoke/intern/FLUID_3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/FLUID_3D.cpp -------------------------------------------------------------------------------- /intern/smoke/intern/FLUID_3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/FLUID_3D.h -------------------------------------------------------------------------------- /intern/smoke/intern/IMAGE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/IMAGE.h -------------------------------------------------------------------------------- /intern/smoke/intern/INTERPOLATE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/INTERPOLATE.h -------------------------------------------------------------------------------- /intern/smoke/intern/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/LICENSE.txt -------------------------------------------------------------------------------- /intern/smoke/intern/LU_HELPER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/LU_HELPER.cpp -------------------------------------------------------------------------------- /intern/smoke/intern/LU_HELPER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/LU_HELPER.h -------------------------------------------------------------------------------- /intern/smoke/intern/Makefile.FFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/Makefile.FFT -------------------------------------------------------------------------------- /intern/smoke/intern/Makefile.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/Makefile.mac -------------------------------------------------------------------------------- /intern/smoke/intern/OBSTACLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/OBSTACLE.h -------------------------------------------------------------------------------- /intern/smoke/intern/SPHERE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/SPHERE.cpp -------------------------------------------------------------------------------- /intern/smoke/intern/SPHERE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/SPHERE.h -------------------------------------------------------------------------------- /intern/smoke/intern/VEC3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/VEC3.h -------------------------------------------------------------------------------- /intern/smoke/intern/WTURBULENCE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/WTURBULENCE.h -------------------------------------------------------------------------------- /intern/smoke/intern/smoke_API.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/smoke_API.cpp -------------------------------------------------------------------------------- /intern/smoke/intern/tnt/jama_lu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/tnt/jama_lu.h -------------------------------------------------------------------------------- /intern/smoke/intern/tnt/tnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/tnt/tnt.h -------------------------------------------------------------------------------- /intern/smoke/intern/tnt/tnt_vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/smoke/intern/tnt/tnt_vec.h -------------------------------------------------------------------------------- /intern/string/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/string/CMakeLists.txt -------------------------------------------------------------------------------- /intern/string/STR_HashedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/string/STR_HashedString.h -------------------------------------------------------------------------------- /intern/string/STR_String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/string/STR_String.h -------------------------------------------------------------------------------- /intern/utfconv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/utfconv/CMakeLists.txt -------------------------------------------------------------------------------- /intern/utfconv/utf_winfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/utfconv/utf_winfunc.c -------------------------------------------------------------------------------- /intern/utfconv/utf_winfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/utfconv/utf_winfunc.h -------------------------------------------------------------------------------- /intern/utfconv/utfconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/utfconv/utfconv.c -------------------------------------------------------------------------------- /intern/utfconv/utfconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/intern/utfconv/utfconv.h -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/make.bat -------------------------------------------------------------------------------- /release/bin/blender-softwaregl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/bin/blender-softwaregl -------------------------------------------------------------------------------- /release/darwin/blender.app/Contents/MacOS/blender: -------------------------------------------------------------------------------- 1 | placeholder 2 | -------------------------------------------------------------------------------- /release/darwin/blender.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /release/darwin/blenderplayer.app/Contents/MacOS/blenderplayer: -------------------------------------------------------------------------------- 1 | placeholder 2 | -------------------------------------------------------------------------------- /release/darwin/blenderplayer.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /release/datafiles/bfont.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/datafiles/bfont.pfb -------------------------------------------------------------------------------- /release/datafiles/bfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/datafiles/bfont.ttf -------------------------------------------------------------------------------- /release/datafiles/bmonofont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/datafiles/bmonofont.ttf -------------------------------------------------------------------------------- /release/datafiles/ctodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/datafiles/ctodata.py -------------------------------------------------------------------------------- /release/datafiles/preview.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/datafiles/preview.blend -------------------------------------------------------------------------------- /release/datafiles/prvicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/datafiles/prvicons.png -------------------------------------------------------------------------------- /release/datafiles/prvicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/datafiles/prvicons.svg -------------------------------------------------------------------------------- /release/datafiles/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/datafiles/splash.png -------------------------------------------------------------------------------- /release/datafiles/splash_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/datafiles/splash_2x.png -------------------------------------------------------------------------------- /release/datafiles/splash_scale.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/datafiles/splash_scale.sh -------------------------------------------------------------------------------- /release/datafiles/startup.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/datafiles/startup.blend -------------------------------------------------------------------------------- /release/scripts/modules/bpyml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/scripts/modules/bpyml.py -------------------------------------------------------------------------------- /release/scripts/presets/framerate/Custom.py: -------------------------------------------------------------------------------- 1 | import bpy 2 | -------------------------------------------------------------------------------- /release/scripts/templates_osl/empty_shader.osl: -------------------------------------------------------------------------------- 1 | 2 | shader name() 3 | { 4 | 5 | } 6 | 7 | -------------------------------------------------------------------------------- /release/text/GPL-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/text/GPL-license.txt -------------------------------------------------------------------------------- /release/text/GPL3-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/text/GPL3-license.txt -------------------------------------------------------------------------------- /release/text/Python-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/text/Python-license.txt -------------------------------------------------------------------------------- /release/text/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/text/copyright.txt -------------------------------------------------------------------------------- /release/text/jemalloc-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/text/jemalloc-license.txt -------------------------------------------------------------------------------- /release/text/ocio-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/text/ocio-license.txt -------------------------------------------------------------------------------- /release/text/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/release/text/readme.html -------------------------------------------------------------------------------- /source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/CMakeLists.txt -------------------------------------------------------------------------------- /source/blender/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/CMakeLists.txt -------------------------------------------------------------------------------- /source/blender/avi/AVI_avi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/avi/AVI_avi.h -------------------------------------------------------------------------------- /source/blender/avi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/avi/CMakeLists.txt -------------------------------------------------------------------------------- /source/blender/avi/intern/avi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/avi/intern/avi.c -------------------------------------------------------------------------------- /source/blender/blenfont/BLF_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/blenfont/BLF_api.h -------------------------------------------------------------------------------- /source/blender/blenlib/BLI_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/blenlib/BLI_args.h -------------------------------------------------------------------------------- /source/blender/blenlib/BLI_dial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/blenlib/BLI_dial.h -------------------------------------------------------------------------------- /source/blender/blenlib/BLI_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/blenlib/BLI_hash.h -------------------------------------------------------------------------------- /source/blender/blenlib/BLI_heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/blenlib/BLI_heap.h -------------------------------------------------------------------------------- /source/blender/blenlib/BLI_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/blenlib/BLI_math.h -------------------------------------------------------------------------------- /source/blender/blenlib/BLI_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/blenlib/BLI_rand.h -------------------------------------------------------------------------------- /source/blender/blenlib/BLI_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/blenlib/BLI_rect.h -------------------------------------------------------------------------------- /source/blender/blenlib/BLI_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/blenlib/BLI_sort.h -------------------------------------------------------------------------------- /source/blender/blenlib/BLI_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/blenlib/BLI_task.h -------------------------------------------------------------------------------- /source/blender/blenlib/PIL_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/blenlib/PIL_time.h -------------------------------------------------------------------------------- /source/blender/bmesh/bmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/bmesh/bmesh.h -------------------------------------------------------------------------------- /source/blender/collada/SkinInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/collada/SkinInfo.h -------------------------------------------------------------------------------- /source/blender/collada/collada.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/collada/collada.h -------------------------------------------------------------------------------- /source/blender/collada/version.conf: -------------------------------------------------------------------------------- 1 | 463ba8a2ef5a021ce21df614dde29e0ee800e10b 2 | -------------------------------------------------------------------------------- /source/blender/datatoc/datatoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/datatoc/datatoc.c -------------------------------------------------------------------------------- /source/blender/gpu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/gpu/CMakeLists.txt -------------------------------------------------------------------------------- /source/blender/gpu/GPU_buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/gpu/GPU_buffers.h -------------------------------------------------------------------------------- /source/blender/gpu/GPU_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/gpu/GPU_debug.h -------------------------------------------------------------------------------- /source/blender/gpu/GPU_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/gpu/GPU_draw.h -------------------------------------------------------------------------------- /source/blender/gpu/GPU_glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/gpu/GPU_glew.h -------------------------------------------------------------------------------- /source/blender/gpu/GPU_material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/gpu/GPU_material.h -------------------------------------------------------------------------------- /source/blender/gpu/GPU_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/gpu/GPU_select.h -------------------------------------------------------------------------------- /source/blender/gpu/GPU_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/gpu/GPU_shader.h -------------------------------------------------------------------------------- /source/blender/gpu/GPU_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/gpu/GPU_texture.h -------------------------------------------------------------------------------- /source/blender/ikplugin/BIK_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/ikplugin/BIK_api.h -------------------------------------------------------------------------------- /source/blender/imbuf/IMB_imbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/imbuf/IMB_imbuf.h -------------------------------------------------------------------------------- /source/blender/imbuf/IMB_thumbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/imbuf/IMB_thumbs.h -------------------------------------------------------------------------------- /source/blender/imbuf/intern/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/imbuf/intern/bmp.c -------------------------------------------------------------------------------- /source/blender/imbuf/intern/cineon/cin_debug_stuff.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/blender/imbuf/intern/jp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/imbuf/intern/jp2.c -------------------------------------------------------------------------------- /source/blender/imbuf/intern/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/imbuf/intern/png.c -------------------------------------------------------------------------------- /source/blender/imbuf/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/imbuf/readme.txt -------------------------------------------------------------------------------- /source/blender/makesdna/DNA_ID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/makesdna/DNA_ID.h -------------------------------------------------------------------------------- /source/blender/nodes/NOD_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/nodes/NOD_common.h -------------------------------------------------------------------------------- /source/blender/nodes/NOD_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/nodes/NOD_shader.h -------------------------------------------------------------------------------- /source/blender/nodes/NOD_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/nodes/NOD_socket.h -------------------------------------------------------------------------------- /source/blender/python/rna_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/python/rna_dump.py -------------------------------------------------------------------------------- /source/blender/windowmanager/wm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/blender/windowmanager/wm.h -------------------------------------------------------------------------------- /source/creator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/creator/CMakeLists.txt -------------------------------------------------------------------------------- /source/creator/blender.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/creator/blender.map -------------------------------------------------------------------------------- /source/creator/buildinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/creator/buildinfo.c -------------------------------------------------------------------------------- /source/creator/creator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/creator/creator.c -------------------------------------------------------------------------------- /source/creator/creator_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/creator/creator_args.c -------------------------------------------------------------------------------- /source/creator/creator_intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/creator/creator_intern.h -------------------------------------------------------------------------------- /source/creator/creator_signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/creator/creator_signals.c -------------------------------------------------------------------------------- /source/creator/osx_locals.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/creator/osx_locals.map -------------------------------------------------------------------------------- /source/gameengine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/source/gameengine/CMakeLists.txt -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/check_deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/check_deprecated.py -------------------------------------------------------------------------------- /tests/gtests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/gtests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/gtests/bmesh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/gtests/bmesh/CMakeLists.txt -------------------------------------------------------------------------------- /tests/gtests/testing/mock_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/gtests/testing/mock_log.h -------------------------------------------------------------------------------- /tests/gtests/testing/testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/gtests/testing/testing.h -------------------------------------------------------------------------------- /tests/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/python/CMakeLists.txt -------------------------------------------------------------------------------- /tests/python/alembic_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/python/alembic_tests.py -------------------------------------------------------------------------------- /tests/python/batch_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/python/batch_import.py -------------------------------------------------------------------------------- /tests/python/bl_load_addons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/python/bl_load_addons.py -------------------------------------------------------------------------------- /tests/python/bl_mesh_modifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/python/bl_mesh_modifiers.py -------------------------------------------------------------------------------- /tests/python/bl_mesh_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/python/bl_mesh_validate.py -------------------------------------------------------------------------------- /tests/python/bl_pyapi_bpy_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/python/bl_pyapi_bpy_path.py -------------------------------------------------------------------------------- /tests/python/bl_pyapi_idprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/python/bl_pyapi_idprop.py -------------------------------------------------------------------------------- /tests/python/bl_rna_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/python/bl_rna_defaults.py -------------------------------------------------------------------------------- /tests/python/bl_run_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/python/bl_run_operators.py -------------------------------------------------------------------------------- /tests/python/bl_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/python/bl_test.py -------------------------------------------------------------------------------- /tests/python/pep8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/python/pep8.py -------------------------------------------------------------------------------- /tests/python/rna_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/python/rna_array.py -------------------------------------------------------------------------------- /tests/python/rna_info_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skwerner/blender/HEAD/tests/python/rna_info_dump.py --------------------------------------------------------------------------------