Blender Git Loki

Git Commits -> Revision 3bab89c

Revision 3bab89c by Ian Thompson (master)
August 30, 2008, 14:32 (GMT)
Merge from trunk 16122-16307

Commit Details:

Full Hash: 3bab89cc1c51e80e15efb4f5d751940ac06001a4
SVN Revision: 16308
Parent Commit: bccce7e
Lines Changed: +7805, -2126

12 Added Paths:

/intern/guardedalloc/BLO_sys_types.h (+125, -0) (View)
/intern/opennl/superlu/BLO_sys_types.h (+125, -0) (View)
/release/scripts/flt_dofedit.py (+835, -0) (View)
/release/scripts/flt_lodedit.py (+502, -0) (View)
/source/blender/blenkernel/BKE_shrinkwrap.h (+146, -0) (View)
/source/blender/blenkernel/intern/shrinkwrap.c (+588, -0) (View)
/source/gameengine/GameLogic/SCA_DelaySensor.cpp (+257, -0) (View)
/source/gameengine/GameLogic/SCA_DelaySensor.h (+77, -0) (View)
/source/gameengine/Ketsji/KX_PolyProxy.cpp (+265, -0) (View)
/source/gameengine/Ketsji/KX_PolyProxy.h (+71, -0) (View)
/source/gameengine/PyDoc/KX_PolyProxy.py (+100, -0) (View)
/source/gameengine/PyDoc/SCA_DelaySensor.py (+56, -0) (View)

217 Modified Paths:

/CMake/macros.cmake (+2, -0) (Diff)
/CMakeLists.txt (+0, -1) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCollisionWorld.cpp (+25, -14) (Diff)
/extern/bullet2/src/BulletCollision/CollisionDispatch/btCollisionWorld.h (+13, -5) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btRaycastCallback.cpp (+3, -3) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btRaycastCallback.h (+2, -1) (Diff)
/extern/bullet2/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.cpp (+20, -4) (Diff)
/intern/guardedalloc/intern/mallocn.c (+7, -5) (Diff)
/intern/guardedalloc/intern/mmap_win.c (+1, -1) (Diff)
/intern/guardedalloc/make/msvc_7_0/guardedalloc.vcproj (+3, -0) (Diff)
/intern/guardedalloc/mmap_win.h (+3, -1) (Diff)
/intern/opennl/make/msvc_7_0/opennl.vcproj (+3, -0) (Diff)
/intern/opennl/superlu/smemory.c (+6, -4) (Diff)
/projectfiles_vc7/blender/blenkernel/BKE_blenkernel.vcproj (+6, -0) (Diff)
/projectfiles_vc7/gameengine/gamelogic/SCA_GameLogic.vcproj (+6, -0) (Diff)
/projectfiles_vc7/gameengine/ketsji/KX_ketsji.vcproj (+6, -0) (Diff)
/projectfiles_vc7/gameengine/physics/PHY_Physics/PHY_Bullet/PHY_Bullet.vcproj (+4, -4) (Diff)
/projectfiles_vc7/kernel/system/SYS_system.vcproj (+4, -4) (Diff)
/release/datafiles/datatoc.c (+1, -1) (Diff)
/release/scripts/flt_properties.py (+11, -8) (Diff)
/release/text/copyright.txt (+1, -1) (Diff)
/source/blender/blenkernel/BKE_blender.h (+1, -1) (Diff)
/source/blender/blenkernel/BKE_collision.h (+11, -0) (Diff)
/source/blender/blenkernel/BKE_customdata.h (+3, -1) (Diff)
/source/blender/blenkernel/BKE_deform.h (+4, -0) (Diff)
/source/blender/blenkernel/BKE_effect.h (+6, -0) (Diff)
/source/blender/blenkernel/BKE_endian.h (+3, -3) (Diff)
/source/blender/blenkernel/BKE_utildefines.h (+2, -2) (Diff)
/source/blender/blenkernel/intern/bvhutils.c (+5, -5) (Diff)
/source/blender/blenkernel/intern/CCGSubSurf.c (+3, -1) (Diff)
/source/blender/blenkernel/intern/cloth.c (+11, -11) (Diff)
/source/blender/blenkernel/intern/collision.c (+40, -28) (Diff)
/source/blender/blenkernel/intern/deform.c (+28, -0) (Diff)
/source/blender/blenkernel/intern/DerivedMesh.c (+11, -9) (Diff)
/source/blender/blenkernel/intern/displist.c (+5, -3) (Diff)
/source/blender/blenkernel/intern/effect.c (+302, -172) (Diff)
/source/blender/blenkernel/intern/icons.c (+2, -0) (Diff)
/source/blender/blenkernel/intern/image.c (+5, -3) (Diff)
/source/blender/blenkernel/intern/implicit.c (+79, -56) (Diff)
/source/blender/blenkernel/intern/ipo.c (+13, -1) (Diff)
/source/blender/blenkernel/intern/modifier.c (+139, -18) (Diff)
/source/blender/blenkernel/intern/particle.c (+28, -3) (Diff)
/source/blender/blenkernel/intern/particle_system.c (+81, -227) (Diff)
/source/blender/blenkernel/intern/sca.c (+3, -0) (Diff)
/source/blender/blenlib/BLI_editVert.h (+5, -3) (Diff)
/source/blender/blenlib/BLI_rand.h (+1, -0) (Diff)
/source/blender/blenlib/BLI_winstuff.h (+8, -0) (Diff)
/source/blender/blenlib/intern/BLI_ghash.c (+3, -5) (Diff)
/source/blender/blenlib/intern/BLI_kdopbvh.c (+214, -15) (Diff)
/source/blender/blenlib/intern/fileops.c (+4, -2) (Diff)
/source/blender/blenlib/intern/psfont.c (+3, -1) (Diff)
/source/blender/blenlib/intern/rand.c (+11, -7) (Diff)
/source/blender/blenlib/intern/util.c (+4, -4) (Diff)
/source/blender/blenloader/BLO_sys_types.h (+12, -5) (Diff)
/source/blender/blenloader/intern/genfile.c (+6, -4) (Diff)
/source/blender/blenloader/intern/readblenentry.c (+3, -1) (Diff)
/source/blender/blenloader/intern/readfile.c (+18, -44) (Diff)
/source/blender/blenloader/intern/writefile.c (+4, -0) (Diff)
/source/blender/blenpluginapi/intern/pluginapi.c (+3, -1) (Diff)
/source/blender/imbuf/intern/cineon/cineonlib.c (+16, -16) (Diff)
/source/blender/imbuf/intern/cineon/dpxlib.c (+18, -18) (Diff)
/source/blender/imbuf/intern/cineon/logImageCore.h (+4, -2) (Diff)
/source/blender/imbuf/intern/cineon/logmemfile.c (+3, -3) (Diff)
/source/blender/imbuf/intern/cineon/logmemfile.h (+1, -1) (Diff)
/source/blender/imbuf/intern/scaling.c (+38, -36) (Diff)
/source/blender/include/BDR_gpencil.h (+3, -1) (Diff)
/source/blender/include/BIF_drawgpencil.h (+4, -1) (Diff)
/source/blender/include/BIF_editarmature.h (+1, -0) (Diff)
/source/blender/include/BIF_editview.h (+1, -0) (Diff)
/source/blender/include/BIF_meshtools.h (+1, -1) (Diff)
/source/blender/include/BIF_resources.h (+4, -0) (Diff)
/source/blender/include/BSE_drawipo.h (+3, -0) (Diff)
/source/blender/include/transform.h (+1, -1) (Diff)
/source/blender/makesdna/DNA_actuator_types.h (+6, -1) (Diff)
/source/blender/makesdna/DNA_gpencil_types.h (+4, -2) (Diff)
/source/blender/makesdna/DNA_ipo_types.h (+10, -2) (Diff)
/source/blender/makesdna/DNA_modifier_types.h (+44, -1) (Diff)
/source/blender/makesdna/DNA_object_force.h (+5, -2) (Diff)
/source/blender/makesdna/DNA_particle_types.h (+3, -0) (Diff)
/source/blender/makesdna/DNA_sensor_types.h (+13, -0) (Diff)
/source/blender/makesdna/DNA_space_types.h (+1, -0) (Diff)
/source/blender/makesdna/DNA_userdef_types.h (+5, -0) (Diff)
/source/blender/makesdna/intern/makesdna.c (+5, -3) (Diff)
/source/blender/python/api2_2x/doc/Material.py (+17, -2) (Diff)
/source/blender/python/api2_2x/doc/Mathutils.py (+9, -0) (Diff)
/source/blender/python/api2_2x/doc/Object.py (+7, -1) (Diff)
/source/blender/python/api2_2x/doc/Text3d.py (+20, -0) (Diff)
/source/blender/python/api2_2x/Draw.c (+6, -0) (Diff)
/source/blender/python/api2_2x/Material.c (+88, -4) (Diff)
/source/blender/python/api2_2x/Mesh.c (+2, -2) (Diff)
/source/blender/python/api2_2x/Object.c (+36, -1) (Diff)
/source/blender/python/api2_2x/Particle.c (+3, -3) (Diff)
/source/blender/python/api2_2x/Text3d.c (+46, -0) (Diff)
/source/blender/python/api2_2x/vector.c (+51, -1) (Diff)
/source/blender/python/api2_2x/vector.h (+1, -0) (Diff)
/source/blender/radiosity/CMakeLists.txt (+1, -1) (Diff)
/source/blender/radiosity/intern/source/Makefile (+1, -0) (Diff)
/source/blender/radiosity/intern/source/radnode.c (+6, -4) (Diff)
/source/blender/radiosity/intern/source/radpreprocess.c (+3, -1) (Diff)
/source/blender/radiosity/SConscript (+1, -1) (Diff)
/source/blender/render/CMakeLists.txt (+1, -1) (Diff)
/source/blender/render/intern/include/render_types.h (+5, -3) (Diff)
/source/blender/render/intern/source/convertblender.c (+3, -1) (Diff)
/source/blender/render/intern/source/occlusion.c (+1, -1) (Diff)
/source/blender/render/intern/source/pipeline.c (+1, -1) (Diff)
/source/blender/render/intern/source/rendercore.c (+11, -11) (Diff)
/source/blender/render/intern/source/shadbuf.c (+8, -8) (Diff)
/source/blender/render/intern/source/strand.c (+2, -2) (Diff)
/source/blender/render/intern/source/zbuf.c (+4, -4) (Diff)
/source/blender/render/SConscript (+1, -1) (Diff)
/source/blender/src/buttons_editing.c (+56, -1) (Diff)
/source/blender/src/buttons_logic.c (+67, -18) (Diff)
/source/blender/src/buttons_object.c (+70, -42) (Diff)
/source/blender/src/buttons_scene.c (+4, -3) (Diff)
/source/blender/src/drawgpencil.c (+188, -106) (Diff)
/source/blender/src/drawipo.c (+43, -11) (Diff)
/source/blender/src/drawmesh.c (+4, -4) (Diff)
/source/blender/src/drawobject.c (+6, -6) (Diff)
/source/blender/src/editarmature.c (+103, -0) (Diff)
/source/blender/src/editipo.c (+1, -18) (Diff)
/source/blender/src/editipo_lib.c (+2, -1) (Diff)
/source/blender/src/editkey.c (+4, -2) (Diff)
/source/blender/src/editmesh_mods.c (+3, -2) (Diff)
/source/blender/src/editmesh_tools.c (+115, -55) (Diff)
/source/blender/src/editnode.c (+1, -0) (Diff)
/source/blender/src/editobject.c (+19, -7) (Diff)
/source/blender/src/editview.c (+1, -1) (Diff)
/source/blender/src/gpencil.c (+389, -78) (Diff)
/source/blender/src/header_info.c (+3, -1) (Diff)
/source/blender/src/header_script.c (+5, -3) (Diff)
/source/blender/src/header_view3d.c (+4, -0) (Diff)
/source/blender/src/interface.c (+4, -2) (Diff)
/source/blender/src/meshlaplacian.c (+5, -3) (Diff)
/source/blender/src/meshtools.c (+9, -7) (Diff)
/source/blender/src/parametrizer.c (+3, -1) (Diff)
/source/blender/src/parametrizer.h (+3, -1) (Diff)
/source/blender/src/parametrizer_intern.h (+1, -1) (Diff)
/source/blender/src/renderwin.c (+3, -1) (Diff)
/source/blender/src/resources.c (+17, -2) (Diff)
/source/blender/src/space.c (+10, -3) (Diff)
/source/blender/src/toolbox.c (+12, -10) (Diff)
/source/blender/src/transform_conversions.c (+11, -9) (Diff)
/source/blender/src/transform_generics.c (+5, -44) (Diff)
/source/blender/src/transform_numinput.c (+14, -0) (Diff)
/source/blender/src/usiblender.c (+9, -1) (Diff)
/source/blender/yafray/intern/export_Plugin.cpp (+1, -1) (Diff)
/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp (+6, -25) (Diff)
/source/gameengine/BlenderRoutines/KX_BlenderRenderTools.cpp (+5, -6) (Diff)
/source/gameengine/BlenderRoutines/KX_BlenderRenderTools.h (+3, -1) (Diff)
/source/gameengine/Converter/BL_BlenderDataConversion.cpp (+34, -5) (Diff)
/source/gameengine/Converter/KX_ConvertActuators.cpp (+71, -38) (Diff)
/source/gameengine/Converter/KX_ConvertSensors.cpp (+36, -3) (Diff)
/source/gameengine/Expressions/PyObjectPlus.h (+12, -0) (Diff)
/source/gameengine/GameLogic/SCA_IController.cpp (+2, -0) (Diff)
/source/gameengine/GameLogic/SCA_ISensor.cpp (+52, -6) (Diff)
/source/gameengine/GameLogic/SCA_ISensor.h (+10, -4) (Diff)
/source/gameengine/GameLogic/SCA_KeyboardSensor.cpp (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_LogicManager.cpp (+25, -6) (Diff)
/source/gameengine/GameLogic/SCA_LogicManager.h (+2, -0) (Diff)
/source/gameengine/GameLogic/SCA_PythonController.cpp (+12, -3) (Diff)
/source/gameengine/GameLogic/SCA_PythonController.h (+6, -0) (Diff)
/source/gameengine/GamePlayer/common/GPC_RenderTools.cpp (+5, -6) (Diff)
/source/gameengine/GamePlayer/common/GPC_RenderTools.h (+3, -2) (Diff)
/source/gameengine/GamePlayer/ghost/GPG_Application.cpp (+44, -6) (Diff)
/source/gameengine/GamePlayer/ghost/GPG_Application.h (+30, -1) (Diff)
/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp (+18, -1) (Diff)
/source/gameengine/Ketsji/KX_ConstraintActuator.cpp (+31, -19) (Diff)
/source/gameengine/Ketsji/KX_ConstraintActuator.h (+4, -1) (Diff)
/source/gameengine/Ketsji/KX_ConvertPhysicsObjects.cpp (+60, -279) (Diff)
/source/gameengine/Ketsji/KX_GameObject.cpp (+114, -43) (Diff)
/source/gameengine/Ketsji/KX_GameObject.h (+12, -7) (Diff)
/source/gameengine/Ketsji/KX_IPO_SGController.cpp (+1, -1) (Diff)
/source/gameengine/Ketsji/KX_MaterialIpoController.cpp (+6, -4) (Diff)
/source/gameengine/Ketsji/KX_MeshProxy.cpp (+31, -0) (Diff)
/source/gameengine/Ketsji/KX_MeshProxy.h (+2, -0) (Diff)
/source/gameengine/Ketsji/KX_MouseFocusSensor.cpp (+5, -12) (Diff)
/source/gameengine/Ketsji/KX_MouseFocusSensor.h (+5, -1) (Diff)
/source/gameengine/Ketsji/KX_PythonInit.cpp (+135, -84) (Diff)
/source/gameengine/Ketsji/KX_RayCast.cpp (+46, -39) (Diff)
/source/gameengine/Ketsji/KX_RayCast.h (+42, -18) (Diff)
/source/gameengine/Ketsji/KX_RaySensor.cpp (+42, -16) (Diff)
/source/gameengine/Ketsji/KX_RaySensor.h (+6, -2) (Diff)
/source/gameengine/Ketsji/KX_SCA_AddObjectActuator.cpp (+79, -41) (Diff)
/source/gameengine/Ketsji/KX_SCA_AddObjectActuator.h (+20, -10) (Diff)
/source/gameengine/Ketsji/KX_Scene.cpp (+2, -31) (Diff)
/source/gameengine/Ketsji/KX_Scene.h (+0, -6) (Diff)
/source/gameengine/Ketsji/KX_SoundActuator.cpp (+42, -22) (Diff)
/source/gameengine/Ketsji/Makefile (+3, -1) (Diff)
/source/gameengine/Physics/BlOde/OdePhysicsEnvironment.cpp (+1, -2) (Diff)
/source/gameengine/Physics/BlOde/OdePhysicsEnvironment.h (+1, -2) (Diff)
/source/gameengine/Physics/Bullet/CcdPhysicsController.cpp (+287, -12) (Diff)
/source/gameengine/Physics/Bullet/CcdPhysicsController.h (+84, -0) (Diff)
/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.cpp (+75, -26) (Diff)
/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.h (+1, -2) (Diff)
/source/gameengine/Physics/Bullet/CMakeLists.txt (+4, -0) (Diff)
/source/gameengine/Physics/Bullet/Makefile (+5, -0) (Diff)
/source/gameengine/Physics/Bullet/SConscript (+1, -1) (Diff)
/source/gameengine/Physics/common/PHY_DynamicTypes.h (+12, -0) (Diff)
/source/gameengine/Physics/common/PHY_IPhysicsEnvironment.h (+45, -2) (Diff)
/source/gameengine/Physics/Dummy/DummyPhysicsEnvironment.cpp (+1, -2) (Diff)
/source/gameengine/Physics/Dummy/DummyPhysicsEnvironment.h (+1, -2) (Diff)
/source/gameengine/Physics/Sumo/SumoPhysicsEnvironment.cpp (+15, -16) (Diff)
/source/gameengine/Physics/Sumo/SumoPhysicsEnvironment.h (+1, -2) (Diff)
/source/gameengine/PyDoc/GameKeys.py (+9, -0) (Diff)
/source/gameengine/PyDoc/GameLogic.py (+12, -2) (Diff)
/source/gameengine/PyDoc/KX_GameObject.py (+46, -7) (Diff)
/source/gameengine/PyDoc/KX_MeshProxy.py (+15, -0) (Diff)
/source/gameengine/PyDoc/KX_SCA_AddObjectActuator.py (+17, -0) (Diff)
/source/gameengine/PyDoc/SCA_ISensor.py (+12, -1) (Diff)
/source/gameengine/Rasterizer/RAS_MeshObject.cpp (+1, -1) (Diff)
/source/gameengine/Rasterizer/RAS_MeshObject.h (+1, -1) (Diff)
/source/kernel/CMakeLists.txt (+1, -1) (Diff)
/source/kernel/gen_system/GEN_HashedPtr.cpp (+3, -5) (Diff)
/source/kernel/gen_system/Makefile (+1, -0) (Diff)
/source/kernel/SConscript (+1, -1) (Diff)
/source/Makefile (+1, -0) (Diff)
/source/nan_definitions.mk (+4, -4) (Diff)
Tehnyt: Miika HämäläinenViimeksi päivitetty: 07.11.2014 14:18MiikaH:n Sivut a.k.a. MiikaHweb | 2003-2021