Blender Git Loki
Git Commits -> Revision f026266
Revision f026266 by Joseph Eagar (master) May 23, 2009, 03:24 (GMT) |
merge with 2.5 at r20307. note there were some python hacking necassary for this to work, so um hopefully there's not too much cruft from that. [[Split portion of a mixed commit.]] |
Commit Details:
Full Hash: f026266e185f90543138a856898f50b2295a12fc
Parent Commit: b7fe325
Lines Changed: +70125, -68752
59 Added Paths:
/release/scripts/mesh_poly_reduce_grid.py (+351, -0) (View)
/release/scripts/scripttemplate_camera_object.py (+104, -0) (View)
/release/ui/buttons_data_armature.py (+121, -0) (View)
/release/ui/buttons_data_bone.py (+67, -0) (View)
/release/ui/buttons_data_camera.py (+81, -0) (View)
/release/ui/buttons_data_curve.py (+147, -0) (View)
/release/ui/buttons_data_empty.py (+27, -0) (View)
/release/ui/buttons_data_lamp.py (+217, -0) (View)
/release/ui/buttons_data_lattice.py (+40, -0) (View)
/release/ui/buttons_data_modifier.py (+59, -0) (View)
/release/ui/buttons_data_text.py (+135, -0) (View)
/release/ui/buttons_material.py (+197, -0) (View)
/release/ui/buttons_objects.py (+147, -0) (View)
/release/ui/buttons_scene.py (+177, -0) (View)
/release/ui/buttons_world.py (+141, -0) (View)
/release/ui/space_text.py (+146, -0) (View)
/source/blender/blenkernel/BKE_gpencil.h (+63, -0) (View)
/source/blender/blenkernel/intern/gpencil.c (+516, -0) (View)
/source/blender/editors/animation/anim_intern.h (+18, -0) (View)
/source/blender/editors/animation/drivers.c (+292, -0) (View)
/source/blender/editors/animation/keyingsets.c (+1178, -0) (View)
/source/blender/editors/gpencil/gpencil_edit.c (+1699, -0) (View)
/source/blender/editors/interface/interface_anim.c (+172, -0) (View)
/source/blender/editors/interface/interface_api.c (+193, -0) (View)
/source/blender/editors/interface/interface_style.c (+267, -0) (View)
/source/blender/editors/interface/interface_templates.c (+238, -0) (View)
/source/blender/editors/object/object_modifier.c (+98, -0) (View)
/source/blender/editors/space_image/image_buttons.c (+1476, -0) (View)
/source/blender/editors/space_view3d/view3d_toolbar.c (+189, -0) (View)
/source/blender/makesrna/intern/rna_fcurve.c (+656, -0) (View)
/source/blender/makesrna/intern/rna_ui.c (+565, -0) (View)
/source/blender/python/intern/bpy_operator_wrap.c (+481, -0) (View)
/source/blender/python/intern/bpy_operator_wrap.h (+34, -0) (View)
/source/gameengine/Ketsji/KX_Dome.cpp (+1819, -0) (View)
/source/gameengine/Ketsji/KX_Dome.h (+183, -0) (View)
/source/gameengine/Ketsji/KX_PythonInitTypes.cpp (+233, -0) (View)
/source/gameengine/Ketsji/KX_PythonInitTypes.h (+35, -0) (View)
/source/gameengine/Physics/Bullet/CcdGraphicController.cpp (+112, -0) (View)
/source/gameengine/Physics/Bullet/CcdGraphicController.h (+74, -0) (View)
/source/gameengine/Physics/common/PHY_IController.cpp (+39, -0) (View)
/source/gameengine/Physics/common/PHY_IController.h (+53, -0) (View)
/source/gameengine/Physics/common/PHY_IGraphicController.cpp (+39, -0) (View)
/source/gameengine/Physics/common/PHY_IGraphicController.h (+56, -0) (View)
/source/gameengine/PyDoc/bge_api_validate_py.txt (+110, -0) (View)
/source/gameengine/PyDoc/BL_Shader.py (+228, -0) (View)
/source/gameengine/PyDoc/CListValue.py (+59, -0) (View)
/source/gameengine/PyDoc/GameTypes.py (+75, -0) (View)
/source/gameengine/PyDoc/KX_BlenderMaterial.py (+38, -0) (View)
/source/gameengine/PyDoc/KX_ConstraintWrapper.py (+28, -0) (View)
/source/gameengine/PyDoc/KX_LightObject.py (+45, -0) (View)
/source/gameengine/PyDoc/KX_PhysicsObjectWrapper.py (+47, -0) (View)
/source/gameengine/PyDoc/KX_SCA_DynamicActuator.py (+30, -0) (View)
/source/gameengine/PyDoc/KX_VehicleWrapper.py (+166, -0) (View)
/source/gameengine/PyDoc/SCA_2DFilterActuator.py (+44, -0) (View)
/source/gameengine/PyDoc/SCA_ActuatorSensor.py (+33, -0) (View)
/source/gameengine/PyDoc/SCA_NANDController.py (+11, -0) (View)
/source/gameengine/PyDoc/SCA_NORController.py (+11, -0) (View)
/source/gameengine/PyDoc/SCA_XNORController.py (+11, -0) (View)
/source/gameengine/PyDoc/SCA_XORController.py (+11, -0) (View)
/release/scripts/scripttemplate_camera_object.py (+104, -0) (View)
/release/ui/buttons_data_armature.py (+121, -0) (View)
/release/ui/buttons_data_bone.py (+67, -0) (View)
/release/ui/buttons_data_camera.py (+81, -0) (View)
/release/ui/buttons_data_curve.py (+147, -0) (View)
/release/ui/buttons_data_empty.py (+27, -0) (View)
/release/ui/buttons_data_lamp.py (+217, -0) (View)
/release/ui/buttons_data_lattice.py (+40, -0) (View)
/release/ui/buttons_data_modifier.py (+59, -0) (View)
/release/ui/buttons_data_text.py (+135, -0) (View)
/release/ui/buttons_material.py (+197, -0) (View)
/release/ui/buttons_objects.py (+147, -0) (View)
/release/ui/buttons_scene.py (+177, -0) (View)
/release/ui/buttons_world.py (+141, -0) (View)
/release/ui/space_text.py (+146, -0) (View)
/source/blender/blenkernel/BKE_gpencil.h (+63, -0) (View)
/source/blender/blenkernel/intern/gpencil.c (+516, -0) (View)
/source/blender/editors/animation/anim_intern.h (+18, -0) (View)
/source/blender/editors/animation/drivers.c (+292, -0) (View)
/source/blender/editors/animation/keyingsets.c (+1178, -0) (View)
/source/blender/editors/gpencil/gpencil_edit.c (+1699, -0) (View)
/source/blender/editors/interface/interface_anim.c (+172, -0) (View)
/source/blender/editors/interface/interface_api.c (+193, -0) (View)
/source/blender/editors/interface/interface_style.c (+267, -0) (View)
/source/blender/editors/interface/interface_templates.c (+238, -0) (View)
/source/blender/editors/object/object_modifier.c (+98, -0) (View)
/source/blender/editors/space_image/image_buttons.c (+1476, -0) (View)
/source/blender/editors/space_view3d/view3d_toolbar.c (+189, -0) (View)
/source/blender/makesrna/intern/rna_fcurve.c (+656, -0) (View)
/source/blender/makesrna/intern/rna_ui.c (+565, -0) (View)
/source/blender/python/intern/bpy_operator_wrap.c (+481, -0) (View)
/source/blender/python/intern/bpy_operator_wrap.h (+34, -0) (View)
/source/gameengine/Ketsji/KX_Dome.cpp (+1819, -0) (View)
/source/gameengine/Ketsji/KX_Dome.h (+183, -0) (View)
/source/gameengine/Ketsji/KX_PythonInitTypes.cpp (+233, -0) (View)
/source/gameengine/Ketsji/KX_PythonInitTypes.h (+35, -0) (View)
/source/gameengine/Physics/Bullet/CcdGraphicController.cpp (+112, -0) (View)
/source/gameengine/Physics/Bullet/CcdGraphicController.h (+74, -0) (View)
/source/gameengine/Physics/common/PHY_IController.cpp (+39, -0) (View)
/source/gameengine/Physics/common/PHY_IController.h (+53, -0) (View)
/source/gameengine/Physics/common/PHY_IGraphicController.cpp (+39, -0) (View)
/source/gameengine/Physics/common/PHY_IGraphicController.h (+56, -0) (View)
/source/gameengine/PyDoc/bge_api_validate_py.txt (+110, -0) (View)
/source/gameengine/PyDoc/BL_Shader.py (+228, -0) (View)
/source/gameengine/PyDoc/CListValue.py (+59, -0) (View)
/source/gameengine/PyDoc/GameTypes.py (+75, -0) (View)
/source/gameengine/PyDoc/KX_BlenderMaterial.py (+38, -0) (View)
/source/gameengine/PyDoc/KX_ConstraintWrapper.py (+28, -0) (View)
/source/gameengine/PyDoc/KX_LightObject.py (+45, -0) (View)
/source/gameengine/PyDoc/KX_PhysicsObjectWrapper.py (+47, -0) (View)
/source/gameengine/PyDoc/KX_SCA_DynamicActuator.py (+30, -0) (View)
/source/gameengine/PyDoc/KX_VehicleWrapper.py (+166, -0) (View)
/source/gameengine/PyDoc/SCA_2DFilterActuator.py (+44, -0) (View)
/source/gameengine/PyDoc/SCA_ActuatorSensor.py (+33, -0) (View)
/source/gameengine/PyDoc/SCA_NANDController.py (+11, -0) (View)
/source/gameengine/PyDoc/SCA_NORController.py (+11, -0) (View)
/source/gameengine/PyDoc/SCA_XNORController.py (+11, -0) (View)
/source/gameengine/PyDoc/SCA_XORController.py (+11, -0) (View)
120 Deleted Paths:
/extern/bFTGL/cleanup (+0, -4)
/extern/bFTGL/CMakeLists.txt (+0, -32)
/extern/bFTGL/COPYING.txt (+0, -481)
/extern/bFTGL/include/FTBBox.h (+0, -124)
/extern/bFTGL/include/FTBitmapGlyph.h (+0, -76)
/extern/bFTGL/include/FTBufferGlyph.h (+0, -76)
/extern/bFTGL/include/FTCharmap.h (+0, -136)
/extern/bFTGL/include/FTCharToGlyphIndexMap.h (+0, -130)
/extern/bFTGL/include/FTContour.h (+0, -88)
/extern/bFTGL/include/FTExtrdGlyph.h (+0, -71)
/extern/bFTGL/include/FTFace.h (+0, -149)
/extern/bFTGL/include/FTFont.h (+0, -260)
/extern/bFTGL/include/FTGL.h (+0, -100)
/extern/bFTGL/include/FTGLBitmapFont.h (+0, -65)
/extern/bFTGL/include/FTGLBufferFont.h (+0, -76)
/extern/bFTGL/include/FTGLExtrdFont.h (+0, -55)
/extern/bFTGL/include/FTGLOutlineFont.h (+0, -64)
/extern/bFTGL/include/FTGLPixmapFont.h (+0, -68)
/extern/bFTGL/include/FTGLPolygonFont.h (+0, -53)
/extern/bFTGL/include/FTGLTextureFont.h (+0, -151)
/extern/bFTGL/include/FTGlyph.h (+0, -89)
/extern/bFTGL/include/FTGlyphContainer.h (+0, -127)
/extern/bFTGL/include/FTLibrary.h (+0, -97)
/extern/bFTGL/include/FTList.h (+0, -112)
/extern/bFTGL/include/FTOutlineGlyph.h (+0, -54)
/extern/bFTGL/include/FTPixmapGlyph.h (+0, -68)
/extern/bFTGL/include/FTPoint.h (+0, -85)
/extern/bFTGL/include/FTPolyGlyph.h (+0, -55)
/extern/bFTGL/include/FTSize.h (+0, -132)
/extern/bFTGL/include/FTTextureGlyph.h (+0, -89)
/extern/bFTGL/include/FTVector.h (+0, -190)
/extern/bFTGL/include/FTVectoriser.h (+0, -275)
/extern/bFTGL/license.txt (+0, -27)
/extern/bFTGL/make/msvc_7_0/ftgl_static_lib.vcproj (+0, -406)
/extern/bFTGL/make/msvc_9_0/ftgl_static_lib.vcproj (+0, -537)
/extern/bFTGL/README.txt (+0, -51)
/extern/bFTGL/SConscript (+0, -12)
/extern/bFTGL/src/FTBitmapGlyph.cpp (+0, -66)
/extern/bFTGL/src/FTBufferGlyph.cpp (+0, -59)
/extern/bFTGL/src/FTCharmap.cpp (+0, -62)
/extern/bFTGL/src/FTContour.cpp (+0, -149)
/extern/bFTGL/src/FTExtrdGlyph.cpp (+0, -141)
/extern/bFTGL/src/FTFace.cpp (+0, -154)
/extern/bFTGL/src/FTFont.cpp (+0, -271)
/extern/bFTGL/src/FTGLBitmapFont.cpp (+0, -66)
/extern/bFTGL/src/FTGLBufferFont.cpp (+0, -53)
/extern/bFTGL/src/FTGLExtrdFont.cpp (+0, -35)
/extern/bFTGL/src/FTGLOutlineFont.cpp (+0, -66)
/extern/bFTGL/src/FTGLPixmapFont.cpp (+0, -68)
/extern/bFTGL/src/FTGLPolygonFont.cpp (+0, -33)
/extern/bFTGL/src/FTGLTextureFont.cpp (+0, -178)
/extern/bFTGL/src/FTGlyph.cpp (+0, -17)
/extern/bFTGL/src/FTGlyphContainer.cpp (+0, -93)
/extern/bFTGL/src/FTLibrary.cpp (+0, -64)
/extern/bFTGL/src/FTOutlineGlyph.cpp (+0, -57)
/extern/bFTGL/src/FTPixmapGlyph.cpp (+0, -109)
/extern/bFTGL/src/FTPoint.cpp (+0, -14)
/extern/bFTGL/src/FTPolyGlyph.cpp (+0, -62)
/extern/bFTGL/src/FTSize.cpp (+0, -105)
/extern/bFTGL/src/FTTextureGlyph.cpp (+0, -87)
/extern/bFTGL/src/FTVectoriser.cpp (+0, -229)
/extern/bFTGL/src/Makefile (+0, -60)
/extern/bFTGL/win32_vcpp/ftgl.dsw (+0, -92)
/extern/bFTGL/win32_vcpp/ftgl_dll/ftgl_dll.dsp (+0, -357)
/extern/bFTGL/win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp (+0, -342)
/extern/bFTGL/win32_vcpp/README_WIN32.txt (+0, -206)
/extern/bFTGL/win32_vcpp/unit_tests/unit_tests.dsp (+0, -168)
/intern/bmfont/BMF_Api.h (+0, -162)
/intern/bmfont/BMF_Fonts.h (+0, -74)
/intern/bmfont/BMF_Settings.h (+0, -67)
/intern/bmfont/CMakeLists.txt (+0, -32)
/intern/bmfont/intern/BDF2BMF.py (+0, -177)
/intern/bmfont/intern/BMF_Api.cpp (+0, -183)
/intern/bmfont/intern/BMF_BitmapFont.cpp (+0, -323)
/intern/bmfont/intern/BMF_BitmapFont.h (+0, -140)
/intern/bmfont/intern/BMF_FontData.h (+0, -55)
/intern/bmfont/intern/BMF_font_helv10.cpp (+0, -494)
/intern/bmfont/intern/BMF_font_helv12.cpp (+0, -525)
/intern/bmfont/intern/BMF_font_helvb10.cpp (+0, -492)
/intern/bmfont/intern/BMF_font_helvb12.cpp (+0, -565)
/intern/bmfont/intern/BMF_font_helvb14.cpp (+0, -623)
/intern/bmfont/intern/BMF_font_helvb8.cpp (+0, -455)
/intern/bmfont/intern/BMF_font_scr12.cpp (+0, -484)
/intern/bmfont/intern/BMF_font_scr14.cpp (+0, -510)
/intern/bmfont/intern/BMF_font_scr15.cpp (+0, -525)
/intern/bmfont/intern/Makefile (+0, -41)
/intern/bmfont/make/msvc_6_0/bmfont.dsp (+0, -176)
/intern/bmfont/make/msvc_6_0/bmfont.dsw (+0, -29)
/intern/bmfont/make/msvc_7_0/bmfont.sln (+0, -21)
/intern/bmfont/make/msvc_7_0/bmfont.vcproj (+0, -314)
/intern/bmfont/make/msvc_9_0/bmfont.vcproj (+0, -413)
/intern/bmfont/Makefile (+0, -52)
/intern/bmfont/SConscript (+0, -10)
/intern/bmfont/test/make/msvc_6_0/BMF_Test.dsp (+0, -109)
/intern/bmfont/test/make/msvc_6_0/BMF_Test.dsw (+0, -44)
/intern/bmfont/test/Makefile (+0, -60)
/intern/bmfont/test/simpletest/BMF_Test.cpp (+0, -226)
/intern/bmfont/test/simpletest/Makefile (+0, -42)
/release/scripts/scripttemplate_camer_object.py (+0, -104)
/source/blender/blenfont/intern/blf_font_helv10.h (+0, -487)
/source/blender/blenfont/intern/blf_internal.c (+0, -290)
/source/blender/editors/gpencil/gpencil.c (+0, -2161)
/source/blender/editors/include/UI_text.h (+0, -53)
/source/blender/editors/interface/text.c (+0, -276)
/source/blender/editors/space_buttons/buttons_object.c (+0, -216)
/source/blender/editors/space_buttons/buttons_scene.c (+0, -333)
/source/blender/editors/space_image/image_panels.c (+0, -1470)
/source/blender/ftfont/CMakeLists.txt (+0, -43)
/source/blender/ftfont/FTF_Api.h (+0, -163)
/source/blender/ftfont/FTF_Settings.h (+0, -46)
/source/blender/ftfont/intern/FTF_Api.cpp (+0, -205)
/source/blender/ftfont/intern/FTF_TTFont.cpp (+0, -403)
/source/blender/ftfont/intern/FTF_TTFont.h (+0, -136)
/source/blender/ftfont/intern/Makefile (+0, -56)
/source/blender/ftfont/Makefile (+0, -34)
/source/blender/ftfont/SConscript (+0, -16)
/source/blender/python/intern/bpy_opwrapper.c (+0, -531)
/source/blender/python/intern/bpy_opwrapper.h (+0, -34)
/source/gameengine/PyDoc/KX_ActuatorSensor.py (+0, -32)
/source/gameengine/PyDoc/KX_Light.py (+0, -45)
/extern/bFTGL/CMakeLists.txt (+0, -32)
/extern/bFTGL/COPYING.txt (+0, -481)
/extern/bFTGL/include/FTBBox.h (+0, -124)
/extern/bFTGL/include/FTBitmapGlyph.h (+0, -76)
/extern/bFTGL/include/FTBufferGlyph.h (+0, -76)
/extern/bFTGL/include/FTCharmap.h (+0, -136)
/extern/bFTGL/include/FTCharToGlyphIndexMap.h (+0, -130)
/extern/bFTGL/include/FTContour.h (+0, -88)
/extern/bFTGL/include/FTExtrdGlyph.h (+0, -71)
/extern/bFTGL/include/FTFace.h (+0, -149)
/extern/bFTGL/include/FTFont.h (+0, -260)
/extern/bFTGL/include/FTGL.h (+0, -100)
/extern/bFTGL/include/FTGLBitmapFont.h (+0, -65)
/extern/bFTGL/include/FTGLBufferFont.h (+0, -76)
/extern/bFTGL/include/FTGLExtrdFont.h (+0, -55)
/extern/bFTGL/include/FTGLOutlineFont.h (+0, -64)
/extern/bFTGL/include/FTGLPixmapFont.h (+0, -68)
/extern/bFTGL/include/FTGLPolygonFont.h (+0, -53)
/extern/bFTGL/include/FTGLTextureFont.h (+0, -151)
/extern/bFTGL/include/FTGlyph.h (+0, -89)
/extern/bFTGL/include/FTGlyphContainer.h (+0, -127)
/extern/bFTGL/include/FTLibrary.h (+0, -97)
/extern/bFTGL/include/FTList.h (+0, -112)
/extern/bFTGL/include/FTOutlineGlyph.h (+0, -54)
/extern/bFTGL/include/FTPixmapGlyph.h (+0, -68)
/extern/bFTGL/include/FTPoint.h (+0, -85)
/extern/bFTGL/include/FTPolyGlyph.h (+0, -55)
/extern/bFTGL/include/FTSize.h (+0, -132)
/extern/bFTGL/include/FTTextureGlyph.h (+0, -89)
/extern/bFTGL/include/FTVector.h (+0, -190)
/extern/bFTGL/include/FTVectoriser.h (+0, -275)
/extern/bFTGL/license.txt (+0, -27)
/extern/bFTGL/make/msvc_7_0/ftgl_static_lib.vcproj (+0, -406)
/extern/bFTGL/make/msvc_9_0/ftgl_static_lib.vcproj (+0, -537)
/extern/bFTGL/README.txt (+0, -51)
/extern/bFTGL/SConscript (+0, -12)
/extern/bFTGL/src/FTBitmapGlyph.cpp (+0, -66)
/extern/bFTGL/src/FTBufferGlyph.cpp (+0, -59)
/extern/bFTGL/src/FTCharmap.cpp (+0, -62)
/extern/bFTGL/src/FTContour.cpp (+0, -149)
/extern/bFTGL/src/FTExtrdGlyph.cpp (+0, -141)
/extern/bFTGL/src/FTFace.cpp (+0, -154)
/extern/bFTGL/src/FTFont.cpp (+0, -271)
/extern/bFTGL/src/FTGLBitmapFont.cpp (+0, -66)
/extern/bFTGL/src/FTGLBufferFont.cpp (+0, -53)
/extern/bFTGL/src/FTGLExtrdFont.cpp (+0, -35)
/extern/bFTGL/src/FTGLOutlineFont.cpp (+0, -66)
/extern/bFTGL/src/FTGLPixmapFont.cpp (+0, -68)
/extern/bFTGL/src/FTGLPolygonFont.cpp (+0, -33)
/extern/bFTGL/src/FTGLTextureFont.cpp (+0, -178)
/extern/bFTGL/src/FTGlyph.cpp (+0, -17)
/extern/bFTGL/src/FTGlyphContainer.cpp (+0, -93)
/extern/bFTGL/src/FTLibrary.cpp (+0, -64)
/extern/bFTGL/src/FTOutlineGlyph.cpp (+0, -57)
/extern/bFTGL/src/FTPixmapGlyph.cpp (+0, -109)
/extern/bFTGL/src/FTPoint.cpp (+0, -14)
/extern/bFTGL/src/FTPolyGlyph.cpp (+0, -62)
/extern/bFTGL/src/FTSize.cpp (+0, -105)
/extern/bFTGL/src/FTTextureGlyph.cpp (+0, -87)
/extern/bFTGL/src/FTVectoriser.cpp (+0, -229)
/extern/bFTGL/src/Makefile (+0, -60)
/extern/bFTGL/win32_vcpp/ftgl.dsw (+0, -92)
/extern/bFTGL/win32_vcpp/ftgl_dll/ftgl_dll.dsp (+0, -357)
/extern/bFTGL/win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp (+0, -342)
/extern/bFTGL/win32_vcpp/README_WIN32.txt (+0, -206)
/extern/bFTGL/win32_vcpp/unit_tests/unit_tests.dsp (+0, -168)
/intern/bmfont/BMF_Api.h (+0, -162)
/intern/bmfont/BMF_Fonts.h (+0, -74)
/intern/bmfont/BMF_Settings.h (+0, -67)
/intern/bmfont/CMakeLists.txt (+0, -32)
/intern/bmfont/intern/BDF2BMF.py (+0, -177)
/intern/bmfont/intern/BMF_Api.cpp (+0, -183)
/intern/bmfont/intern/BMF_BitmapFont.cpp (+0, -323)
/intern/bmfont/intern/BMF_BitmapFont.h (+0, -140)
/intern/bmfont/intern/BMF_FontData.h (+0, -55)
/intern/bmfont/intern/BMF_font_helv10.cpp (+0, -494)
/intern/bmfont/intern/BMF_font_helv12.cpp (+0, -525)
/intern/bmfont/intern/BMF_font_helvb10.cpp (+0, -492)
/intern/bmfont/intern/BMF_font_helvb12.cpp (+0, -565)
/intern/bmfont/intern/BMF_font_helvb14.cpp (+0, -623)
/intern/bmfont/intern/BMF_font_helvb8.cpp (+0, -455)
/intern/bmfont/intern/BMF_font_scr12.cpp (+0, -484)
/intern/bmfont/intern/BMF_font_scr14.cpp (+0, -510)
/intern/bmfont/intern/BMF_font_scr15.cpp (+0, -525)
/intern/bmfont/intern/Makefile (+0, -41)
/intern/bmfont/make/msvc_6_0/bmfont.dsp (+0, -176)
/intern/bmfont/make/msvc_6_0/bmfont.dsw (+0, -29)
/intern/bmfont/make/msvc_7_0/bmfont.sln (+0, -21)
/intern/bmfont/make/msvc_7_0/bmfont.vcproj (+0, -314)
/intern/bmfont/make/msvc_9_0/bmfont.vcproj (+0, -413)
/intern/bmfont/Makefile (+0, -52)
/intern/bmfont/SConscript (+0, -10)
/intern/bmfont/test/make/msvc_6_0/BMF_Test.dsp (+0, -109)
/intern/bmfont/test/make/msvc_6_0/BMF_Test.dsw (+0, -44)
/intern/bmfont/test/Makefile (+0, -60)
/intern/bmfont/test/simpletest/BMF_Test.cpp (+0, -226)
/intern/bmfont/test/simpletest/Makefile (+0, -42)
/release/scripts/scripttemplate_camer_object.py (+0, -104)
/source/blender/blenfont/intern/blf_font_helv10.h (+0, -487)
/source/blender/blenfont/intern/blf_internal.c (+0, -290)
/source/blender/editors/gpencil/gpencil.c (+0, -2161)
/source/blender/editors/include/UI_text.h (+0, -53)
/source/blender/editors/interface/text.c (+0, -276)
/source/blender/editors/space_buttons/buttons_object.c (+0, -216)
/source/blender/editors/space_buttons/buttons_scene.c (+0, -333)
/source/blender/editors/space_image/image_panels.c (+0, -1470)
/source/blender/ftfont/CMakeLists.txt (+0, -43)
/source/blender/ftfont/FTF_Api.h (+0, -163)
/source/blender/ftfont/FTF_Settings.h (+0, -46)
/source/blender/ftfont/intern/FTF_Api.cpp (+0, -205)
/source/blender/ftfont/intern/FTF_TTFont.cpp (+0, -403)
/source/blender/ftfont/intern/FTF_TTFont.h (+0, -136)
/source/blender/ftfont/intern/Makefile (+0, -56)
/source/blender/ftfont/Makefile (+0, -34)
/source/blender/ftfont/SConscript (+0, -16)
/source/blender/python/intern/bpy_opwrapper.c (+0, -531)
/source/blender/python/intern/bpy_opwrapper.h (+0, -34)
/source/gameengine/PyDoc/KX_ActuatorSensor.py (+0, -32)
/source/gameengine/PyDoc/KX_Light.py (+0, -45)
869 Modified Paths:
/blenderplayer/CMakeLists.txt (+0, -3) (Diff)
/CMake/macros.cmake (+19, -2) (Diff)
/CMakeLists.txt (+10, -14) (Diff)
/config/darwin-config.py (+1, -13) (Diff)
/config/irix6-config.py (+1, -9) (Diff)
/config/linux2-config.py (+2, -15) (Diff)
/config/linuxcross-config.py (+0, -8) (Diff)
/config/openbsd3-config.py (+0, -8) (Diff)
/config/sunos5-config.py (+0, -8) (Diff)
/config/win32-mingw-config.py (+0, -8) (Diff)
/config/win32-vc-config.py (+1, -9) (Diff)
/config/win64-vc-config.py (+3, -8) (Diff)
/extern/bullet2/make/msvc_9_0/Bullet.vcproj (+5, -1) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.cpp (+3, -4) (Diff)
/extern/bullet2/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.cpp (+11, -6) (Diff)
/extern/CMakeLists.txt (+0, -8) (Diff)
/extern/libopenjpeg/opj_includes.h (+7, -0) (Diff)
/extern/make/msvc_9_0/build_install_all.vcproj (+1, -1) (Diff)
/extern/Makefile (+0, -8) (Diff)
/extern/SConscript (+0, -3) (Diff)
/intern/boolop/intern/BOP_Merge2.cpp (+1, -1) (Diff)
/intern/boolop/intern/BOP_Misc.h (+1, -1) (Diff)
/intern/boolop/make/msvc_6_0/boolop.dsp (+222, -222) (Diff)
/intern/bsp/make/msvc6_0/bsplib.dsp (+138, -138) (Diff)
/intern/bsp/make/msvc6_0/bsplib.dsw (+29, -29) (Diff)
/intern/bsp/test/BSP_GhostTest/BSP_GhostTest.dsp (+126, -126) (Diff)
/intern/bsp/test/BSP_GhostTest/BSP_GhostTest.dsw (+125, -125) (Diff)
/intern/CMakeLists.txt (+1, -1) (Diff)
/intern/container/make/msvc_6_0/container.dsp (+133, -133) (Diff)
/intern/container/make/msvc_6_0/container.dsw (+29, -29) (Diff)
/intern/decimation/make/msvc_6_0/decimation.dsp (+186, -186) (Diff)
/intern/decimation/make/msvc_6_0/decimation.dsw (+33, -33) (Diff)
/intern/elbeem/make/msvc_6_0/elbeem.dsp (+290, -290) (Diff)
/intern/ghost/intern/GHOST_SystemWin32.cpp (+5, -2) (Diff)
/intern/ghost/intern/GHOST_SystemX11.cpp (+282, -120) (Diff)
/intern/ghost/intern/GHOST_SystemX11.h (+19, -3) (Diff)
/intern/ghost/make/msvc/ghost.dsp (+292, -292) (Diff)
/intern/ghost/make/msvc/ghost.dsw (+29, -29) (Diff)
/intern/ghost/test/make/msvc_6_0/gears.dsp (+102, -102) (Diff)
/intern/ghost/test/make/msvc_6_0/gears_C.dsp (+102, -102) (Diff)
/intern/ghost/test/make/msvc_6_0/ghost_test.dsw (+77, -77) (Diff)
/intern/ghost/test/multitest/Makefile (+0, -2) (Diff)
/intern/guardedalloc/mmap_win.h (+1, -1) (Diff)
/intern/iksolver/make/msvc_6_0/iksolver.dsp (+260, -260) (Diff)
/intern/iksolver/make/msvc_6_0/iksolver.dsw (+35, -35) (Diff)
/intern/iksolver/test/ik_glut_test/make/msvc_6_0/ik_glut_test.dsp (+130, -130) (Diff)
/intern/iksolver/test/ik_glut_test/make/msvc_6_0/ik_glut_test.dsw (+49, -49) (Diff)
/intern/make/msvc_6_0/build_install_all.dsp (+68, -68) (Diff)
/intern/make/msvc_6_0/intern.dsw (+302, -302) (Diff)
/intern/Makefile (+1, -1) (Diff)
/intern/memutil/make/msvc_60/memutil.dsp (+150, -150) (Diff)
/intern/memutil/make/msvc_60/memutil.dsw (+29, -29) (Diff)
/intern/moto/include/MT_Quaternion.inl (+17, -9) (Diff)
/intern/moto/make/msvc_6_0/MoTo.dsp (+379, -379) (Diff)
/intern/moto/make/msvc_6_0/MoTo.dsw (+29, -29) (Diff)
/intern/opennl/make/msvc_6_0/OpenNL.dsp (+252, -252) (Diff)
/intern/opennl/make/msvc_6_0/OpenNL.dsw (+29, -29) (Diff)
/intern/SConscript (+0, -1) (Diff)
/intern/SoundSystem/dummy/SND_DummyDevice.cpp (+1, -1) (Diff)
/intern/SoundSystem/intern/Makefile (+0, -2) (Diff)
/intern/SoundSystem/intern/SND_DeviceManager.cpp (+0, -15) (Diff)
/intern/SoundSystem/intern/SND_Scene.cpp (+0, -23) (Diff)
/intern/SoundSystem/intern/SND_Utils.cpp (+0, -32) (Diff)
/intern/SoundSystem/make/msvc_6_0/dummy/DummySoundSystem.dsp (+103, -103) (Diff)
/intern/SoundSystem/make/msvc_6_0/openal/OpenALSoundSystem.dsp (+106, -106) (Diff)
/intern/SoundSystem/make/msvc_6_0/SoundSystem.dsp (+206, -206) (Diff)
/intern/SoundSystem/Makefile (+0, -1) (Diff)
/intern/SoundSystem/openal/SND_OpenALDevice.cpp (+1, -1) (Diff)
/intern/SoundSystem/SND_DependKludge.h (+0, -3) (Diff)
/intern/SoundSystem/SoundDefines.h (+0, -10) (Diff)
/intern/string/make/msvc_6_0/string.dsp (+122, -122) (Diff)
/intern/string/make/msvc_6_0/string.dsw (+29, -29) (Diff)
/po/Makefile (+4, -1) (Diff)
/projectfiles/blender/avi/BL_avi.dsp (+199, -199) (Diff)
/projectfiles/blender/blender.dsp (+124, -124) (Diff)
/projectfiles/blender/blender.dsw (+743, -743) (Diff)
/projectfiles/blender/blenkernel/BKE_blenkernel.dsp (+564, -564) (Diff)
/projectfiles/blender/blenlib/BLI_blenlib.dsp (+318, -318) (Diff)
/projectfiles/blender/blenpluginapi/blenpluginapi/blenpluginapi.dsp (+119, -119) (Diff)
/projectfiles/blender/BLO_readblenfile/BLO_readblenfile.dsp (+155, -155) (Diff)
/projectfiles/blender/BPY_python/BPY_python.dsp (+588, -588) (Diff)
/projectfiles/blender/ftfont/FTF_ftfont.dsp (+118, -118) (Diff)
/projectfiles/blender/glut/BL_glut.dsp (+324, -324) (Diff)
/projectfiles/blender/imbuf/BL_imbuf.dsp (+438, -438) (Diff)
/projectfiles/blender/img/BL_img.dsp (+171, -171) (Diff)
/projectfiles/blender/loader/BLO_loader.dsp (+186, -186) (Diff)
/projectfiles/blender/makesdna/DNA_makesdna.dsp (+373, -373) (Diff)
/projectfiles/blender/radiosity/BRA_radiosity.dsp (+133, -133) (Diff)
/projectfiles/blender/render/BRE_render.dsp (+192, -192) (Diff)
/projectfiles/blender/renderconverter/BRE_renderconverter.dsp (+102, -102) (Diff)
/projectfiles/blender/src/BL_src.dsp (+1040, -1040) (Diff)
/projectfiles/blender/src/BL_src_cre.dsp (+102, -102) (Diff)
/projectfiles/datatoc/datatoc.dsp (+100, -100) (Diff)
/projectfiles/gameengine/blenderhook/KX_blenderhook.dsp (+161, -161) (Diff)
/projectfiles/gameengine/converter/KX_converter.dsp (+278, -278) (Diff)
/projectfiles/gameengine/expression/EXP_expressions.dsp (+302, -302) (Diff)
/projectfiles/gameengine/gamelogic/SCA_gamelogic.dsp (+406, -406) (Diff)
/projectfiles/gameengine/gameplayer/axctl/GP_axctl.dsp (+253, -253) (Diff)
/projectfiles/gameengine/gameplayer/common/GP_common.dsp (+255, -255) (Diff)
/projectfiles/gameengine/gameplayer/ghost/GP_ghost.dsp (+156, -156) (Diff)
/projectfiles/gameengine/gameplayer/glut/GP_glut.dsp (+205, -205) (Diff)
/projectfiles/gameengine/gameplayer/loader/BlenderLoader/BlenderLoader.dsp (+206, -206) (Diff)
/projectfiles/gameengine/gameplayer/netscape/GP_netscape.dsp (+173, -173) (Diff)
/projectfiles/gameengine/gameplayer/netscape2/GP_netscape.dsp (+181, -181) (Diff)
/projectfiles/gameengine/gameplayer/ps2/GP_ps2.dsp (+182, -182) (Diff)
/projectfiles/gameengine/gameplayer/qt/gp.dsp (+164, -164) (Diff)
/projectfiles/gameengine/gameplayer/qt/gpplugin.dsp (+824, -824) (Diff)
/projectfiles/gameengine/gameplayer/qt/qtgp.dsw (+323, -323) (Diff)
/projectfiles/gameengine/gameplayer/sdl/GP_sdl.dsp (+205, -205) (Diff)
/projectfiles/gameengine/ketsji/KX_ketsji.dsp (+690, -690) (Diff)
/projectfiles/gameengine/ketsji/network/KX_network.dsp (+186, -186) (Diff)
/projectfiles/gameengine/network/loopbacknetwork/NG_loopbacknetwork.dsp (+155, -155) (Diff)
/projectfiles/gameengine/network/network/NG_network.dsp (+174, -174) (Diff)
/projectfiles/gameengine/network/terraplaynetwork/NG_terraplaynetwork.dsp (+180, -180) (Diff)
/projectfiles/gameengine/physics/PHY_Physics/PHY_Dummy/PHY_Dummy.dsp (+154, -154) (Diff)
/projectfiles/gameengine/physics/PHY_Physics/PHY_Ode/PHY_Ode.dsp (+162, -162) (Diff)
/projectfiles/gameengine/physics/PHY_Physics/PHY_Physics.dsp (+178, -178) (Diff)
/projectfiles/gameengine/physics/PHY_Physics/PHY_Sumo/PHY_Sumo.dsp (+162, -162) (Diff)
/projectfiles/gameengine/rasterizer/openglrasterizer/RAS_openglrasterizer.dsp (+183, -183) (Diff)
/projectfiles/gameengine/rasterizer/RAS_rasterizer.dsp (+243, -243) (Diff)
/projectfiles/gameengine/scenegraph/SG_scenegraph.dsp (+199, -199) (Diff)
/projectfiles/kernel/gen_messaging/gen_messaging.dsp (+155, -155) (Diff)
/projectfiles/kernel/system/SYS_system.dsp (+183, -183) (Diff)
/projectfiles/sumo/fuzzics/SM_fuzzics.dsp (+216, -216) (Diff)
/projectfiles/sumo/moto/SM_moto.dsp (+332, -332) (Diff)
/projectfiles/sumo/solid/SM_solid.dsp (+340, -340) (Diff)
/projectfiles_vc7/sumo/moto/SM_moto.dsp (+332, -332) (Diff)
/projectfiles_vc7/sumo/solid/SM_solid.dsp (+340, -340) (Diff)
/projectfiles_vc9/blender/blender.sln (+1, -57) (Diff)
/projectfiles_vc9/blender/blender.vcproj (+7, -6) (Diff)
/projectfiles_vc9/blender/blenfont/BLF_blenfont.vcproj (+6, -2) (Diff)
/projectfiles_vc9/blender/blenkernel/BKE_blenkernel.vcproj (+8, -4) (Diff)
/projectfiles_vc9/blender/blenlib/BLI_blenlib.vcproj (+5, -5) (Diff)
/projectfiles_vc9/blender/BPY_python/BPY_python.vcproj (+9, -1) (Diff)
/projectfiles_vc9/blender/editors/ED_editors.vcproj (+75, -55) (Diff)
/projectfiles_vc9/blender/makesrna/RNA_makesrna.vcproj (+18, -6) (Diff)
/projectfiles_vc9/blender/makesrna/RNA_rna.vcproj (+10, -2) (Diff)
/projectfiles_vc9/blender/nodes/nodes.vcproj (+4, -4) (Diff)
/projectfiles_vc9/gameengine/gameplayer/ghost/GP_ghost.vcproj (+2, -2) (Diff)
/projectfiles_vc9/gameengine/ketsji/KX_ketsji.vcproj (+16, -0) (Diff)
/projectfiles_vc9/gameengine/physics/PHY_Physics/PHY_Bullet/PHY_Bullet.vcproj (+15, -6) (Diff)
/projectfiles_vc9/gameengine/physics/PHY_Physics/PHY_Physics.vcproj (+17, -0) (Diff)
/release/datafiles/blenderbuttons (+0, -0) (Diff)
/release/datafiles/prvicons (+0, -0) (Diff)
/release/getversion.py (+10, -3) (Diff)
/release/Makefile (+8, -4) (Diff)
/release/scripts/3ds_import.py (+5, -0) (Diff)
/release/scripts/bevel_center.py (+1, -1) (Diff)
/release/scripts/bpymodules/dxfLibrary.py (+40, -19) (Diff)
/release/scripts/export_dxf.py (+160, -35) (Diff)
/release/scripts/image_auto_layout.py (+8, -5) (Diff)
/release/scripts/import_dxf.py (+160, -85) (Diff)
/release/scripts/import_obj.py (+2, -0) (Diff)
/release/scripts/import_web3d.py (+5, -2) (Diff)
/release/scripts/uvcalc_smart_project.py (+1, -1) (Diff)
/release/VERSION (+1, -1) (Diff)
/release/windows/specific.sh (+0, -4) (Diff)
/SConstruct (+56, -31) (Diff)
/source/blender/blenfont/BLF_api.h (+52, -21) (Diff)
/source/blender/blenfont/CMakeLists.txt (+1, -7) (Diff)
/source/blender/blenfont/intern/blf.c (+186, -50) (Diff)
/source/blender/blenfont/intern/blf_dir.c (+34, -4) (Diff)
/source/blender/blenfont/intern/blf_font.c (+67, -57) (Diff)
/source/blender/blenfont/intern/blf_glyph.c (+279, -67) (Diff)
/source/blender/blenfont/intern/blf_internal.h (+9, -5) (Diff)
/source/blender/blenfont/intern/blf_internal_types.h (+41, -69) (Diff)
/source/blender/blenfont/intern/blf_lang.c (+95, -179) (Diff)
/source/blender/blenfont/intern/blf_util.c (+18, -25) (Diff)
/source/blender/blenfont/intern/Makefile (+0, -5) (Diff)
/source/blender/blenfont/SConscript (+1, -6) (Diff)
/source/blender/blenkernel/BKE_action.h (+2, -3) (Diff)
/source/blender/blenkernel/BKE_animsys.h (+22, -0) (Diff)
/source/blender/blenkernel/BKE_blender.h (+3, -0) (Diff)
/source/blender/blenkernel/BKE_bmesh.h (+1, -1) (Diff)
/source/blender/blenkernel/BKE_bmeshCustomData.h (+1, -1) (Diff)
/source/blender/blenkernel/BKE_booleanops.h (+2, -3) (Diff)
/source/blender/blenkernel/BKE_bvhutils.h (+42, -3) (Diff)
/source/blender/blenkernel/BKE_cloth.h (+1, -1) (Diff)
/source/blender/blenkernel/BKE_collision.h (+1, -1) (Diff)
/source/blender/blenkernel/BKE_colortools.h (+1, -0) (Diff)
/source/blender/blenkernel/BKE_constraint.h (+3, -1) (Diff)
/source/blender/blenkernel/BKE_curve.h (+5, -1) (Diff)
/source/blender/blenkernel/BKE_DerivedMesh.h (+2, -0) (Diff)
/source/blender/blenkernel/BKE_fcurve.h (+13, -0) (Diff)
/source/blender/blenkernel/BKE_global.h (+0, -4) (Diff)
/source/blender/blenkernel/BKE_library.h (+1, -0) (Diff)
/source/blender/blenkernel/BKE_main.h (+1, -0) (Diff)
/source/blender/blenkernel/BKE_mesh.h (+4, -0) (Diff)
/source/blender/blenkernel/BKE_particle.h (+17, -2) (Diff)
/source/blender/blenkernel/BKE_scene.h (+3, -0) (Diff)
/source/blender/blenkernel/BKE_screen.h (+49, -9) (Diff)
/source/blender/blenkernel/BKE_shrinkwrap.h (+17, -2) (Diff)
/source/blender/blenkernel/BKE_suggestions.h (+1, -1) (Diff)
/source/blender/blenkernel/CMakeLists.txt (+1, -5) (Diff)
/source/blender/blenkernel/intern/action.c (+73, -42) (Diff)
/source/blender/blenkernel/intern/anim.c (+48, -64) (Diff)
/source/blender/blenkernel/intern/anim_sys.c (+53, -12) (Diff)
/source/blender/blenkernel/intern/blender.c (+11, -2) (Diff)
/source/blender/blenkernel/intern/bmesh_private.h (+1, -1) (Diff)
/source/blender/blenkernel/intern/BME_conversions.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/BME_Customdata.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/BME_eulers.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/BME_mesh.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/BME_structure.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/BME_tools.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/booleanops.c (+66, -56) (Diff)
/source/blender/blenkernel/intern/bvhutils.c (+153, -43) (Diff)
/source/blender/blenkernel/intern/cdderivedmesh.c (+5, -8) (Diff)
/source/blender/blenkernel/intern/colortools.c (+36, -0) (Diff)
/source/blender/blenkernel/intern/constraint.c (+211, -24) (Diff)
/source/blender/blenkernel/intern/context.c (+0, -1) (Diff)
/source/blender/blenkernel/intern/curve.c (+9, -9) (Diff)
/source/blender/blenkernel/intern/customdata.c (+5, -3) (Diff)
/source/blender/blenkernel/intern/depsgraph.c (+17, -77) (Diff)
/source/blender/blenkernel/intern/DerivedMesh.c (+111, -120) (Diff)
/source/blender/blenkernel/intern/effect.c (+12, -17) (Diff)
/source/blender/blenkernel/intern/exotic.c (+2, -2) (Diff)
/source/blender/blenkernel/intern/fcurve.c (+364, -74) (Diff)
/source/blender/blenkernel/intern/font.c (+6, -14) (Diff)
/source/blender/blenkernel/intern/image.c (+4, -4) (Diff)
/source/blender/blenkernel/intern/ipo.c (+31, -22) (Diff)
/source/blender/blenkernel/intern/library.c (+35, -2) (Diff)
/source/blender/blenkernel/intern/Makefile (+2, -8) (Diff)
/source/blender/blenkernel/intern/mesh.c (+15, -0) (Diff)
/source/blender/blenkernel/intern/modifier.c (+115, -8) (Diff)
/source/blender/blenkernel/intern/node.c (+29, -10) (Diff)
/source/blender/blenkernel/intern/object.c (+3, -3) (Diff)
/source/blender/blenkernel/intern/particle.c (+129, -13) (Diff)
/source/blender/blenkernel/intern/particle_system.c (+42, -7) (Diff)
/source/blender/blenkernel/intern/scene.c (+16, -0) (Diff)
/source/blender/blenkernel/intern/screen.c (+17, -0) (Diff)
/source/blender/blenkernel/intern/shrinkwrap.c (+147, -153) (Diff)
/source/blender/blenkernel/intern/suggestions.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/text.c (+28, -20) (Diff)
/source/blender/blenkernel/intern/world.c (+2, -0) (Diff)
/source/blender/blenkernel/intern/writeffmpeg.c (+19, -17) (Diff)
/source/blender/blenkernel/SConscript (+19, -18) (Diff)
/source/blender/blenlib/BLI_noise.h (+0, -1) (Diff)
/source/blender/blenlib/BLI_rect.h (+0, -1) (Diff)
/source/blender/blenlib/BLI_string.h (+2, -2) (Diff)
/source/blender/blenlib/BLI_util.h (+3, -1) (Diff)
/source/blender/blenlib/CMakeLists.txt (+0, -4) (Diff)
/source/blender/blenlib/intern/fileops.c (+1, -1) (Diff)
/source/blender/blenlib/intern/freetypefont.c (+2, -6) (Diff)
/source/blender/blenlib/intern/Makefile (+0, -3) (Diff)
/source/blender/blenlib/intern/psfont.c (+1, -0) (Diff)
/source/blender/blenlib/intern/string.c (+5, -2) (Diff)
/source/blender/blenlib/intern/util.c (+97, -3) (Diff)
/source/blender/blenlib/SConscript (+0, -3) (Diff)
/source/blender/blenloader/intern/readblenentry.c (+1, -0) (Diff)
/source/blender/blenloader/intern/readfile.c (+174, -29) (Diff)
/source/blender/blenloader/intern/writefile.c (+44, -29) (Diff)
/source/blender/CMakeLists.txt (+0, -4) (Diff)
/source/blender/editors/animation/anim_channels.c (+286, -43) (Diff)
/source/blender/editors/animation/anim_draw.c (+2, -4) (Diff)
/source/blender/editors/animation/anim_filter.c (+30, -11) (Diff)
/source/blender/editors/animation/anim_ipo_utils.c (+55, -15) (Diff)
/source/blender/editors/animation/anim_markers.c (+193, -62) (Diff)
/source/blender/editors/animation/anim_ops.c (+9, -3) (Diff)
/source/blender/editors/animation/keyframes_draw.c (+0, -3) (Diff)
/source/blender/editors/animation/keyframes_edit.c (+134, -11) (Diff)
/source/blender/editors/animation/keyframing.c (+377, -1328) (Diff)
/source/blender/editors/armature/armature_intern.h (+8, -2) (Diff)
/source/blender/editors/armature/armature_ops.c (+40, -20) (Diff)
/source/blender/editors/armature/BIF_generate.h (+1, -1) (Diff)
/source/blender/editors/armature/BIF_retarget.h (+1, -1) (Diff)
/source/blender/editors/armature/editarmature.c (+13, -12) (Diff)
/source/blender/editors/armature/editarmature_generate.c (+4, -4) (Diff)
/source/blender/editors/armature/editarmature_retarget.c (+12, -11) (Diff)
/source/blender/editors/armature/editarmature_sketch.c (+20, -5) (Diff)
/source/blender/editors/armature/Makefile (+0, -1) (Diff)
/source/blender/editors/armature/poselib.c (+593, -430) (Diff)
/source/blender/editors/armature/poseobject.c (+28, -5) (Diff)
/source/blender/editors/armature/reeb.c (+3, -5) (Diff)
/source/blender/editors/armature/SConscript (+1, -1) (Diff)
/source/blender/editors/CMakeLists.txt (+1, -3) (Diff)
/source/blender/editors/curve/curve_intern.h (+7, -7) (Diff)
/source/blender/editors/curve/curve_ops.c (+24, -22) (Diff)
/source/blender/editors/curve/editcurve.c (+62, -63) (Diff)
/source/blender/editors/curve/editfont.c (+12, -12) (Diff)
/source/blender/editors/curve/Makefile (+0, -1) (Diff)
/source/blender/editors/curve/SConscript (+1, -1) (Diff)
/source/blender/editors/datafiles/blenderbuttons.c (+4566, -4098) (Diff)
/source/blender/editors/datafiles/prvicons.c (+404, -299) (Diff)
/source/blender/editors/gpencil/drawgpencil.c (+8, -6) (Diff)
/source/blender/editors/gpencil/editaction_gpencil.c (+6, -3) (Diff)
/source/blender/editors/gpencil/gpencil_intern.h (+1, -1) (Diff)
/source/blender/editors/gpencil/Makefile (+0, -1) (Diff)
/source/blender/editors/gpencil/SConscript (+1, -1) (Diff)
/source/blender/editors/include/BIF_glutil.h (+2, -0) (Diff)
/source/blender/editors/include/BIF_transform.h (+2, -2) (Diff)
/source/blender/editors/include/ED_anim_api.h (+1, -0) (Diff)
/source/blender/editors/include/ED_fileselect.h (+14, -1) (Diff)
/source/blender/editors/include/ED_gpencil.h (+3, -21) (Diff)
/source/blender/editors/include/ED_keyframes_edit.h (+16, -1) (Diff)
/source/blender/editors/include/ED_keyframing.h (+88, -12) (Diff)
/source/blender/editors/include/ED_markers.h (+16, -4) (Diff)
/source/blender/editors/include/ED_mesh.h (+1, -0) (Diff)
/source/blender/editors/include/ED_screen.h (+4, -0) (Diff)
/source/blender/editors/include/ED_util.h (+1, -0) (Diff)
/source/blender/editors/include/ED_view3d.h (+1, -2) (Diff)
/source/blender/editors/include/UI_interface.h (+114, -146) (Diff)
/source/blender/editors/include/UI_resources.h (+40, -57) (Diff)
/source/blender/editors/include/UI_view2d.h (+0, -2) (Diff)
/source/blender/editors/interface/interface.c (+429, -501) (Diff)
/source/blender/editors/interface/interface_draw.c (+200, -2421) (Diff)
/source/blender/editors/interface/interface_handlers.c (+78, -77) (Diff)
/source/blender/editors/interface/interface_icons.c (+4, -2) (Diff)
/source/blender/editors/interface/interface_intern.h (+96, -29) (Diff)
/source/blender/editors/interface/interface_layout.c (+1342, -592) (Diff)
/source/blender/editors/interface/interface_panel.c (+514, -757) (Diff)
/source/blender/editors/interface/interface_regions.c (+221, -549) (Diff)
/source/blender/editors/interface/interface_utils.c (+90, -77) (Diff)
/source/blender/editors/interface/interface_widgets.c (+1227, -388) (Diff)
/source/blender/editors/interface/Makefile (+0, -2) (Diff)
/source/blender/editors/interface/resources.c (+557, -285) (Diff)
/source/blender/editors/interface/SConscript (+4, -3) (Diff)
/source/blender/editors/interface/view2d.c (+45, -41) (Diff)
/source/blender/editors/interface/view2d_ops.c (+107, -19) (Diff)
/source/blender/editors/mesh/bmeshutils.c (+0, -2) (Diff)
/source/blender/editors/mesh/bmeshutils_mods.c (+3, -3) (Diff)
/source/blender/editors/mesh/bmesh_tools.c (+9, -11) (Diff)
/source/blender/editors/mesh/editdeform.c (+8, -8) (Diff)
/source/blender/editors/mesh/editmesh.c (+11, -23) (Diff)
/source/blender/editors/mesh/editmesh_add.c (+32, -32) (Diff)
/source/blender/editors/mesh/editmesh_lib.c (+3, -3) (Diff)
/source/blender/editors/mesh/editmesh_loop.c (+5, -17) (Diff)
/source/blender/editors/mesh/editmesh_mods.c (+81, -74) (Diff)
/source/blender/editors/mesh/editmesh_tools.c (+219, -101) (Diff)
/source/blender/editors/mesh/Makefile (+0, -1) (Diff)
/source/blender/editors/mesh/mesh_intern.h (+28, -28) (Diff)
/source/blender/editors/mesh/mesh_ops.c (+52, -51) (Diff)
/source/blender/editors/mesh/SConscript (+1, -1) (Diff)
/source/blender/editors/object/editconstraint.c (+5, -0) (Diff)
/source/blender/editors/object/Makefile (+0, -1) (Diff)
/source/blender/editors/object/object_edit.c (+167, -127) (Diff)
/source/blender/editors/object/object_intern.h (+3, -0) (Diff)
/source/blender/editors/object/object_ops.c (+3, -1) (Diff)
/source/blender/editors/object/SConscript (+1, -1) (Diff)
/source/blender/editors/physics/editparticle.c (+12, -10) (Diff)
/source/blender/editors/physics/Makefile (+0, -1) (Diff)
/source/blender/editors/physics/physics_intern.h (+2, -4) (Diff)
/source/blender/editors/physics/SConscript (+1, -1) (Diff)
/source/blender/editors/preview/Makefile (+0, -1) (Diff)
/source/blender/editors/preview/previewrender.c (+1, -1) (Diff)
/source/blender/editors/preview/SConscript (+1, -1) (Diff)
/source/blender/editors/screen/area.c (+270, -32) (Diff)
/source/blender/editors/screen/CMakeLists.txt (+1, -3) (Diff)
/source/blender/editors/screen/glutil.c (+11, -6) (Diff)
/source/blender/editors/screen/Makefile (+1, -1) (Diff)
/source/blender/editors/screen/SConscript (+2, -2) (Diff)
/source/blender/editors/screen/screen_ops.c (+33, -66) (Diff)
/source/blender/editors/sculpt_paint/Makefile (+0, -1) (Diff)
/source/blender/editors/sculpt_paint/paint_image.c (+2, -4) (Diff)
/source/blender/editors/sculpt_paint/SConscript (+1, -1) (Diff)
/source/blender/editors/space_action/action_draw.c (+12, -12) (Diff)
/source/blender/editors/space_action/action_edit.c (+26, -54) (Diff)
/source/blender/editors/space_action/action_header.c (+37, -25) (Diff)
/source/blender/editors/space_action/action_ops.c (+11, -4) (Diff)
/source/blender/editors/space_action/action_select.c (+208, -357) (Diff)
/source/blender/editors/space_buttons/buttons_header.c (+67, -60) (Diff)
/source/blender/editors/space_buttons/buttons_intern.h (+12, -29) (Diff)
/source/blender/editors/space_buttons/space_buttons.c (+48, -51) (Diff)
/source/blender/editors/space_file/filelist.c (+3, -37) (Diff)
/source/blender/editors/space_file/filelist.h (+1, -14) (Diff)
/source/blender/editors/space_file/filesel.c (+67, -17) (Diff)
/source/blender/editors/space_file/file_draw.c (+91, -83) (Diff)
/source/blender/editors/space_file/file_header.c (+12, -17) (Diff)
/source/blender/editors/space_file/file_intern.h (+4, -0) (Diff)
/source/blender/editors/space_file/file_ops.c (+7, -55) (Diff)
/source/blender/editors/space_file/fsmenu.c (+27, -0) (Diff)
/source/blender/editors/space_file/Makefile (+1, -1) (Diff)
/source/blender/editors/space_file/SConscript (+2, -2) (Diff)
/source/blender/editors/space_graph/graph_buttons.c (+328, -142) (Diff)
/source/blender/editors/space_graph/graph_draw.c (+93, -19) (Diff)
/source/blender/editors/space_graph/graph_edit.c (+269, -74) (Diff)
/source/blender/editors/space_graph/graph_header.c (+16, -11) (Diff)
/source/blender/editors/space_graph/graph_intern.h (+12, -2) (Diff)
/source/blender/editors/space_graph/graph_ops.c (+22, -5) (Diff)
/source/blender/editors/space_graph/graph_select.c (+83, -66) (Diff)
/source/blender/editors/space_graph/space_graph.c (+17, -22) (Diff)
/source/blender/editors/space_image/image_draw.c (+25, -13) (Diff)
/source/blender/editors/space_image/image_header.c (+109, -103) (Diff)
/source/blender/editors/space_image/image_intern.h (+2, -1) (Diff)
/source/blender/editors/space_image/image_ops.c (+7, -4) (Diff)
/source/blender/editors/space_image/SConscript (+6, -1) (Diff)
/source/blender/editors/space_image/space_image.c (+12, -27) (Diff)
/source/blender/editors/space_info/info_header.c (+19, -22) (Diff)
/source/blender/editors/space_info/space_info.c (+0, -34) (Diff)
/source/blender/editors/space_nla/nla_header.c (+2, -5) (Diff)
/source/blender/editors/space_node/drawnode.c (+10, -20) (Diff)
/source/blender/editors/space_node/Makefile (+0, -1) (Diff)
/source/blender/editors/space_node/node_draw.c (+39, -69) (Diff)
/source/blender/editors/space_node/node_edit.c (+8, -8) (Diff)
/source/blender/editors/space_node/node_header.c (+21, -26) (Diff)
/source/blender/editors/space_node/node_intern.h (+1, -1) (Diff)
/source/blender/editors/space_node/node_ops.c (+2, -2) (Diff)
/source/blender/editors/space_node/SConscript (+1, -1) (Diff)
/source/blender/editors/space_node/space_node.c (+1, -1) (Diff)
/source/blender/editors/space_outliner/outliner.c (+238, -78) (Diff)
/source/blender/editors/space_outliner/outliner_header.c (+2, -5) (Diff)
/source/blender/editors/space_outliner/outliner_intern.h (+4, -0) (Diff)
/source/blender/editors/space_outliner/outliner_ops.c (+6, -0) (Diff)
/source/blender/editors/space_outliner/space_outliner.c (+1, -1) (Diff)
/source/blender/editors/space_script/script_edit.c (+32, -2) (Diff)
/source/blender/editors/space_script/script_header.c (+2, -5) (Diff)
/source/blender/editors/space_script/script_intern.h (+2, -1) (Diff)
/source/blender/editors/space_script/script_ops.c (+4, -2) (Diff)
/source/blender/editors/space_script/space_script.c (+2, -0) (Diff)
/source/blender/editors/space_sequencer/Makefile (+1, -1) (Diff)
/source/blender/editors/space_sequencer/SConscript (+2, -2) (Diff)
/source/blender/editors/space_sequencer/sequencer_add.c (+10, -10) (Diff)
/source/blender/editors/space_sequencer/sequencer_draw.c (+10, -9) (Diff)
/source/blender/editors/space_sequencer/sequencer_edit.c (+2, -2) (Diff)
/source/blender/editors/space_sequencer/sequencer_header.c (+80, -84) (Diff)
/source/blender/editors/space_sequencer/sequencer_intern.h (+6, -6) (Diff)
/source/blender/editors/space_sequencer/sequencer_ops.c (+7, -7) (Diff)
/source/blender/editors/space_sound/sound_header.c (+2, -5) (Diff)
/source/blender/editors/space_text/SConscript (+1, -1) (Diff)
/source/blender/editors/space_text/space_text.c (+10, -9) (Diff)
/source/blender/editors/space_text/text_header.c (+96, -345) (Diff)
/source/blender/editors/space_text/text_intern.h (+1, -2) (Diff)
/source/blender/editors/space_text/text_ops.c (+104, -15) (Diff)
/source/blender/editors/space_time/time_header.c (+7, -10) (Diff)
/source/blender/editors/space_view3d/drawarmature.c (+6, -13) (Diff)
/source/blender/editors/space_view3d/drawobject.c (+338, -291) (Diff)
/source/blender/editors/space_view3d/Makefile (+1, -1) (Diff)
/source/blender/editors/space_view3d/SConscript (+2, -2) (Diff)
/source/blender/editors/space_view3d/space_view3d.c (+63, -21) (Diff)
/source/blender/editors/space_view3d/view3d_buttons.c (+231, -186) (Diff)
/source/blender/editors/space_view3d/view3d_draw.c (+22, -48) (Diff)
/source/blender/editors/space_view3d/view3d_header.c (+272, -272) (Diff)
/source/blender/editors/space_view3d/view3d_intern.h (+9, -7) (Diff)
/source/blender/editors/space_view3d/view3d_ops.c (+4, -4) (Diff)
/source/blender/editors/space_view3d/view3d_select.c (+4, -4) (Diff)
/source/blender/editors/space_view3d/view3d_snap.c (+10, -9) (Diff)
/source/blender/editors/space_view3d/view3d_view.c (+4, -67) (Diff)
/source/blender/editors/transform/Makefile (+0, -1) (Diff)
/source/blender/editors/transform/SConscript (+1, -1) (Diff)
/source/blender/editors/transform/transform.c (+244, -88) (Diff)
/source/blender/editors/transform/transform.h (+11, -2) (Diff)
/source/blender/editors/transform/transform_constraints.c (+1, -3) (Diff)
/source/blender/editors/transform/transform_conversions.c (+55, -55) (Diff)
/source/blender/editors/transform/transform_generics.c (+3, -2) (Diff)
/source/blender/editors/transform/transform_input.c (+9, -0) (Diff)
/source/blender/editors/transform/transform_ops.c (+16, -14) (Diff)
/source/blender/editors/transform/transform_orientations.c (+18, -16) (Diff)
/source/blender/editors/transform/transform_snap.c (+22, -9) (Diff)
/source/blender/editors/util/editmode_undo.c (+1, -1) (Diff)
/source/blender/editors/util/ed_util.c (+31, -24) (Diff)
/source/blender/editors/util/undo.c (+4, -0) (Diff)
/source/blender/editors/uvedit/uvedit_draw.c (+6, -5) (Diff)
/source/blender/editors/uvedit/uvedit_ops.c (+64, -63) (Diff)
/source/blender/editors/uvedit/uvedit_parametrizer.c (+30, -2) (Diff)
/source/blender/editors/uvedit/uvedit_parametrizer.h (+1, -1) (Diff)
/source/blender/editors/uvedit/uvedit_unwrap_ops.c (+50, -46) (Diff)
/source/blender/gpu/intern/gpu_draw.c (+33, -1) (Diff)
/source/blender/imbuf/IMB_imbuf_types.h (+1, -0) (Diff)
/source/blender/imbuf/intern/allocimbuf.c (+5, -0) (Diff)
/source/blender/imbuf/intern/anim.c (+4, -4) (Diff)
/source/blender/imbuf/intern/anim5.c (+1, -1) (Diff)
/source/blender/imbuf/intern/dds/Makefile (+1, -1) (Diff)
/source/blender/imbuf/intern/IMB_anim.h (+3, -3) (Diff)
/source/blender/imbuf/intern/IMB_jp2.h (+1, -1) (Diff)
/source/blender/imbuf/intern/scaling.c (+2, -1) (Diff)
/source/blender/imbuf/intern/util.c (+4, -4) (Diff)
/source/blender/Makefile (+0, -4) (Diff)
/source/blender/makesdna/DNA_action_types.h (+4, -0) (Diff)
/source/blender/makesdna/DNA_actuator_types.h (+4, -1) (Diff)
/source/blender/makesdna/DNA_anim_types.h (+82, -28) (Diff)
/source/blender/makesdna/DNA_cloth_types.h (+1, -1) (Diff)
/source/blender/makesdna/DNA_constraint_types.h (+11, -1) (Diff)
/source/blender/makesdna/DNA_customdata_types.h (+3, -3) (Diff)
/source/blender/makesdna/DNA_gpencil_types.h (+3, -0) (Diff)
/source/blender/makesdna/DNA_ID.h (+1, -0) (Diff)
/source/blender/makesdna/DNA_material_types.h (+6, -7) (Diff)
/source/blender/makesdna/DNA_modifier_types.h (+9, -0) (Diff)
/source/blender/makesdna/DNA_object_fluidsim.h (+1, -1) (Diff)
/source/blender/makesdna/DNA_object_force.h (+1, -0) (Diff)
/source/blender/makesdna/DNA_object_types.h (+5, -1) (Diff)
/source/blender/makesdna/DNA_particle_types.h (+2, -2) (Diff)
/source/blender/makesdna/DNA_scene_types.h (+12, -1) (Diff)
/source/blender/makesdna/DNA_screen_types.h (+17, -4) (Diff)
/source/blender/makesdna/DNA_sensor_types.h (+7, -4) (Diff)
/source/blender/makesdna/DNA_space_types.h (+13, -7) (Diff)
/source/blender/makesdna/DNA_userdef_types.h (+124, -33) (Diff)
/source/blender/makesdna/DNA_view3d_types.h (+4, -1) (Diff)
/source/blender/makesdna/DNA_world_types.h (+5, -1) (Diff)
/source/blender/makesdna/intern/dna_genfile.c (+4, -4) (Diff)
/source/blender/makesdna/intern/SConscript (+4, -1) (Diff)
/source/blender/makesrna/intern/CMakeLists.txt (+6, -51) (Diff)
/source/blender/makesrna/intern/Makefile (+21, -2) (Diff)
/source/blender/makesrna/intern/makesrna.c (+458, -110) (Diff)
/source/blender/makesrna/intern/rna_access.c (+861, -169) (Diff)
/source/blender/makesrna/intern/rna_action.c (+1, -178) (Diff)
/source/blender/makesrna/intern/rna_animation.c (+4, -4) (Diff)
/source/blender/makesrna/intern/rna_armature.c (+4, -4) (Diff)
/source/blender/makesrna/intern/rna_camera.c (+2, -1) (Diff)
/source/blender/makesrna/intern/rna_cloth.c (+1, -1) (Diff)
/source/blender/makesrna/intern/rna_context.c (+7, -6) (Diff)
/source/blender/makesrna/intern/rna_curve.c (+29, -35) (Diff)
/source/blender/makesrna/intern/rna_define.c (+505, -90) (Diff)
/source/blender/makesrna/intern/rna_fluidsim.c (+7, -7) (Diff)
/source/blender/makesrna/intern/rna_ID.c (+24, -1) (Diff)
/source/blender/makesrna/intern/rna_image.c (+2, -2) (Diff)
/source/blender/makesrna/intern/rna_internal.h (+37, -4) (Diff)
/source/blender/makesrna/intern/rna_internal_types.h (+51, -3) (Diff)
/source/blender/makesrna/intern/rna_lamp.c (+12, -7) (Diff)
/source/blender/makesrna/intern/rna_material.c (+24, -29) (Diff)
/source/blender/makesrna/intern/rna_modifier.c (+42, -36) (Diff)
/source/blender/makesrna/intern/rna_nodetree.c (+2, -2) (Diff)
/source/blender/makesrna/intern/rna_object.c (+42, -20) (Diff)
/source/blender/makesrna/intern/rna_particle.c (+0, -5) (Diff)
/source/blender/makesrna/intern/rna_pose.c (+14, -0) (Diff)
/source/blender/makesrna/intern/rna_rna.c (+173, -11) (Diff)
/source/blender/makesrna/intern/rna_scene.c (+109, -13) (Diff)
/source/blender/makesrna/intern/rna_screen.c (+11, -9) (Diff)
/source/blender/makesrna/intern/rna_space.c (+23, -22) (Diff)
/source/blender/makesrna/intern/rna_text.c (+13, -0) (Diff)
/source/blender/makesrna/intern/rna_texture.c (+422, -142) (Diff)
/source/blender/makesrna/intern/rna_userdef.c (+394, -121) (Diff)
/source/blender/makesrna/intern/rna_wm.c (+13, -0) (Diff)
/source/blender/makesrna/intern/rna_world.c (+17, -18) (Diff)
/source/blender/makesrna/intern/SConscript (+21, -19) (Diff)
/source/blender/makesrna/RNA_access.h (+91, -17) (Diff)
/source/blender/makesrna/RNA_define.h (+36, -34) (Diff)
/source/blender/makesrna/RNA_enum_types.h (+8, -0) (Diff)
/source/blender/makesrna/RNA_types.h (+53, -0) (Diff)
/source/blender/makesrna/SConscript (+1, -1) (Diff)
/source/blender/nodes/CMakeLists.txt (+0, -4) (Diff)
/source/blender/nodes/intern/CMP_nodes/CMP_normalize.c (+1, -1) (Diff)
/source/blender/nodes/intern/SHD_nodes/SHD_dynamic.c (+5, -1) (Diff)
/source/blender/nodes/intern/SHD_nodes/SHD_invert.c (+1, -1) (Diff)
/source/blender/nodes/intern/TEX_nodes/Makefile (+1, -1) (Diff)
/source/blender/nodes/intern/TEX_nodes/TEX_image.c (+1, -1) (Diff)
/source/blender/nodes/intern/TEX_nodes/TEX_texture.c (+1, -1) (Diff)
/source/blender/nodes/intern/TEX_nodes/TEX_valToNor.c (+1, -1) (Diff)
/source/blender/nodes/intern/TEX_nodes/TEX_valToRgb.c (+1, -1) (Diff)
/source/blender/nodes/intern/TEX_util.c (+8, -1) (Diff)
/source/blender/nodes/SConscript (+15, -16) (Diff)
/source/blender/nodes/TEX_node.h (+1, -1) (Diff)
/source/blender/python/BPY_extern.h (+4, -2) (Diff)
/source/blender/python/CMakeLists.txt (+0, -5) (Diff)
/source/blender/python/epy_doc_gen.py (+188, -110) (Diff)
/source/blender/python/intern/bpy_compat.h (+1, -0) (Diff)
/source/blender/python/intern/bpy_interface.c (+360, -27) (Diff)
/source/blender/python/intern/bpy_operator.c (+8, -14) (Diff)
/source/blender/python/intern/bpy_operator.h (+1, -1) (Diff)
/source/blender/python/intern/bpy_rna.c (+772, -129) (Diff)
/source/blender/python/intern/bpy_rna.h (+4, -5) (Diff)
/source/blender/python/intern/bpy_ui.c (+10, -58) (Diff)
/source/blender/python/intern/bpy_util.c (+110, -2) (Diff)
/source/blender/python/intern/bpy_util.h (+28, -0) (Diff)
/source/blender/python/intern/Makefile (+0, -1) (Diff)
/source/blender/python/intern/stubs.c (+0, -2) (Diff)
/source/blender/python/SConscript (+1, -0) (Diff)
/source/blender/render/intern/source/convertblender.c (+434, -523) (Diff)
/source/blender/render/intern/source/raytrace.c (+1, -1) (Diff)
/source/blender/render/intern/source/rendercore.c (+1, -1) (Diff)
/source/blender/render/intern/source/renderdatabase.c (+3, -1) (Diff)
/source/blender/SConscript (+0, -3) (Diff)
/source/blender/windowmanager/CMakeLists.txt (+1, -3) (Diff)
/source/blender/windowmanager/intern/Makefile (+0, -2) (Diff)
/source/blender/windowmanager/intern/wm_event_system.c (+1, -1) (Diff)
/source/blender/windowmanager/intern/wm_files.c (+27, -406) (Diff)
/source/blender/windowmanager/intern/wm_init_exit.c (+5, -17) (Diff)
/source/blender/windowmanager/intern/wm_operators.c (+180, -18) (Diff)
/source/blender/windowmanager/intern/wm_subwindow.c (+23, -0) (Diff)
/source/blender/windowmanager/intern/wm_window.c (+4, -0) (Diff)
/source/blender/windowmanager/SConscript (+2, -2) (Diff)
/source/blender/windowmanager/WM_api.h (+6, -1) (Diff)
/source/creator/CMakeLists.txt (+6, -4) (Diff)
/source/creator/creator.c (+2, -0) (Diff)
/source/creator/Makefile (+6, -4) (Diff)
/source/creator/SConscript (+9, -7) (Diff)
/source/darwin/Makefile (+5, -2) (Diff)
/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp (+11, -3) (Diff)
/source/gameengine/BlenderRoutines/CMakeLists.txt (+1, -1) (Diff)
/source/gameengine/BlenderRoutines/KX_BlenderGL.cpp (+5, -9) (Diff)
/source/gameengine/BlenderRoutines/KX_BlenderKeyboardDevice.cpp (+2, -2) (Diff)
/source/gameengine/BlenderRoutines/KX_BlenderRenderTools.cpp (+91, -75) (Diff)
/source/gameengine/BlenderRoutines/KX_BlenderRenderTools.h (+2, -1) (Diff)
/source/gameengine/BlenderRoutines/Makefile (+1, -2) (Diff)
/source/gameengine/BlenderRoutines/SConscript (+3, -2) (Diff)
/source/gameengine/Converter/BL_ActionActuator.cpp (+75, -97) (Diff)
/source/gameengine/Converter/BL_ActionActuator.h (+10, -4) (Diff)
/source/gameengine/Converter/BL_BlenderDataConversion.cpp (+89, -23) (Diff)
/source/gameengine/Converter/BL_ShapeActionActuator.cpp (+76, -100) (Diff)
/source/gameengine/Converter/BL_ShapeActionActuator.h (+21, -15) (Diff)
/source/gameengine/Converter/CMakeLists.txt (+0, -1) (Diff)
/source/gameengine/Converter/KX_BlenderSceneConverter.cpp (+5, -2) (Diff)
/source/gameengine/Converter/KX_ConvertActuators.cpp (+4, -12) (Diff)
/source/gameengine/Converter/KX_ConvertSensors.cpp (+5, -1) (Diff)
/source/gameengine/Converter/SConscript (+1, -1) (Diff)
/source/gameengine/Expressions/BoolValue.cpp (+2, -2) (Diff)
/source/gameengine/Expressions/BoolValue.h (+1, -1) (Diff)
/source/gameengine/Expressions/ConstExpr.cpp (+1, -1) (Diff)
/source/gameengine/Expressions/ConstExpr.h (+1, -1) (Diff)
/source/gameengine/Expressions/EmptyValue.cpp (+1, -1) (Diff)
/source/gameengine/Expressions/EmptyValue.h (+1, -1) (Diff)
/source/gameengine/Expressions/ErrorValue.cpp (+1, -1) (Diff)
/source/gameengine/Expressions/ErrorValue.h (+1, -1) (Diff)
/source/gameengine/Expressions/FloatValue.cpp (+2, -2) (Diff)
/source/gameengine/Expressions/FloatValue.h (+1, -1) (Diff)
/source/gameengine/Expressions/InputParser.cpp (+12, -5) (Diff)
/source/gameengine/Expressions/InputParser.h (+2, -0) (Diff)
/source/gameengine/Expressions/IntValue.cpp (+12, -9) (Diff)
/source/gameengine/Expressions/IntValue.h (+7, -5) (Diff)
/source/gameengine/Expressions/ListValue.cpp (+98, -40) (Diff)
/source/gameengine/Expressions/ListValue.h (+11, -2) (Diff)
/source/gameengine/Expressions/PyObjectPlus.cpp (+626, -511) (Diff)
/source/gameengine/Expressions/PyObjectPlus.h (+184, -114) (Diff)
/source/gameengine/Expressions/StringValue.cpp (+1, -1) (Diff)
/source/gameengine/Expressions/StringValue.h (+1, -1) (Diff)
/source/gameengine/Expressions/Value.cpp (+138, -219) (Diff)
/source/gameengine/Expressions/Value.h (+11, -27) (Diff)
/source/gameengine/Expressions/VectorValue.cpp (+1, -1) (Diff)
/source/gameengine/Expressions/VectorValue.h (+1, -1) (Diff)
/source/gameengine/Expressions/VoidValue.h (+1, -1) (Diff)
/source/gameengine/GameLogic/Joystick/SCA_Joystick.cpp (+30, -61) (Diff)
/source/gameengine/GameLogic/Joystick/SCA_Joystick.h (+13, -28) (Diff)
/source/gameengine/GameLogic/Joystick/SCA_JoystickDefines.h (+6, -0) (Diff)
/source/gameengine/GameLogic/Joystick/SCA_JoystickEvents.cpp (+3, -1) (Diff)
/source/gameengine/GameLogic/SCA_2DFilterActuator.cpp (+67, -25) (Diff)
/source/gameengine/GameLogic/SCA_2DFilterActuator.h (+35, -2) (Diff)
/source/gameengine/GameLogic/SCA_ActuatorSensor.cpp (+18, -24) (Diff)
/source/gameengine/GameLogic/SCA_ActuatorSensor.h (+3, -3) (Diff)
/source/gameengine/GameLogic/SCA_AlwaysSensor.cpp (+11, -11) (Diff)
/source/gameengine/GameLogic/SCA_AlwaysSensor.h (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_ANDController.cpp (+11, -11) (Diff)
/source/gameengine/GameLogic/SCA_ANDController.h (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_DelaySensor.cpp (+22, -28) (Diff)
/source/gameengine/GameLogic/SCA_DelaySensor.h (+5, -5) (Diff)
/source/gameengine/GameLogic/SCA_ExpressionController.cpp (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_ExpressionController.h (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_ILogicBrick.cpp (+36, -31) (Diff)
/source/gameengine/GameLogic/SCA_ILogicBrick.h (+6, -4) (Diff)
/source/gameengine/GameLogic/SCA_IObject.cpp (+11, -11) (Diff)
/source/gameengine/GameLogic/SCA_IObject.h (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_ISensor.cpp (+49, -52) (Diff)
/source/gameengine/GameLogic/SCA_ISensor.h (+11, -8) (Diff)
/source/gameengine/GameLogic/SCA_JoystickSensor.cpp (+136, -108) (Diff)
/source/gameengine/GameLogic/SCA_JoystickSensor.h (+11, -2) (Diff)
/source/gameengine/GameLogic/SCA_KeyboardSensor.cpp (+243, -243) (Diff)
/source/gameengine/GameLogic/SCA_KeyboardSensor.h (+32, -26) (Diff)
/source/gameengine/GameLogic/SCA_MouseSensor.cpp (+18, -28) (Diff)
/source/gameengine/GameLogic/SCA_MouseSensor.h (+4, -4) (Diff)
/source/gameengine/GameLogic/SCA_NANDController.cpp (+11, -11) (Diff)
/source/gameengine/GameLogic/SCA_NANDController.h (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_NORController.cpp (+11, -11) (Diff)
/source/gameengine/GameLogic/SCA_NORController.h (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_ORController.cpp (+11, -11) (Diff)
/source/gameengine/GameLogic/SCA_ORController.h (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_PropertyActuator.cpp (+38, -29) (Diff)
/source/gameengine/GameLogic/SCA_PropertyActuator.h (+3, -2) (Diff)
/source/gameengine/GameLogic/SCA_PropertySensor.cpp (+26, -32) (Diff)
/source/gameengine/GameLogic/SCA_PropertySensor.h (+8, -8) (Diff)
/source/gameengine/GameLogic/SCA_PythonController.cpp (+77, -75) (Diff)
/source/gameengine/GameLogic/SCA_PythonController.h (+6, -2) (Diff)
/source/gameengine/GameLogic/SCA_RandomActuator.cpp (+103, -115) (Diff)
/source/gameengine/GameLogic/SCA_RandomActuator.h (+25, -39) (Diff)
/source/gameengine/GameLogic/SCA_RandomSensor.cpp (+38, -38) (Diff)
/source/gameengine/GameLogic/SCA_RandomSensor.h (+9, -6) (Diff)
/source/gameengine/GameLogic/SCA_XNORController.cpp (+11, -11) (Diff)
/source/gameengine/GameLogic/SCA_XNORController.h (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_XORController.cpp (+11, -11) (Diff)
/source/gameengine/GameLogic/SCA_XORController.h (+1, -1) (Diff)
/source/gameengine/GamePlayer/common/CMakeLists.txt (+0, -1) (Diff)
/source/gameengine/GamePlayer/common/GPC_KeyboardDevice.cpp (+3, -5) (Diff)
/source/gameengine/GamePlayer/common/GPC_RenderTools.cpp (+104, -96) (Diff)
/source/gameengine/GamePlayer/common/GPC_RenderTools.h (+3, -4) (Diff)
/source/gameengine/GamePlayer/common/Makefile (+0, -1) (Diff)
/source/gameengine/GamePlayer/common/SConscript (+0, -1) (Diff)
/source/gameengine/GamePlayer/common/unix/Makefile (+0, -1) (Diff)
/source/gameengine/GamePlayer/common/windows/Makefile (+1, -1) (Diff)
/source/gameengine/GamePlayer/ghost/CMakeLists.txt (+0, -1) (Diff)
/source/gameengine/GamePlayer/ghost/GPG_Application.cpp (+16, -6) (Diff)
/source/gameengine/GamePlayer/ghost/GPG_Application.h (+5, -1) (Diff)
/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp (+12, -3) (Diff)
/source/gameengine/GamePlayer/ghost/Makefile (+0, -1) (Diff)
/source/gameengine/GamePlayer/ghost/SConscript (+0, -1) (Diff)
/source/gameengine/Ketsji/BL_BlenderShader.cpp (+1, -1) (Diff)
/source/gameengine/Ketsji/BL_Shader.cpp (+152, -124) (Diff)
/source/gameengine/Ketsji/BL_Shader.h (+2, -1) (Diff)
/source/gameengine/Ketsji/CMakeLists.txt (+3, -2) (Diff)
/source/gameengine/Ketsji/KXNetwork/KX_NetworkMessageActuator.cpp (+34, -22) (Diff)
/source/gameengine/Ketsji/KXNetwork/KX_NetworkMessageActuator.h (+5, -2) (Diff)
/source/gameengine/Ketsji/KXNetwork/KX_NetworkMessageSensor.cpp (+58, -21) (Diff)
/source/gameengine/Ketsji/KXNetwork/KX_NetworkMessageSensor.h (+7, -1) (Diff)
/source/gameengine/Ketsji/KX_BlenderMaterial.cpp (+22, -24) (Diff)
/source/gameengine/Ketsji/KX_BlenderMaterial.h (+3, -2) (Diff)
/source/gameengine/Ketsji/KX_BulletPhysicsController.cpp (+35, -3) (Diff)
/source/gameengine/Ketsji/KX_BulletPhysicsController.h (+6, -1) (Diff)
/source/gameengine/Ketsji/KX_Camera.cpp (+171, -127) (Diff)
/source/gameengine/Ketsji/KX_Camera.h (+34, -7) (Diff)
/source/gameengine/Ketsji/KX_CameraActuator.cpp (+58, -79) (Diff)
/source/gameengine/Ketsji/KX_CameraActuator.h (+13, -10) (Diff)
/source/gameengine/Ketsji/KX_CDActuator.cpp (+86, -27) (Diff)
/source/gameengine/Ketsji/KX_CDActuator.h (+17, -6) (Diff)
/source/gameengine/Ketsji/KX_ConstraintActuator.cpp (+119, -79) (Diff)
/source/gameengine/Ketsji/KX_ConstraintActuator.h (+17, -12) (Diff)
/source/gameengine/Ketsji/KX_ConstraintWrapper.cpp (+16, -21) (Diff)
/source/gameengine/Ketsji/KX_ConstraintWrapper.h (+2, -2) (Diff)
/source/gameengine/Ketsji/KX_ConvertPhysicsObjects.cpp (+18, -11) (Diff)
/source/gameengine/Ketsji/KX_GameActuator.cpp (+32, -21) (Diff)
/source/gameengine/Ketsji/KX_GameActuator.h (+5, -1) (Diff)
/source/gameengine/Ketsji/KX_GameObject.cpp (+907, -346) (Diff)
/source/gameengine/Ketsji/KX_GameObject.h (+135, -21) (Diff)
/source/gameengine/Ketsji/KX_IPhysicsController.h (+7, -0) (Diff)
/source/gameengine/Ketsji/KX_IpoActuator.cpp (+77, -58) (Diff)
/source/gameengine/Ketsji/KX_IpoActuator.h (+13, -11) (Diff)
/source/gameengine/Ketsji/KX_KetsjiEngine.cpp (+173, -18) (Diff)
/source/gameengine/Ketsji/KX_KetsjiEngine.h (+9, -0) (Diff)
/source/gameengine/Ketsji/KX_Light.cpp (+71, -75) (Diff)
/source/gameengine/Ketsji/KX_Light.h (+2, -3) (Diff)
/source/gameengine/Ketsji/KX_MeshProxy.cpp (+152, -71) (Diff)
/source/gameengine/Ketsji/KX_MeshProxy.h (+14, -4) (Diff)
/source/gameengine/Ketsji/KX_MotionState.cpp (+13, -5) (Diff)
/source/gameengine/Ketsji/KX_MotionState.h (+1, -0) (Diff)
/source/gameengine/Ketsji/KX_MouseFocusSensor.cpp (+176, -69) (Diff)
/source/gameengine/Ketsji/KX_MouseFocusSensor.h (+18, -10) (Diff)
/source/gameengine/Ketsji/KX_NearSensor.cpp (+21, -30) (Diff)
/source/gameengine/Ketsji/KX_NearSensor.h (+2, -2) (Diff)
/source/gameengine/Ketsji/KX_ObjectActuator.cpp (+44, -66) (Diff)
/source/gameengine/Ketsji/KX_ObjectActuator.h (+12, -12) (Diff)
/source/gameengine/Ketsji/KX_OdePhysicsController.h (+4, -0) (Diff)
/source/gameengine/Ketsji/KX_ParentActuator.cpp (+50, -41) (Diff)
/source/gameengine/Ketsji/KX_ParentActuator.h (+9, -5) (Diff)
/source/gameengine/Ketsji/KX_PhysicsObjectWrapper.cpp (+24, -30) (Diff)
/source/gameengine/Ketsji/KX_PhysicsObjectWrapper.h (+6, -6) (Diff)
/source/gameengine/Ketsji/KX_PolygonMaterial.cpp (+113, -157) (Diff)
/source/gameengine/Ketsji/KX_PolygonMaterial.h (+15, -2) (Diff)
/source/gameengine/Ketsji/KX_PolyProxy.cpp (+43, -35) (Diff)
/source/gameengine/Ketsji/KX_PolyProxy.h (+2, -2) (Diff)
/source/gameengine/Ketsji/KX_PyConstraintBinding.cpp (+3, -2) (Diff)
/source/gameengine/Ketsji/KX_PyMath.cpp (+35, -1) (Diff)
/source/gameengine/Ketsji/KX_PyMath.h (+25, -8) (Diff)
/source/gameengine/Ketsji/KX_PythonInit.cpp (+277, -70) (Diff)
/source/gameengine/Ketsji/KX_PythonInit.h (+3, -2) (Diff)
/source/gameengine/Ketsji/KX_RadarSensor.cpp (+19, -26) (Diff)
/source/gameengine/Ketsji/KX_RadarSensor.h (+2, -2) (Diff)
/source/gameengine/Ketsji/KX_RayCast.cpp (+3, -0) (Diff)
/source/gameengine/Ketsji/KX_RaySensor.cpp (+89, -24) (Diff)
/source/gameengine/Ketsji/KX_RaySensor.h (+23, -5) (Diff)
/source/gameengine/Ketsji/KX_SCA_AddObjectActuator.cpp (+94, -63) (Diff)
/source/gameengine/Ketsji/KX_SCA_AddObjectActuator.h (+9, -6) (Diff)
/source/gameengine/Ketsji/KX_SCA_DynamicActuator.cpp (+22, -15) (Diff)
/source/gameengine/Ketsji/KX_SCA_DynamicActuator.h (+12, -1) (Diff)
/source/gameengine/Ketsji/KX_SCA_EndObjectActuator.cpp (+11, -11) (Diff)
/source/gameengine/Ketsji/KX_SCA_EndObjectActuator.h (+1, -1) (Diff)
/source/gameengine/Ketsji/KX_SCA_ReplaceMeshActuator.cpp (+49, -33) (Diff)
/source/gameengine/Ketsji/KX_SCA_ReplaceMeshActuator.h (+6, -1) (Diff)
/source/gameengine/Ketsji/KX_Scene.cpp (+192, -82) (Diff)
/source/gameengine/Ketsji/KX_Scene.h (+40, -5) (Diff)
/source/gameengine/Ketsji/KX_SceneActuator.cpp (+118, -40) (Diff)
/source/gameengine/Ketsji/KX_SceneActuator.h (+11, -7) (Diff)
/source/gameengine/Ketsji/KX_SG_BoneParentNodeRelationship.cpp (+5, -2) (Diff)
/source/gameengine/Ketsji/KX_SG_BoneParentNodeRelationship.h (+2, -1) (Diff)
/source/gameengine/Ketsji/KX_SG_NodeRelationships.cpp (+30, -22) (Diff)
/source/gameengine/Ketsji/KX_SG_NodeRelationships.h (+6, -3) (Diff)
/source/gameengine/Ketsji/KX_SoundActuator.cpp (+309, -73) (Diff)
/source/gameengine/Ketsji/KX_SoundActuator.h (+45, -20) (Diff)
/source/gameengine/Ketsji/KX_StateActuator.cpp (+26, -21) (Diff)
/source/gameengine/Ketsji/KX_StateActuator.h (+8, -5) (Diff)
/source/gameengine/Ketsji/KX_SumoPhysicsController.cpp (+5, -0) (Diff)
/source/gameengine/Ketsji/KX_SumoPhysicsController.h (+5, -0) (Diff)
/source/gameengine/Ketsji/KX_TouchSensor.cpp (+43, -40) (Diff)
/source/gameengine/Ketsji/KX_TouchSensor.h (+6, -2) (Diff)
/source/gameengine/Ketsji/KX_TrackToActuator.cpp (+60, -47) (Diff)
/source/gameengine/Ketsji/KX_TrackToActuator.h (+11, -7) (Diff)
/source/gameengine/Ketsji/KX_VehicleWrapper.cpp (+48, -73) (Diff)
/source/gameengine/Ketsji/KX_VehicleWrapper.h (+17, -17) (Diff)
/source/gameengine/Ketsji/KX_VertexProxy.cpp (+98, -73) (Diff)
/source/gameengine/Ketsji/KX_VertexProxy.h (+3, -3) (Diff)
/source/gameengine/Ketsji/KX_VisibilityActuator.cpp (+31, -20) (Diff)
/source/gameengine/Ketsji/KX_VisibilityActuator.h (+9, -3) (Diff)
/source/gameengine/Ketsji/SConscript (+12, -3) (Diff)
/source/gameengine/Network/NG_NetworkScene.h (+5, -0) (Diff)
/source/gameengine/Physics/BlOde/OdePhysicsController.h (+4, -0) (Diff)
/source/gameengine/Physics/BlOde/OdePhysicsEnvironment.h (+1, -0) (Diff)
/source/gameengine/Physics/Bullet/CcdPhysicsController.cpp (+241, -97) (Diff)
/source/gameengine/Physics/Bullet/CcdPhysicsController.h (+36, -11) (Diff)
/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.cpp (+641, -14) (Diff)
/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.h (+13, -2) (Diff)
/source/gameengine/Physics/Bullet/CMakeLists.txt (+9, -1) (Diff)
/source/gameengine/Physics/Bullet/Makefile (+8, -0) (Diff)
/source/gameengine/Physics/Bullet/SConscript (+14, -2) (Diff)
/source/gameengine/Physics/common/CMakeLists.txt (+1, -1) (Diff)
/source/gameengine/Physics/common/PHY_DynamicTypes.h (+33, -2) (Diff)
/source/gameengine/Physics/common/PHY_IMotionState.h (+2, -0) (Diff)
/source/gameengine/Physics/common/PHY_IPhysicsController.h (+9, -5) (Diff)
/source/gameengine/Physics/common/PHY_IPhysicsEnvironment.h (+4, -0) (Diff)
/source/gameengine/Physics/common/PHY_Pro.h (+4, -2) (Diff)
/source/gameengine/Physics/common/SConscript (+1, -1) (Diff)
/source/gameengine/Physics/Dummy/DummyPhysicsEnvironment.h (+1, -0) (Diff)
/source/gameengine/Physics/Sumo/SumoPhysicsController.h (+5, -0) (Diff)
/source/gameengine/Physics/Sumo/SumoPhysicsEnvironment.h (+1, -0) (Diff)
/source/gameengine/PyDoc/BL_ActionActuator.py (+4, -4) (Diff)
/source/gameengine/PyDoc/BL_ShapeActionActuator.py (+2, -1) (Diff)
/source/gameengine/PyDoc/epy_docgen.sh (+1, -1) (Diff)
/source/gameengine/PyDoc/GameKeys.py (+16, -10) (Diff)
/source/gameengine/PyDoc/GameLogic.py (+50, -3) (Diff)
/source/gameengine/PyDoc/KX_Camera.py (+22, -0) (Diff)
/source/gameengine/PyDoc/KX_CDActuator.py (+23, -0) (Diff)
/source/gameengine/PyDoc/KX_ConstraintActuator.py (+69, -0) (Diff)
/source/gameengine/PyDoc/KX_GameActuator.py (+7, -0) (Diff)
/source/gameengine/PyDoc/KX_GameObject.py (+112, -25) (Diff)
/source/gameengine/PyDoc/KX_IpoActuator.py (+33, -14) (Diff)
/source/gameengine/PyDoc/KX_MeshProxy.py (+8, -1) (Diff)
/source/gameengine/PyDoc/KX_MouseFocusSensor.py (+47, -6) (Diff)
/source/gameengine/PyDoc/KX_NetworkMessageActuator.py (+13, -0) (Diff)
/source/gameengine/PyDoc/KX_NetworkMessageSensor.py (+17, -0) (Diff)
/source/gameengine/PyDoc/KX_ParentActuator.py (+4, -3) (Diff)
/source/gameengine/PyDoc/KX_RaySensor.py (+25, -0) (Diff)
/source/gameengine/PyDoc/KX_SCA_AddObjectActuator.py (+22, -0) (Diff)
/source/gameengine/PyDoc/KX_SCA_ReplaceMeshActuator.py (+17, -7) (Diff)
/source/gameengine/PyDoc/KX_Scene.py (+8, -8) (Diff)
/source/gameengine/PyDoc/KX_SceneActuator.py (+13, -1) (Diff)
/source/gameengine/PyDoc/KX_SoundActuator.py (+53, -3) (Diff)
/source/gameengine/PyDoc/KX_StateActuator.py (+18, -0) (Diff)
/source/gameengine/PyDoc/KX_TouchSensor.py (+2, -2) (Diff)
/source/gameengine/PyDoc/KX_TrackToActuator.py (+11, -0) (Diff)
/source/gameengine/PyDoc/KX_VertexProxy.py (+26, -0) (Diff)
/source/gameengine/PyDoc/KX_VisibilityActuator.py (+8, -3) (Diff)
/source/gameengine/PyDoc/SCA_ILogicBrick.py (+5, -1) (Diff)
/source/gameengine/PyDoc/SCA_JoystickSensor.py (+18, -12) (Diff)
/source/gameengine/PyDoc/SCA_KeyboardSensor.py (+20, -17) (Diff)
/source/gameengine/PyDoc/SCA_MouseSensor.py (+10, -0) (Diff)
/source/gameengine/PyDoc/SCA_RandomSensor.py (+7, -0) (Diff)
/source/gameengine/PyDoc/SConscript (+23, -22) (Diff)
/source/gameengine/PyDoc/WhatsNew.py (+1, -1) (Diff)
/source/gameengine/Rasterizer/RAS_2DFilterManager.cpp (+6, -2) (Diff)
/source/gameengine/Rasterizer/RAS_BucketManager.cpp (+8, -0) (Diff)
/source/gameengine/Rasterizer/RAS_FramingManager.h (+7, -0) (Diff)
/source/gameengine/Rasterizer/RAS_IRasterizer.h (+1, -0) (Diff)
/source/gameengine/Rasterizer/RAS_IRenderTools.h (+1, -5) (Diff)
/source/gameengine/Rasterizer/RAS_LightObject.h (+1, -0) (Diff)
/source/gameengine/Rasterizer/RAS_MaterialBucket.cpp (+17, -12) (Diff)
/source/gameengine/Rasterizer/RAS_MaterialBucket.h (+4, -1) (Diff)
/source/gameengine/Rasterizer/RAS_MeshObject.cpp (+2, -0) (Diff)
/source/gameengine/Rasterizer/RAS_MeshObject.h (+10, -0) (Diff)
/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_ListRasterizer.cpp (+2, -2) (Diff)
/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_ListRasterizer.h (+1, -1) (Diff)
/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.cpp (+17, -12) (Diff)
/source/gameengine/Rasterizer/RAS_Polygon.cpp (+14, -2) (Diff)
/source/gameengine/Rasterizer/RAS_Polygon.h (+13, -4) (Diff)
/source/gameengine/SceneGraph/SG_BBox.cpp (+7, -0) (Diff)
/source/gameengine/SceneGraph/SG_BBox.h (+2, -0) (Diff)
/source/gameengine/SceneGraph/SG_IObject.cpp (+2, -0) (Diff)
/source/gameengine/SceneGraph/SG_IObject.h (+30, -0) (Diff)
/source/gameengine/SceneGraph/SG_Node.cpp (+4, -3) (Diff)
/source/gameengine/SceneGraph/SG_Node.h (+2, -1) (Diff)
/source/gameengine/SceneGraph/SG_ParentRelation.h (+2, -1) (Diff)
/source/gameengine/SceneGraph/SG_Spatial.cpp (+14, -5) (Diff)
/source/gameengine/SceneGraph/SG_Spatial.h (+10, -3) (Diff)
/source/gameengine/VideoTexture/blendVideoTex.cpp (+5, -5) (Diff)
/source/gameengine/VideoTexture/FilterNormal.cpp (+13, -8) (Diff)
/source/gameengine/VideoTexture/FilterSource.h (+2, -1) (Diff)
/source/gameengine/VideoTexture/ImageRender.cpp (+18, -9) (Diff)
/source/gameengine/VideoTexture/ImageViewport.cpp (+1, -1) (Diff)
/source/gameengine/VideoTexture/Texture.cpp (+1, -1) (Diff)
/source/gameengine/VideoTexture/VideoBase.cpp (+1, -1) (Diff)
/source/gameengine/VideoTexture/VideoFFmpeg.h (+4, -4) (Diff)
/source/Makefile (+13, -20) (Diff)
/source/nan_compile.mk (+5, -0) (Diff)
/source/nan_definitions.mk (+69, -132) (Diff)
/source/SConscript (+1, -1) (Diff)
/tools/Blender.py (+13, -6) (Diff)
/tools/btools.py (+9, -14) (Diff)
/CMake/macros.cmake (+19, -2) (Diff)
/CMakeLists.txt (+10, -14) (Diff)
/config/darwin-config.py (+1, -13) (Diff)
/config/irix6-config.py (+1, -9) (Diff)
/config/linux2-config.py (+2, -15) (Diff)
/config/linuxcross-config.py (+0, -8) (Diff)
/config/openbsd3-config.py (+0, -8) (Diff)
/config/sunos5-config.py (+0, -8) (Diff)
/config/win32-mingw-config.py (+0, -8) (Diff)
/config/win32-vc-config.py (+1, -9) (Diff)
/config/win64-vc-config.py (+3, -8) (Diff)
/extern/bullet2/make/msvc_9_0/Bullet.vcproj (+5, -1) (Diff)
/extern/bullet2/src/BulletCollision/NarrowPhaseCollision/btPersistentManifold.cpp (+3, -4) (Diff)
/extern/bullet2/src/BulletDynamics/Dynamics/btDiscreteDynamicsWorld.cpp (+11, -6) (Diff)
/extern/CMakeLists.txt (+0, -8) (Diff)
/extern/libopenjpeg/opj_includes.h (+7, -0) (Diff)
/extern/make/msvc_9_0/build_install_all.vcproj (+1, -1) (Diff)
/extern/Makefile (+0, -8) (Diff)
/extern/SConscript (+0, -3) (Diff)
/intern/boolop/intern/BOP_Merge2.cpp (+1, -1) (Diff)
/intern/boolop/intern/BOP_Misc.h (+1, -1) (Diff)
/intern/boolop/make/msvc_6_0/boolop.dsp (+222, -222) (Diff)
/intern/bsp/make/msvc6_0/bsplib.dsp (+138, -138) (Diff)
/intern/bsp/make/msvc6_0/bsplib.dsw (+29, -29) (Diff)
/intern/bsp/test/BSP_GhostTest/BSP_GhostTest.dsp (+126, -126) (Diff)
/intern/bsp/test/BSP_GhostTest/BSP_GhostTest.dsw (+125, -125) (Diff)
/intern/CMakeLists.txt (+1, -1) (Diff)
/intern/container/make/msvc_6_0/container.dsp (+133, -133) (Diff)
/intern/container/make/msvc_6_0/container.dsw (+29, -29) (Diff)
/intern/decimation/make/msvc_6_0/decimation.dsp (+186, -186) (Diff)
/intern/decimation/make/msvc_6_0/decimation.dsw (+33, -33) (Diff)
/intern/elbeem/make/msvc_6_0/elbeem.dsp (+290, -290) (Diff)
/intern/ghost/intern/GHOST_SystemWin32.cpp (+5, -2) (Diff)
/intern/ghost/intern/GHOST_SystemX11.cpp (+282, -120) (Diff)
/intern/ghost/intern/GHOST_SystemX11.h (+19, -3) (Diff)
/intern/ghost/make/msvc/ghost.dsp (+292, -292) (Diff)
/intern/ghost/make/msvc/ghost.dsw (+29, -29) (Diff)
/intern/ghost/test/make/msvc_6_0/gears.dsp (+102, -102) (Diff)
/intern/ghost/test/make/msvc_6_0/gears_C.dsp (+102, -102) (Diff)
/intern/ghost/test/make/msvc_6_0/ghost_test.dsw (+77, -77) (Diff)
/intern/ghost/test/multitest/Makefile (+0, -2) (Diff)
/intern/guardedalloc/mmap_win.h (+1, -1) (Diff)
/intern/iksolver/make/msvc_6_0/iksolver.dsp (+260, -260) (Diff)
/intern/iksolver/make/msvc_6_0/iksolver.dsw (+35, -35) (Diff)
/intern/iksolver/test/ik_glut_test/make/msvc_6_0/ik_glut_test.dsp (+130, -130) (Diff)
/intern/iksolver/test/ik_glut_test/make/msvc_6_0/ik_glut_test.dsw (+49, -49) (Diff)
/intern/make/msvc_6_0/build_install_all.dsp (+68, -68) (Diff)
/intern/make/msvc_6_0/intern.dsw (+302, -302) (Diff)
/intern/Makefile (+1, -1) (Diff)
/intern/memutil/make/msvc_60/memutil.dsp (+150, -150) (Diff)
/intern/memutil/make/msvc_60/memutil.dsw (+29, -29) (Diff)
/intern/moto/include/MT_Quaternion.inl (+17, -9) (Diff)
/intern/moto/make/msvc_6_0/MoTo.dsp (+379, -379) (Diff)
/intern/moto/make/msvc_6_0/MoTo.dsw (+29, -29) (Diff)
/intern/opennl/make/msvc_6_0/OpenNL.dsp (+252, -252) (Diff)
/intern/opennl/make/msvc_6_0/OpenNL.dsw (+29, -29) (Diff)
/intern/SConscript (+0, -1) (Diff)
/intern/SoundSystem/dummy/SND_DummyDevice.cpp (+1, -1) (Diff)
/intern/SoundSystem/intern/Makefile (+0, -2) (Diff)
/intern/SoundSystem/intern/SND_DeviceManager.cpp (+0, -15) (Diff)
/intern/SoundSystem/intern/SND_Scene.cpp (+0, -23) (Diff)
/intern/SoundSystem/intern/SND_Utils.cpp (+0, -32) (Diff)
/intern/SoundSystem/make/msvc_6_0/dummy/DummySoundSystem.dsp (+103, -103) (Diff)
/intern/SoundSystem/make/msvc_6_0/openal/OpenALSoundSystem.dsp (+106, -106) (Diff)
/intern/SoundSystem/make/msvc_6_0/SoundSystem.dsp (+206, -206) (Diff)
/intern/SoundSystem/Makefile (+0, -1) (Diff)
/intern/SoundSystem/openal/SND_OpenALDevice.cpp (+1, -1) (Diff)
/intern/SoundSystem/SND_DependKludge.h (+0, -3) (Diff)
/intern/SoundSystem/SoundDefines.h (+0, -10) (Diff)
/intern/string/make/msvc_6_0/string.dsp (+122, -122) (Diff)
/intern/string/make/msvc_6_0/string.dsw (+29, -29) (Diff)
/po/Makefile (+4, -1) (Diff)
/projectfiles/blender/avi/BL_avi.dsp (+199, -199) (Diff)
/projectfiles/blender/blender.dsp (+124, -124) (Diff)
/projectfiles/blender/blender.dsw (+743, -743) (Diff)
/projectfiles/blender/blenkernel/BKE_blenkernel.dsp (+564, -564) (Diff)
/projectfiles/blender/blenlib/BLI_blenlib.dsp (+318, -318) (Diff)
/projectfiles/blender/blenpluginapi/blenpluginapi/blenpluginapi.dsp (+119, -119) (Diff)
/projectfiles/blender/BLO_readblenfile/BLO_readblenfile.dsp (+155, -155) (Diff)
/projectfiles/blender/BPY_python/BPY_python.dsp (+588, -588) (Diff)
/projectfiles/blender/ftfont/FTF_ftfont.dsp (+118, -118) (Diff)
/projectfiles/blender/glut/BL_glut.dsp (+324, -324) (Diff)
/projectfiles/blender/imbuf/BL_imbuf.dsp (+438, -438) (Diff)
/projectfiles/blender/img/BL_img.dsp (+171, -171) (Diff)
/projectfiles/blender/loader/BLO_loader.dsp (+186, -186) (Diff)
/projectfiles/blender/makesdna/DNA_makesdna.dsp (+373, -373) (Diff)
/projectfiles/blender/radiosity/BRA_radiosity.dsp (+133, -133) (Diff)
/projectfiles/blender/render/BRE_render.dsp (+192, -192) (Diff)
/projectfiles/blender/renderconverter/BRE_renderconverter.dsp (+102, -102) (Diff)
/projectfiles/blender/src/BL_src.dsp (+1040, -1040) (Diff)
/projectfiles/blender/src/BL_src_cre.dsp (+102, -102) (Diff)
/projectfiles/datatoc/datatoc.dsp (+100, -100) (Diff)
/projectfiles/gameengine/blenderhook/KX_blenderhook.dsp (+161, -161) (Diff)
/projectfiles/gameengine/converter/KX_converter.dsp (+278, -278) (Diff)
/projectfiles/gameengine/expression/EXP_expressions.dsp (+302, -302) (Diff)
/projectfiles/gameengine/gamelogic/SCA_gamelogic.dsp (+406, -406) (Diff)
/projectfiles/gameengine/gameplayer/axctl/GP_axctl.dsp (+253, -253) (Diff)
/projectfiles/gameengine/gameplayer/common/GP_common.dsp (+255, -255) (Diff)
/projectfiles/gameengine/gameplayer/ghost/GP_ghost.dsp (+156, -156) (Diff)
/projectfiles/gameengine/gameplayer/glut/GP_glut.dsp (+205, -205) (Diff)
/projectfiles/gameengine/gameplayer/loader/BlenderLoader/BlenderLoader.dsp (+206, -206) (Diff)
/projectfiles/gameengine/gameplayer/netscape/GP_netscape.dsp (+173, -173) (Diff)
/projectfiles/gameengine/gameplayer/netscape2/GP_netscape.dsp (+181, -181) (Diff)
/projectfiles/gameengine/gameplayer/ps2/GP_ps2.dsp (+182, -182) (Diff)
/projectfiles/gameengine/gameplayer/qt/gp.dsp (+164, -164) (Diff)
/projectfiles/gameengine/gameplayer/qt/gpplugin.dsp (+824, -824) (Diff)
/projectfiles/gameengine/gameplayer/qt/qtgp.dsw (+323, -323) (Diff)
/projectfiles/gameengine/gameplayer/sdl/GP_sdl.dsp (+205, -205) (Diff)
/projectfiles/gameengine/ketsji/KX_ketsji.dsp (+690, -690) (Diff)
/projectfiles/gameengine/ketsji/network/KX_network.dsp (+186, -186) (Diff)
/projectfiles/gameengine/network/loopbacknetwork/NG_loopbacknetwork.dsp (+155, -155) (Diff)
/projectfiles/gameengine/network/network/NG_network.dsp (+174, -174) (Diff)
/projectfiles/gameengine/network/terraplaynetwork/NG_terraplaynetwork.dsp (+180, -180) (Diff)
/projectfiles/gameengine/physics/PHY_Physics/PHY_Dummy/PHY_Dummy.dsp (+154, -154) (Diff)
/projectfiles/gameengine/physics/PHY_Physics/PHY_Ode/PHY_Ode.dsp (+162, -162) (Diff)
/projectfiles/gameengine/physics/PHY_Physics/PHY_Physics.dsp (+178, -178) (Diff)
/projectfiles/gameengine/physics/PHY_Physics/PHY_Sumo/PHY_Sumo.dsp (+162, -162) (Diff)
/projectfiles/gameengine/rasterizer/openglrasterizer/RAS_openglrasterizer.dsp (+183, -183) (Diff)
/projectfiles/gameengine/rasterizer/RAS_rasterizer.dsp (+243, -243) (Diff)
/projectfiles/gameengine/scenegraph/SG_scenegraph.dsp (+199, -199) (Diff)
/projectfiles/kernel/gen_messaging/gen_messaging.dsp (+155, -155) (Diff)
/projectfiles/kernel/system/SYS_system.dsp (+183, -183) (Diff)
/projectfiles/sumo/fuzzics/SM_fuzzics.dsp (+216, -216) (Diff)
/projectfiles/sumo/moto/SM_moto.dsp (+332, -332) (Diff)
/projectfiles/sumo/solid/SM_solid.dsp (+340, -340) (Diff)
/projectfiles_vc7/sumo/moto/SM_moto.dsp (+332, -332) (Diff)
/projectfiles_vc7/sumo/solid/SM_solid.dsp (+340, -340) (Diff)
/projectfiles_vc9/blender/blender.sln (+1, -57) (Diff)
/projectfiles_vc9/blender/blender.vcproj (+7, -6) (Diff)
/projectfiles_vc9/blender/blenfont/BLF_blenfont.vcproj (+6, -2) (Diff)
/projectfiles_vc9/blender/blenkernel/BKE_blenkernel.vcproj (+8, -4) (Diff)
/projectfiles_vc9/blender/blenlib/BLI_blenlib.vcproj (+5, -5) (Diff)
/projectfiles_vc9/blender/BPY_python/BPY_python.vcproj (+9, -1) (Diff)
/projectfiles_vc9/blender/editors/ED_editors.vcproj (+75, -55) (Diff)
/projectfiles_vc9/blender/makesrna/RNA_makesrna.vcproj (+18, -6) (Diff)
/projectfiles_vc9/blender/makesrna/RNA_rna.vcproj (+10, -2) (Diff)
/projectfiles_vc9/blender/nodes/nodes.vcproj (+4, -4) (Diff)
/projectfiles_vc9/gameengine/gameplayer/ghost/GP_ghost.vcproj (+2, -2) (Diff)
/projectfiles_vc9/gameengine/ketsji/KX_ketsji.vcproj (+16, -0) (Diff)
/projectfiles_vc9/gameengine/physics/PHY_Physics/PHY_Bullet/PHY_Bullet.vcproj (+15, -6) (Diff)
/projectfiles_vc9/gameengine/physics/PHY_Physics/PHY_Physics.vcproj (+17, -0) (Diff)
/release/datafiles/blenderbuttons (+0, -0) (Diff)
/release/datafiles/prvicons (+0, -0) (Diff)
/release/getversion.py (+10, -3) (Diff)
/release/Makefile (+8, -4) (Diff)
/release/scripts/3ds_import.py (+5, -0) (Diff)
/release/scripts/bevel_center.py (+1, -1) (Diff)
/release/scripts/bpymodules/dxfLibrary.py (+40, -19) (Diff)
/release/scripts/export_dxf.py (+160, -35) (Diff)
/release/scripts/image_auto_layout.py (+8, -5) (Diff)
/release/scripts/import_dxf.py (+160, -85) (Diff)
/release/scripts/import_obj.py (+2, -0) (Diff)
/release/scripts/import_web3d.py (+5, -2) (Diff)
/release/scripts/uvcalc_smart_project.py (+1, -1) (Diff)
/release/VERSION (+1, -1) (Diff)
/release/windows/specific.sh (+0, -4) (Diff)
/SConstruct (+56, -31) (Diff)
/source/blender/blenfont/BLF_api.h (+52, -21) (Diff)
/source/blender/blenfont/CMakeLists.txt (+1, -7) (Diff)
/source/blender/blenfont/intern/blf.c (+186, -50) (Diff)
/source/blender/blenfont/intern/blf_dir.c (+34, -4) (Diff)
/source/blender/blenfont/intern/blf_font.c (+67, -57) (Diff)
/source/blender/blenfont/intern/blf_glyph.c (+279, -67) (Diff)
/source/blender/blenfont/intern/blf_internal.h (+9, -5) (Diff)
/source/blender/blenfont/intern/blf_internal_types.h (+41, -69) (Diff)
/source/blender/blenfont/intern/blf_lang.c (+95, -179) (Diff)
/source/blender/blenfont/intern/blf_util.c (+18, -25) (Diff)
/source/blender/blenfont/intern/Makefile (+0, -5) (Diff)
/source/blender/blenfont/SConscript (+1, -6) (Diff)
/source/blender/blenkernel/BKE_action.h (+2, -3) (Diff)
/source/blender/blenkernel/BKE_animsys.h (+22, -0) (Diff)
/source/blender/blenkernel/BKE_blender.h (+3, -0) (Diff)
/source/blender/blenkernel/BKE_bmesh.h (+1, -1) (Diff)
/source/blender/blenkernel/BKE_bmeshCustomData.h (+1, -1) (Diff)
/source/blender/blenkernel/BKE_booleanops.h (+2, -3) (Diff)
/source/blender/blenkernel/BKE_bvhutils.h (+42, -3) (Diff)
/source/blender/blenkernel/BKE_cloth.h (+1, -1) (Diff)
/source/blender/blenkernel/BKE_collision.h (+1, -1) (Diff)
/source/blender/blenkernel/BKE_colortools.h (+1, -0) (Diff)
/source/blender/blenkernel/BKE_constraint.h (+3, -1) (Diff)
/source/blender/blenkernel/BKE_curve.h (+5, -1) (Diff)
/source/blender/blenkernel/BKE_DerivedMesh.h (+2, -0) (Diff)
/source/blender/blenkernel/BKE_fcurve.h (+13, -0) (Diff)
/source/blender/blenkernel/BKE_global.h (+0, -4) (Diff)
/source/blender/blenkernel/BKE_library.h (+1, -0) (Diff)
/source/blender/blenkernel/BKE_main.h (+1, -0) (Diff)
/source/blender/blenkernel/BKE_mesh.h (+4, -0) (Diff)
/source/blender/blenkernel/BKE_particle.h (+17, -2) (Diff)
/source/blender/blenkernel/BKE_scene.h (+3, -0) (Diff)
/source/blender/blenkernel/BKE_screen.h (+49, -9) (Diff)
/source/blender/blenkernel/BKE_shrinkwrap.h (+17, -2) (Diff)
/source/blender/blenkernel/BKE_suggestions.h (+1, -1) (Diff)
/source/blender/blenkernel/CMakeLists.txt (+1, -5) (Diff)
/source/blender/blenkernel/intern/action.c (+73, -42) (Diff)
/source/blender/blenkernel/intern/anim.c (+48, -64) (Diff)
/source/blender/blenkernel/intern/anim_sys.c (+53, -12) (Diff)
/source/blender/blenkernel/intern/blender.c (+11, -2) (Diff)
/source/blender/blenkernel/intern/bmesh_private.h (+1, -1) (Diff)
/source/blender/blenkernel/intern/BME_conversions.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/BME_Customdata.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/BME_eulers.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/BME_mesh.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/BME_structure.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/BME_tools.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/booleanops.c (+66, -56) (Diff)
/source/blender/blenkernel/intern/bvhutils.c (+153, -43) (Diff)
/source/blender/blenkernel/intern/cdderivedmesh.c (+5, -8) (Diff)
/source/blender/blenkernel/intern/colortools.c (+36, -0) (Diff)
/source/blender/blenkernel/intern/constraint.c (+211, -24) (Diff)
/source/blender/blenkernel/intern/context.c (+0, -1) (Diff)
/source/blender/blenkernel/intern/curve.c (+9, -9) (Diff)
/source/blender/blenkernel/intern/customdata.c (+5, -3) (Diff)
/source/blender/blenkernel/intern/depsgraph.c (+17, -77) (Diff)
/source/blender/blenkernel/intern/DerivedMesh.c (+111, -120) (Diff)
/source/blender/blenkernel/intern/effect.c (+12, -17) (Diff)
/source/blender/blenkernel/intern/exotic.c (+2, -2) (Diff)
/source/blender/blenkernel/intern/fcurve.c (+364, -74) (Diff)
/source/blender/blenkernel/intern/font.c (+6, -14) (Diff)
/source/blender/blenkernel/intern/image.c (+4, -4) (Diff)
/source/blender/blenkernel/intern/ipo.c (+31, -22) (Diff)
/source/blender/blenkernel/intern/library.c (+35, -2) (Diff)
/source/blender/blenkernel/intern/Makefile (+2, -8) (Diff)
/source/blender/blenkernel/intern/mesh.c (+15, -0) (Diff)
/source/blender/blenkernel/intern/modifier.c (+115, -8) (Diff)
/source/blender/blenkernel/intern/node.c (+29, -10) (Diff)
/source/blender/blenkernel/intern/object.c (+3, -3) (Diff)
/source/blender/blenkernel/intern/particle.c (+129, -13) (Diff)
/source/blender/blenkernel/intern/particle_system.c (+42, -7) (Diff)
/source/blender/blenkernel/intern/scene.c (+16, -0) (Diff)
/source/blender/blenkernel/intern/screen.c (+17, -0) (Diff)
/source/blender/blenkernel/intern/shrinkwrap.c (+147, -153) (Diff)
/source/blender/blenkernel/intern/suggestions.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/text.c (+28, -20) (Diff)
/source/blender/blenkernel/intern/world.c (+2, -0) (Diff)
/source/blender/blenkernel/intern/writeffmpeg.c (+19, -17) (Diff)
/source/blender/blenkernel/SConscript (+19, -18) (Diff)
/source/blender/blenlib/BLI_noise.h (+0, -1) (Diff)
/source/blender/blenlib/BLI_rect.h (+0, -1) (Diff)
/source/blender/blenlib/BLI_string.h (+2, -2) (Diff)
/source/blender/blenlib/BLI_util.h (+3, -1) (Diff)
/source/blender/blenlib/CMakeLists.txt (+0, -4) (Diff)
/source/blender/blenlib/intern/fileops.c (+1, -1) (Diff)
/source/blender/blenlib/intern/freetypefont.c (+2, -6) (Diff)
/source/blender/blenlib/intern/Makefile (+0, -3) (Diff)
/source/blender/blenlib/intern/psfont.c (+1, -0) (Diff)
/source/blender/blenlib/intern/string.c (+5, -2) (Diff)
/source/blender/blenlib/intern/util.c (+97, -3) (Diff)
/source/blender/blenlib/SConscript (+0, -3) (Diff)
/source/blender/blenloader/intern/readblenentry.c (+1, -0) (Diff)
/source/blender/blenloader/intern/readfile.c (+174, -29) (Diff)
/source/blender/blenloader/intern/writefile.c (+44, -29) (Diff)
/source/blender/CMakeLists.txt (+0, -4) (Diff)
/source/blender/editors/animation/anim_channels.c (+286, -43) (Diff)
/source/blender/editors/animation/anim_draw.c (+2, -4) (Diff)
/source/blender/editors/animation/anim_filter.c (+30, -11) (Diff)
/source/blender/editors/animation/anim_ipo_utils.c (+55, -15) (Diff)
/source/blender/editors/animation/anim_markers.c (+193, -62) (Diff)
/source/blender/editors/animation/anim_ops.c (+9, -3) (Diff)
/source/blender/editors/animation/keyframes_draw.c (+0, -3) (Diff)
/source/blender/editors/animation/keyframes_edit.c (+134, -11) (Diff)
/source/blender/editors/animation/keyframing.c (+377, -1328) (Diff)
/source/blender/editors/armature/armature_intern.h (+8, -2) (Diff)
/source/blender/editors/armature/armature_ops.c (+40, -20) (Diff)
/source/blender/editors/armature/BIF_generate.h (+1, -1) (Diff)
/source/blender/editors/armature/BIF_retarget.h (+1, -1) (Diff)
/source/blender/editors/armature/editarmature.c (+13, -12) (Diff)
/source/blender/editors/armature/editarmature_generate.c (+4, -4) (Diff)
/source/blender/editors/armature/editarmature_retarget.c (+12, -11) (Diff)
/source/blender/editors/armature/editarmature_sketch.c (+20, -5) (Diff)
/source/blender/editors/armature/Makefile (+0, -1) (Diff)
/source/blender/editors/armature/poselib.c (+593, -430) (Diff)
/source/blender/editors/armature/poseobject.c (+28, -5) (Diff)
/source/blender/editors/armature/reeb.c (+3, -5) (Diff)
/source/blender/editors/armature/SConscript (+1, -1) (Diff)
/source/blender/editors/CMakeLists.txt (+1, -3) (Diff)
/source/blender/editors/curve/curve_intern.h (+7, -7) (Diff)
/source/blender/editors/curve/curve_ops.c (+24, -22) (Diff)
/source/blender/editors/curve/editcurve.c (+62, -63) (Diff)
/source/blender/editors/curve/editfont.c (+12, -12) (Diff)
/source/blender/editors/curve/Makefile (+0, -1) (Diff)
/source/blender/editors/curve/SConscript (+1, -1) (Diff)
/source/blender/editors/datafiles/blenderbuttons.c (+4566, -4098) (Diff)
/source/blender/editors/datafiles/prvicons.c (+404, -299) (Diff)
/source/blender/editors/gpencil/drawgpencil.c (+8, -6) (Diff)
/source/blender/editors/gpencil/editaction_gpencil.c (+6, -3) (Diff)
/source/blender/editors/gpencil/gpencil_intern.h (+1, -1) (Diff)
/source/blender/editors/gpencil/Makefile (+0, -1) (Diff)
/source/blender/editors/gpencil/SConscript (+1, -1) (Diff)
/source/blender/editors/include/BIF_glutil.h (+2, -0) (Diff)
/source/blender/editors/include/BIF_transform.h (+2, -2) (Diff)
/source/blender/editors/include/ED_anim_api.h (+1, -0) (Diff)
/source/blender/editors/include/ED_fileselect.h (+14, -1) (Diff)
/source/blender/editors/include/ED_gpencil.h (+3, -21) (Diff)
/source/blender/editors/include/ED_keyframes_edit.h (+16, -1) (Diff)
/source/blender/editors/include/ED_keyframing.h (+88, -12) (Diff)
/source/blender/editors/include/ED_markers.h (+16, -4) (Diff)
/source/blender/editors/include/ED_mesh.h (+1, -0) (Diff)
/source/blender/editors/include/ED_screen.h (+4, -0) (Diff)
/source/blender/editors/include/ED_util.h (+1, -0) (Diff)
/source/blender/editors/include/ED_view3d.h (+1, -2) (Diff)
/source/blender/editors/include/UI_interface.h (+114, -146) (Diff)
/source/blender/editors/include/UI_resources.h (+40, -57) (Diff)
/source/blender/editors/include/UI_view2d.h (+0, -2) (Diff)
/source/blender/editors/interface/interface.c (+429, -501) (Diff)
/source/blender/editors/interface/interface_draw.c (+200, -2421) (Diff)
/source/blender/editors/interface/interface_handlers.c (+78, -77) (Diff)
/source/blender/editors/interface/interface_icons.c (+4, -2) (Diff)
/source/blender/editors/interface/interface_intern.h (+96, -29) (Diff)
/source/blender/editors/interface/interface_layout.c (+1342, -592) (Diff)
/source/blender/editors/interface/interface_panel.c (+514, -757) (Diff)
/source/blender/editors/interface/interface_regions.c (+221, -549) (Diff)
/source/blender/editors/interface/interface_utils.c (+90, -77) (Diff)
/source/blender/editors/interface/interface_widgets.c (+1227, -388) (Diff)
/source/blender/editors/interface/Makefile (+0, -2) (Diff)
/source/blender/editors/interface/resources.c (+557, -285) (Diff)
/source/blender/editors/interface/SConscript (+4, -3) (Diff)
/source/blender/editors/interface/view2d.c (+45, -41) (Diff)
/source/blender/editors/interface/view2d_ops.c (+107, -19) (Diff)
/source/blender/editors/mesh/bmeshutils.c (+0, -2) (Diff)
/source/blender/editors/mesh/bmeshutils_mods.c (+3, -3) (Diff)
/source/blender/editors/mesh/bmesh_tools.c (+9, -11) (Diff)
/source/blender/editors/mesh/editdeform.c (+8, -8) (Diff)
/source/blender/editors/mesh/editmesh.c (+11, -23) (Diff)
/source/blender/editors/mesh/editmesh_add.c (+32, -32) (Diff)
/source/blender/editors/mesh/editmesh_lib.c (+3, -3) (Diff)
/source/blender/editors/mesh/editmesh_loop.c (+5, -17) (Diff)
/source/blender/editors/mesh/editmesh_mods.c (+81, -74) (Diff)
/source/blender/editors/mesh/editmesh_tools.c (+219, -101) (Diff)
/source/blender/editors/mesh/Makefile (+0, -1) (Diff)
/source/blender/editors/mesh/mesh_intern.h (+28, -28) (Diff)
/source/blender/editors/mesh/mesh_ops.c (+52, -51) (Diff)
/source/blender/editors/mesh/SConscript (+1, -1) (Diff)
/source/blender/editors/object/editconstraint.c (+5, -0) (Diff)
/source/blender/editors/object/Makefile (+0, -1) (Diff)
/source/blender/editors/object/object_edit.c (+167, -127) (Diff)
/source/blender/editors/object/object_intern.h (+3, -0) (Diff)
/source/blender/editors/object/object_ops.c (+3, -1) (Diff)
/source/blender/editors/object/SConscript (+1, -1) (Diff)
/source/blender/editors/physics/editparticle.c (+12, -10) (Diff)
/source/blender/editors/physics/Makefile (+0, -1) (Diff)
/source/blender/editors/physics/physics_intern.h (+2, -4) (Diff)
/source/blender/editors/physics/SConscript (+1, -1) (Diff)
/source/blender/editors/preview/Makefile (+0, -1) (Diff)
/source/blender/editors/preview/previewrender.c (+1, -1) (Diff)
/source/blender/editors/preview/SConscript (+1, -1) (Diff)
/source/blender/editors/screen/area.c (+270, -32) (Diff)
/source/blender/editors/screen/CMakeLists.txt (+1, -3) (Diff)
/source/blender/editors/screen/glutil.c (+11, -6) (Diff)
/source/blender/editors/screen/Makefile (+1, -1) (Diff)
/source/blender/editors/screen/SConscript (+2, -2) (Diff)
/source/blender/editors/screen/screen_ops.c (+33, -66) (Diff)
/source/blender/editors/sculpt_paint/Makefile (+0, -1) (Diff)
/source/blender/editors/sculpt_paint/paint_image.c (+2, -4) (Diff)
/source/blender/editors/sculpt_paint/SConscript (+1, -1) (Diff)
/source/blender/editors/space_action/action_draw.c (+12, -12) (Diff)
/source/blender/editors/space_action/action_edit.c (+26, -54) (Diff)
/source/blender/editors/space_action/action_header.c (+37, -25) (Diff)
/source/blender/editors/space_action/action_ops.c (+11, -4) (Diff)
/source/blender/editors/space_action/action_select.c (+208, -357) (Diff)
/source/blender/editors/space_buttons/buttons_header.c (+67, -60) (Diff)
/source/blender/editors/space_buttons/buttons_intern.h (+12, -29) (Diff)
/source/blender/editors/space_buttons/space_buttons.c (+48, -51) (Diff)
/source/blender/editors/space_file/filelist.c (+3, -37) (Diff)
/source/blender/editors/space_file/filelist.h (+1, -14) (Diff)
/source/blender/editors/space_file/filesel.c (+67, -17) (Diff)
/source/blender/editors/space_file/file_draw.c (+91, -83) (Diff)
/source/blender/editors/space_file/file_header.c (+12, -17) (Diff)
/source/blender/editors/space_file/file_intern.h (+4, -0) (Diff)
/source/blender/editors/space_file/file_ops.c (+7, -55) (Diff)
/source/blender/editors/space_file/fsmenu.c (+27, -0) (Diff)
/source/blender/editors/space_file/Makefile (+1, -1) (Diff)
/source/blender/editors/space_file/SConscript (+2, -2) (Diff)
/source/blender/editors/space_graph/graph_buttons.c (+328, -142) (Diff)
/source/blender/editors/space_graph/graph_draw.c (+93, -19) (Diff)
/source/blender/editors/space_graph/graph_edit.c (+269, -74) (Diff)
/source/blender/editors/space_graph/graph_header.c (+16, -11) (Diff)
/source/blender/editors/space_graph/graph_intern.h (+12, -2) (Diff)
/source/blender/editors/space_graph/graph_ops.c (+22, -5) (Diff)
/source/blender/editors/space_graph/graph_select.c (+83, -66) (Diff)
/source/blender/editors/space_graph/space_graph.c (+17, -22) (Diff)
/source/blender/editors/space_image/image_draw.c (+25, -13) (Diff)
/source/blender/editors/space_image/image_header.c (+109, -103) (Diff)
/source/blender/editors/space_image/image_intern.h (+2, -1) (Diff)
/source/blender/editors/space_image/image_ops.c (+7, -4) (Diff)
/source/blender/editors/space_image/SConscript (+6, -1) (Diff)
/source/blender/editors/space_image/space_image.c (+12, -27) (Diff)
/source/blender/editors/space_info/info_header.c (+19, -22) (Diff)
/source/blender/editors/space_info/space_info.c (+0, -34) (Diff)
/source/blender/editors/space_nla/nla_header.c (+2, -5) (Diff)
/source/blender/editors/space_node/drawnode.c (+10, -20) (Diff)
/source/blender/editors/space_node/Makefile (+0, -1) (Diff)
/source/blender/editors/space_node/node_draw.c (+39, -69) (Diff)
/source/blender/editors/space_node/node_edit.c (+8, -8) (Diff)
/source/blender/editors/space_node/node_header.c (+21, -26) (Diff)
/source/blender/editors/space_node/node_intern.h (+1, -1) (Diff)
/source/blender/editors/space_node/node_ops.c (+2, -2) (Diff)
/source/blender/editors/space_node/SConscript (+1, -1) (Diff)
/source/blender/editors/space_node/space_node.c (+1, -1) (Diff)
/source/blender/editors/space_outliner/outliner.c (+238, -78) (Diff)
/source/blender/editors/space_outliner/outliner_header.c (+2, -5) (Diff)
/source/blender/editors/space_outliner/outliner_intern.h (+4, -0) (Diff)
/source/blender/editors/space_outliner/outliner_ops.c (+6, -0) (Diff)
/source/blender/editors/space_outliner/space_outliner.c (+1, -1) (Diff)
/source/blender/editors/space_script/script_edit.c (+32, -2) (Diff)
/source/blender/editors/space_script/script_header.c (+2, -5) (Diff)
/source/blender/editors/space_script/script_intern.h (+2, -1) (Diff)
/source/blender/editors/space_script/script_ops.c (+4, -2) (Diff)
/source/blender/editors/space_script/space_script.c (+2, -0) (Diff)
/source/blender/editors/space_sequencer/Makefile (+1, -1) (Diff)
/source/blender/editors/space_sequencer/SConscript (+2, -2) (Diff)
/source/blender/editors/space_sequencer/sequencer_add.c (+10, -10) (Diff)
/source/blender/editors/space_sequencer/sequencer_draw.c (+10, -9) (Diff)
/source/blender/editors/space_sequencer/sequencer_edit.c (+2, -2) (Diff)
/source/blender/editors/space_sequencer/sequencer_header.c (+80, -84) (Diff)
/source/blender/editors/space_sequencer/sequencer_intern.h (+6, -6) (Diff)
/source/blender/editors/space_sequencer/sequencer_ops.c (+7, -7) (Diff)
/source/blender/editors/space_sound/sound_header.c (+2, -5) (Diff)
/source/blender/editors/space_text/SConscript (+1, -1) (Diff)
/source/blender/editors/space_text/space_text.c (+10, -9) (Diff)
/source/blender/editors/space_text/text_header.c (+96, -345) (Diff)
/source/blender/editors/space_text/text_intern.h (+1, -2) (Diff)
/source/blender/editors/space_text/text_ops.c (+104, -15) (Diff)
/source/blender/editors/space_time/time_header.c (+7, -10) (Diff)
/source/blender/editors/space_view3d/drawarmature.c (+6, -13) (Diff)
/source/blender/editors/space_view3d/drawobject.c (+338, -291) (Diff)
/source/blender/editors/space_view3d/Makefile (+1, -1) (Diff)
/source/blender/editors/space_view3d/SConscript (+2, -2) (Diff)
/source/blender/editors/space_view3d/space_view3d.c (+63, -21) (Diff)
/source/blender/editors/space_view3d/view3d_buttons.c (+231, -186) (Diff)
/source/blender/editors/space_view3d/view3d_draw.c (+22, -48) (Diff)
/source/blender/editors/space_view3d/view3d_header.c (+272, -272) (Diff)
/source/blender/editors/space_view3d/view3d_intern.h (+9, -7) (Diff)
/source/blender/editors/space_view3d/view3d_ops.c (+4, -4) (Diff)
/source/blender/editors/space_view3d/view3d_select.c (+4, -4) (Diff)
/source/blender/editors/space_view3d/view3d_snap.c (+10, -9) (Diff)
/source/blender/editors/space_view3d/view3d_view.c (+4, -67) (Diff)
/source/blender/editors/transform/Makefile (+0, -1) (Diff)
/source/blender/editors/transform/SConscript (+1, -1) (Diff)
/source/blender/editors/transform/transform.c (+244, -88) (Diff)
/source/blender/editors/transform/transform.h (+11, -2) (Diff)
/source/blender/editors/transform/transform_constraints.c (+1, -3) (Diff)
/source/blender/editors/transform/transform_conversions.c (+55, -55) (Diff)
/source/blender/editors/transform/transform_generics.c (+3, -2) (Diff)
/source/blender/editors/transform/transform_input.c (+9, -0) (Diff)
/source/blender/editors/transform/transform_ops.c (+16, -14) (Diff)
/source/blender/editors/transform/transform_orientations.c (+18, -16) (Diff)
/source/blender/editors/transform/transform_snap.c (+22, -9) (Diff)
/source/blender/editors/util/editmode_undo.c (+1, -1) (Diff)
/source/blender/editors/util/ed_util.c (+31, -24) (Diff)
/source/blender/editors/util/undo.c (+4, -0) (Diff)
/source/blender/editors/uvedit/uvedit_draw.c (+6, -5) (Diff)
/source/blender/editors/uvedit/uvedit_ops.c (+64, -63) (Diff)
/source/blender/editors/uvedit/uvedit_parametrizer.c (+30, -2) (Diff)
/source/blender/editors/uvedit/uvedit_parametrizer.h (+1, -1) (Diff)
/source/blender/editors/uvedit/uvedit_unwrap_ops.c (+50, -46) (Diff)
/source/blender/gpu/intern/gpu_draw.c (+33, -1) (Diff)
/source/blender/imbuf/IMB_imbuf_types.h (+1, -0) (Diff)
/source/blender/imbuf/intern/allocimbuf.c (+5, -0) (Diff)
/source/blender/imbuf/intern/anim.c (+4, -4) (Diff)
/source/blender/imbuf/intern/anim5.c (+1, -1) (Diff)
/source/blender/imbuf/intern/dds/Makefile (+1, -1) (Diff)
/source/blender/imbuf/intern/IMB_anim.h (+3, -3) (Diff)
/source/blender/imbuf/intern/IMB_jp2.h (+1, -1) (Diff)
/source/blender/imbuf/intern/scaling.c (+2, -1) (Diff)
/source/blender/imbuf/intern/util.c (+4, -4) (Diff)
/source/blender/Makefile (+0, -4) (Diff)
/source/blender/makesdna/DNA_action_types.h (+4, -0) (Diff)
/source/blender/makesdna/DNA_actuator_types.h (+4, -1) (Diff)
/source/blender/makesdna/DNA_anim_types.h (+82, -28) (Diff)
/source/blender/makesdna/DNA_cloth_types.h (+1, -1) (Diff)
/source/blender/makesdna/DNA_constraint_types.h (+11, -1) (Diff)
/source/blender/makesdna/DNA_customdata_types.h (+3, -3) (Diff)
/source/blender/makesdna/DNA_gpencil_types.h (+3, -0) (Diff)
/source/blender/makesdna/DNA_ID.h (+1, -0) (Diff)
/source/blender/makesdna/DNA_material_types.h (+6, -7) (Diff)
/source/blender/makesdna/DNA_modifier_types.h (+9, -0) (Diff)
/source/blender/makesdna/DNA_object_fluidsim.h (+1, -1) (Diff)
/source/blender/makesdna/DNA_object_force.h (+1, -0) (Diff)
/source/blender/makesdna/DNA_object_types.h (+5, -1) (Diff)
/source/blender/makesdna/DNA_particle_types.h (+2, -2) (Diff)
/source/blender/makesdna/DNA_scene_types.h (+12, -1) (Diff)
/source/blender/makesdna/DNA_screen_types.h (+17, -4) (Diff)
/source/blender/makesdna/DNA_sensor_types.h (+7, -4) (Diff)
/source/blender/makesdna/DNA_space_types.h (+13, -7) (Diff)
/source/blender/makesdna/DNA_userdef_types.h (+124, -33) (Diff)
/source/blender/makesdna/DNA_view3d_types.h (+4, -1) (Diff)
/source/blender/makesdna/DNA_world_types.h (+5, -1) (Diff)
/source/blender/makesdna/intern/dna_genfile.c (+4, -4) (Diff)
/source/blender/makesdna/intern/SConscript (+4, -1) (Diff)
/source/blender/makesrna/intern/CMakeLists.txt (+6, -51) (Diff)
/source/blender/makesrna/intern/Makefile (+21, -2) (Diff)
/source/blender/makesrna/intern/makesrna.c (+458, -110) (Diff)
/source/blender/makesrna/intern/rna_access.c (+861, -169) (Diff)
/source/blender/makesrna/intern/rna_action.c (+1, -178) (Diff)
/source/blender/makesrna/intern/rna_animation.c (+4, -4) (Diff)
/source/blender/makesrna/intern/rna_armature.c (+4, -4) (Diff)
/source/blender/makesrna/intern/rna_camera.c (+2, -1) (Diff)
/source/blender/makesrna/intern/rna_cloth.c (+1, -1) (Diff)
/source/blender/makesrna/intern/rna_context.c (+7, -6) (Diff)
/source/blender/makesrna/intern/rna_curve.c (+29, -35) (Diff)
/source/blender/makesrna/intern/rna_define.c (+505, -90) (Diff)
/source/blender/makesrna/intern/rna_fluidsim.c (+7, -7) (Diff)
/source/blender/makesrna/intern/rna_ID.c (+24, -1) (Diff)
/source/blender/makesrna/intern/rna_image.c (+2, -2) (Diff)
/source/blender/makesrna/intern/rna_internal.h (+37, -4) (Diff)
/source/blender/makesrna/intern/rna_internal_types.h (+51, -3) (Diff)
/source/blender/makesrna/intern/rna_lamp.c (+12, -7) (Diff)
/source/blender/makesrna/intern/rna_material.c (+24, -29) (Diff)
/source/blender/makesrna/intern/rna_modifier.c (+42, -36) (Diff)
/source/blender/makesrna/intern/rna_nodetree.c (+2, -2) (Diff)
/source/blender/makesrna/intern/rna_object.c (+42, -20) (Diff)
/source/blender/makesrna/intern/rna_particle.c (+0, -5) (Diff)
/source/blender/makesrna/intern/rna_pose.c (+14, -0) (Diff)
/source/blender/makesrna/intern/rna_rna.c (+173, -11) (Diff)
/source/blender/makesrna/intern/rna_scene.c (+109, -13) (Diff)
/source/blender/makesrna/intern/rna_screen.c (+11, -9) (Diff)
/source/blender/makesrna/intern/rna_space.c (+23, -22) (Diff)
/source/blender/makesrna/intern/rna_text.c (+13, -0) (Diff)
/source/blender/makesrna/intern/rna_texture.c (+422, -142) (Diff)
/source/blender/makesrna/intern/rna_userdef.c (+394, -121) (Diff)
/source/blender/makesrna/intern/rna_wm.c (+13, -0) (Diff)
/source/blender/makesrna/intern/rna_world.c (+17, -18) (Diff)
/source/blender/makesrna/intern/SConscript (+21, -19) (Diff)
/source/blender/makesrna/RNA_access.h (+91, -17) (Diff)
/source/blender/makesrna/RNA_define.h (+36, -34) (Diff)
/source/blender/makesrna/RNA_enum_types.h (+8, -0) (Diff)
/source/blender/makesrna/RNA_types.h (+53, -0) (Diff)
/source/blender/makesrna/SConscript (+1, -1) (Diff)
/source/blender/nodes/CMakeLists.txt (+0, -4) (Diff)
/source/blender/nodes/intern/CMP_nodes/CMP_normalize.c (+1, -1) (Diff)
/source/blender/nodes/intern/SHD_nodes/SHD_dynamic.c (+5, -1) (Diff)
/source/blender/nodes/intern/SHD_nodes/SHD_invert.c (+1, -1) (Diff)
/source/blender/nodes/intern/TEX_nodes/Makefile (+1, -1) (Diff)
/source/blender/nodes/intern/TEX_nodes/TEX_image.c (+1, -1) (Diff)
/source/blender/nodes/intern/TEX_nodes/TEX_texture.c (+1, -1) (Diff)
/source/blender/nodes/intern/TEX_nodes/TEX_valToNor.c (+1, -1) (Diff)
/source/blender/nodes/intern/TEX_nodes/TEX_valToRgb.c (+1, -1) (Diff)
/source/blender/nodes/intern/TEX_util.c (+8, -1) (Diff)
/source/blender/nodes/SConscript (+15, -16) (Diff)
/source/blender/nodes/TEX_node.h (+1, -1) (Diff)
/source/blender/python/BPY_extern.h (+4, -2) (Diff)
/source/blender/python/CMakeLists.txt (+0, -5) (Diff)
/source/blender/python/epy_doc_gen.py (+188, -110) (Diff)
/source/blender/python/intern/bpy_compat.h (+1, -0) (Diff)
/source/blender/python/intern/bpy_interface.c (+360, -27) (Diff)
/source/blender/python/intern/bpy_operator.c (+8, -14) (Diff)
/source/blender/python/intern/bpy_operator.h (+1, -1) (Diff)
/source/blender/python/intern/bpy_rna.c (+772, -129) (Diff)
/source/blender/python/intern/bpy_rna.h (+4, -5) (Diff)
/source/blender/python/intern/bpy_ui.c (+10, -58) (Diff)
/source/blender/python/intern/bpy_util.c (+110, -2) (Diff)
/source/blender/python/intern/bpy_util.h (+28, -0) (Diff)
/source/blender/python/intern/Makefile (+0, -1) (Diff)
/source/blender/python/intern/stubs.c (+0, -2) (Diff)
/source/blender/python/SConscript (+1, -0) (Diff)
/source/blender/render/intern/source/convertblender.c (+434, -523) (Diff)
/source/blender/render/intern/source/raytrace.c (+1, -1) (Diff)
/source/blender/render/intern/source/rendercore.c (+1, -1) (Diff)
/source/blender/render/intern/source/renderdatabase.c (+3, -1) (Diff)
/source/blender/SConscript (+0, -3) (Diff)
/source/blender/windowmanager/CMakeLists.txt (+1, -3) (Diff)
/source/blender/windowmanager/intern/Makefile (+0, -2) (Diff)
/source/blender/windowmanager/intern/wm_event_system.c (+1, -1) (Diff)
/source/blender/windowmanager/intern/wm_files.c (+27, -406) (Diff)
/source/blender/windowmanager/intern/wm_init_exit.c (+5, -17) (Diff)
/source/blender/windowmanager/intern/wm_operators.c (+180, -18) (Diff)
/source/blender/windowmanager/intern/wm_subwindow.c (+23, -0) (Diff)
/source/blender/windowmanager/intern/wm_window.c (+4, -0) (Diff)
/source/blender/windowmanager/SConscript (+2, -2) (Diff)
/source/blender/windowmanager/WM_api.h (+6, -1) (Diff)
/source/creator/CMakeLists.txt (+6, -4) (Diff)
/source/creator/creator.c (+2, -0) (Diff)
/source/creator/Makefile (+6, -4) (Diff)
/source/creator/SConscript (+9, -7) (Diff)
/source/darwin/Makefile (+5, -2) (Diff)
/source/gameengine/BlenderRoutines/BL_KetsjiEmbedStart.cpp (+11, -3) (Diff)
/source/gameengine/BlenderRoutines/CMakeLists.txt (+1, -1) (Diff)
/source/gameengine/BlenderRoutines/KX_BlenderGL.cpp (+5, -9) (Diff)
/source/gameengine/BlenderRoutines/KX_BlenderKeyboardDevice.cpp (+2, -2) (Diff)
/source/gameengine/BlenderRoutines/KX_BlenderRenderTools.cpp (+91, -75) (Diff)
/source/gameengine/BlenderRoutines/KX_BlenderRenderTools.h (+2, -1) (Diff)
/source/gameengine/BlenderRoutines/Makefile (+1, -2) (Diff)
/source/gameengine/BlenderRoutines/SConscript (+3, -2) (Diff)
/source/gameengine/Converter/BL_ActionActuator.cpp (+75, -97) (Diff)
/source/gameengine/Converter/BL_ActionActuator.h (+10, -4) (Diff)
/source/gameengine/Converter/BL_BlenderDataConversion.cpp (+89, -23) (Diff)
/source/gameengine/Converter/BL_ShapeActionActuator.cpp (+76, -100) (Diff)
/source/gameengine/Converter/BL_ShapeActionActuator.h (+21, -15) (Diff)
/source/gameengine/Converter/CMakeLists.txt (+0, -1) (Diff)
/source/gameengine/Converter/KX_BlenderSceneConverter.cpp (+5, -2) (Diff)
/source/gameengine/Converter/KX_ConvertActuators.cpp (+4, -12) (Diff)
/source/gameengine/Converter/KX_ConvertSensors.cpp (+5, -1) (Diff)
/source/gameengine/Converter/SConscript (+1, -1) (Diff)
/source/gameengine/Expressions/BoolValue.cpp (+2, -2) (Diff)
/source/gameengine/Expressions/BoolValue.h (+1, -1) (Diff)
/source/gameengine/Expressions/ConstExpr.cpp (+1, -1) (Diff)
/source/gameengine/Expressions/ConstExpr.h (+1, -1) (Diff)
/source/gameengine/Expressions/EmptyValue.cpp (+1, -1) (Diff)
/source/gameengine/Expressions/EmptyValue.h (+1, -1) (Diff)
/source/gameengine/Expressions/ErrorValue.cpp (+1, -1) (Diff)
/source/gameengine/Expressions/ErrorValue.h (+1, -1) (Diff)
/source/gameengine/Expressions/FloatValue.cpp (+2, -2) (Diff)
/source/gameengine/Expressions/FloatValue.h (+1, -1) (Diff)
/source/gameengine/Expressions/InputParser.cpp (+12, -5) (Diff)
/source/gameengine/Expressions/InputParser.h (+2, -0) (Diff)
/source/gameengine/Expressions/IntValue.cpp (+12, -9) (Diff)
/source/gameengine/Expressions/IntValue.h (+7, -5) (Diff)
/source/gameengine/Expressions/ListValue.cpp (+98, -40) (Diff)
/source/gameengine/Expressions/ListValue.h (+11, -2) (Diff)
/source/gameengine/Expressions/PyObjectPlus.cpp (+626, -511) (Diff)
/source/gameengine/Expressions/PyObjectPlus.h (+184, -114) (Diff)
/source/gameengine/Expressions/StringValue.cpp (+1, -1) (Diff)
/source/gameengine/Expressions/StringValue.h (+1, -1) (Diff)
/source/gameengine/Expressions/Value.cpp (+138, -219) (Diff)
/source/gameengine/Expressions/Value.h (+11, -27) (Diff)
/source/gameengine/Expressions/VectorValue.cpp (+1, -1) (Diff)
/source/gameengine/Expressions/VectorValue.h (+1, -1) (Diff)
/source/gameengine/Expressions/VoidValue.h (+1, -1) (Diff)
/source/gameengine/GameLogic/Joystick/SCA_Joystick.cpp (+30, -61) (Diff)
/source/gameengine/GameLogic/Joystick/SCA_Joystick.h (+13, -28) (Diff)
/source/gameengine/GameLogic/Joystick/SCA_JoystickDefines.h (+6, -0) (Diff)
/source/gameengine/GameLogic/Joystick/SCA_JoystickEvents.cpp (+3, -1) (Diff)
/source/gameengine/GameLogic/SCA_2DFilterActuator.cpp (+67, -25) (Diff)
/source/gameengine/GameLogic/SCA_2DFilterActuator.h (+35, -2) (Diff)
/source/gameengine/GameLogic/SCA_ActuatorSensor.cpp (+18, -24) (Diff)
/source/gameengine/GameLogic/SCA_ActuatorSensor.h (+3, -3) (Diff)
/source/gameengine/GameLogic/SCA_AlwaysSensor.cpp (+11, -11) (Diff)
/source/gameengine/GameLogic/SCA_AlwaysSensor.h (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_ANDController.cpp (+11, -11) (Diff)
/source/gameengine/GameLogic/SCA_ANDController.h (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_DelaySensor.cpp (+22, -28) (Diff)
/source/gameengine/GameLogic/SCA_DelaySensor.h (+5, -5) (Diff)
/source/gameengine/GameLogic/SCA_ExpressionController.cpp (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_ExpressionController.h (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_ILogicBrick.cpp (+36, -31) (Diff)
/source/gameengine/GameLogic/SCA_ILogicBrick.h (+6, -4) (Diff)
/source/gameengine/GameLogic/SCA_IObject.cpp (+11, -11) (Diff)
/source/gameengine/GameLogic/SCA_IObject.h (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_ISensor.cpp (+49, -52) (Diff)
/source/gameengine/GameLogic/SCA_ISensor.h (+11, -8) (Diff)
/source/gameengine/GameLogic/SCA_JoystickSensor.cpp (+136, -108) (Diff)
/source/gameengine/GameLogic/SCA_JoystickSensor.h (+11, -2) (Diff)
/source/gameengine/GameLogic/SCA_KeyboardSensor.cpp (+243, -243) (Diff)
/source/gameengine/GameLogic/SCA_KeyboardSensor.h (+32, -26) (Diff)
/source/gameengine/GameLogic/SCA_MouseSensor.cpp (+18, -28) (Diff)
/source/gameengine/GameLogic/SCA_MouseSensor.h (+4, -4) (Diff)
/source/gameengine/GameLogic/SCA_NANDController.cpp (+11, -11) (Diff)
/source/gameengine/GameLogic/SCA_NANDController.h (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_NORController.cpp (+11, -11) (Diff)
/source/gameengine/GameLogic/SCA_NORController.h (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_ORController.cpp (+11, -11) (Diff)
/source/gameengine/GameLogic/SCA_ORController.h (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_PropertyActuator.cpp (+38, -29) (Diff)
/source/gameengine/GameLogic/SCA_PropertyActuator.h (+3, -2) (Diff)
/source/gameengine/GameLogic/SCA_PropertySensor.cpp (+26, -32) (Diff)
/source/gameengine/GameLogic/SCA_PropertySensor.h (+8, -8) (Diff)
/source/gameengine/GameLogic/SCA_PythonController.cpp (+77, -75) (Diff)
/source/gameengine/GameLogic/SCA_PythonController.h (+6, -2) (Diff)
/source/gameengine/GameLogic/SCA_RandomActuator.cpp (+103, -115) (Diff)
/source/gameengine/GameLogic/SCA_RandomActuator.h (+25, -39) (Diff)
/source/gameengine/GameLogic/SCA_RandomSensor.cpp (+38, -38) (Diff)
/source/gameengine/GameLogic/SCA_RandomSensor.h (+9, -6) (Diff)
/source/gameengine/GameLogic/SCA_XNORController.cpp (+11, -11) (Diff)
/source/gameengine/GameLogic/SCA_XNORController.h (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_XORController.cpp (+11, -11) (Diff)
/source/gameengine/GameLogic/SCA_XORController.h (+1, -1) (Diff)
/source/gameengine/GamePlayer/common/CMakeLists.txt (+0, -1) (Diff)
/source/gameengine/GamePlayer/common/GPC_KeyboardDevice.cpp (+3, -5) (Diff)
/source/gameengine/GamePlayer/common/GPC_RenderTools.cpp (+104, -96) (Diff)
/source/gameengine/GamePlayer/common/GPC_RenderTools.h (+3, -4) (Diff)
/source/gameengine/GamePlayer/common/Makefile (+0, -1) (Diff)
/source/gameengine/GamePlayer/common/SConscript (+0, -1) (Diff)
/source/gameengine/GamePlayer/common/unix/Makefile (+0, -1) (Diff)
/source/gameengine/GamePlayer/common/windows/Makefile (+1, -1) (Diff)
/source/gameengine/GamePlayer/ghost/CMakeLists.txt (+0, -1) (Diff)
/source/gameengine/GamePlayer/ghost/GPG_Application.cpp (+16, -6) (Diff)
/source/gameengine/GamePlayer/ghost/GPG_Application.h (+5, -1) (Diff)
/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp (+12, -3) (Diff)
/source/gameengine/GamePlayer/ghost/Makefile (+0, -1) (Diff)
/source/gameengine/GamePlayer/ghost/SConscript (+0, -1) (Diff)
/source/gameengine/Ketsji/BL_BlenderShader.cpp (+1, -1) (Diff)
/source/gameengine/Ketsji/BL_Shader.cpp (+152, -124) (Diff)
/source/gameengine/Ketsji/BL_Shader.h (+2, -1) (Diff)
/source/gameengine/Ketsji/CMakeLists.txt (+3, -2) (Diff)
/source/gameengine/Ketsji/KXNetwork/KX_NetworkMessageActuator.cpp (+34, -22) (Diff)
/source/gameengine/Ketsji/KXNetwork/KX_NetworkMessageActuator.h (+5, -2) (Diff)
/source/gameengine/Ketsji/KXNetwork/KX_NetworkMessageSensor.cpp (+58, -21) (Diff)
/source/gameengine/Ketsji/KXNetwork/KX_NetworkMessageSensor.h (+7, -1) (Diff)
/source/gameengine/Ketsji/KX_BlenderMaterial.cpp (+22, -24) (Diff)
/source/gameengine/Ketsji/KX_BlenderMaterial.h (+3, -2) (Diff)
/source/gameengine/Ketsji/KX_BulletPhysicsController.cpp (+35, -3) (Diff)
/source/gameengine/Ketsji/KX_BulletPhysicsController.h (+6, -1) (Diff)
/source/gameengine/Ketsji/KX_Camera.cpp (+171, -127) (Diff)
/source/gameengine/Ketsji/KX_Camera.h (+34, -7) (Diff)
/source/gameengine/Ketsji/KX_CameraActuator.cpp (+58, -79) (Diff)
/source/gameengine/Ketsji/KX_CameraActuator.h (+13, -10) (Diff)
/source/gameengine/Ketsji/KX_CDActuator.cpp (+86, -27) (Diff)
/source/gameengine/Ketsji/KX_CDActuator.h (+17, -6) (Diff)
/source/gameengine/Ketsji/KX_ConstraintActuator.cpp (+119, -79) (Diff)
/source/gameengine/Ketsji/KX_ConstraintActuator.h (+17, -12) (Diff)
/source/gameengine/Ketsji/KX_ConstraintWrapper.cpp (+16, -21) (Diff)
/source/gameengine/Ketsji/KX_ConstraintWrapper.h (+2, -2) (Diff)
/source/gameengine/Ketsji/KX_ConvertPhysicsObjects.cpp (+18, -11) (Diff)
/source/gameengine/Ketsji/KX_GameActuator.cpp (+32, -21) (Diff)
/source/gameengine/Ketsji/KX_GameActuator.h (+5, -1) (Diff)
/source/gameengine/Ketsji/KX_GameObject.cpp (+907, -346) (Diff)
/source/gameengine/Ketsji/KX_GameObject.h (+135, -21) (Diff)
/source/gameengine/Ketsji/KX_IPhysicsController.h (+7, -0) (Diff)
/source/gameengine/Ketsji/KX_IpoActuator.cpp (+77, -58) (Diff)
/source/gameengine/Ketsji/KX_IpoActuator.h (+13, -11) (Diff)
/source/gameengine/Ketsji/KX_KetsjiEngine.cpp (+173, -18) (Diff)
/source/gameengine/Ketsji/KX_KetsjiEngine.h (+9, -0) (Diff)
/source/gameengine/Ketsji/KX_Light.cpp (+71, -75) (Diff)
/source/gameengine/Ketsji/KX_Light.h (+2, -3) (Diff)
/source/gameengine/Ketsji/KX_MeshProxy.cpp (+152, -71) (Diff)
/source/gameengine/Ketsji/KX_MeshProxy.h (+14, -4) (Diff)
/source/gameengine/Ketsji/KX_MotionState.cpp (+13, -5) (Diff)
/source/gameengine/Ketsji/KX_MotionState.h (+1, -0) (Diff)
/source/gameengine/Ketsji/KX_MouseFocusSensor.cpp (+176, -69) (Diff)
/source/gameengine/Ketsji/KX_MouseFocusSensor.h (+18, -10) (Diff)
/source/gameengine/Ketsji/KX_NearSensor.cpp (+21, -30) (Diff)
/source/gameengine/Ketsji/KX_NearSensor.h (+2, -2) (Diff)
/source/gameengine/Ketsji/KX_ObjectActuator.cpp (+44, -66) (Diff)
/source/gameengine/Ketsji/KX_ObjectActuator.h (+12, -12) (Diff)
/source/gameengine/Ketsji/KX_OdePhysicsController.h (+4, -0) (Diff)
/source/gameengine/Ketsji/KX_ParentActuator.cpp (+50, -41) (Diff)
/source/gameengine/Ketsji/KX_ParentActuator.h (+9, -5) (Diff)
/source/gameengine/Ketsji/KX_PhysicsObjectWrapper.cpp (+24, -30) (Diff)
/source/gameengine/Ketsji/KX_PhysicsObjectWrapper.h (+6, -6) (Diff)
/source/gameengine/Ketsji/KX_PolygonMaterial.cpp (+113, -157) (Diff)
/source/gameengine/Ketsji/KX_PolygonMaterial.h (+15, -2) (Diff)
/source/gameengine/Ketsji/KX_PolyProxy.cpp (+43, -35) (Diff)
/source/gameengine/Ketsji/KX_PolyProxy.h (+2, -2) (Diff)
/source/gameengine/Ketsji/KX_PyConstraintBinding.cpp (+3, -2) (Diff)
/source/gameengine/Ketsji/KX_PyMath.cpp (+35, -1) (Diff)
/source/gameengine/Ketsji/KX_PyMath.h (+25, -8) (Diff)
/source/gameengine/Ketsji/KX_PythonInit.cpp (+277, -70) (Diff)
/source/gameengine/Ketsji/KX_PythonInit.h (+3, -2) (Diff)
/source/gameengine/Ketsji/KX_RadarSensor.cpp (+19, -26) (Diff)
/source/gameengine/Ketsji/KX_RadarSensor.h (+2, -2) (Diff)
/source/gameengine/Ketsji/KX_RayCast.cpp (+3, -0) (Diff)
/source/gameengine/Ketsji/KX_RaySensor.cpp (+89, -24) (Diff)
/source/gameengine/Ketsji/KX_RaySensor.h (+23, -5) (Diff)
/source/gameengine/Ketsji/KX_SCA_AddObjectActuator.cpp (+94, -63) (Diff)
/source/gameengine/Ketsji/KX_SCA_AddObjectActuator.h (+9, -6) (Diff)
/source/gameengine/Ketsji/KX_SCA_DynamicActuator.cpp (+22, -15) (Diff)
/source/gameengine/Ketsji/KX_SCA_DynamicActuator.h (+12, -1) (Diff)
/source/gameengine/Ketsji/KX_SCA_EndObjectActuator.cpp (+11, -11) (Diff)
/source/gameengine/Ketsji/KX_SCA_EndObjectActuator.h (+1, -1) (Diff)
/source/gameengine/Ketsji/KX_SCA_ReplaceMeshActuator.cpp (+49, -33) (Diff)
/source/gameengine/Ketsji/KX_SCA_ReplaceMeshActuator.h (+6, -1) (Diff)
/source/gameengine/Ketsji/KX_Scene.cpp (+192, -82) (Diff)
/source/gameengine/Ketsji/KX_Scene.h (+40, -5) (Diff)
/source/gameengine/Ketsji/KX_SceneActuator.cpp (+118, -40) (Diff)
/source/gameengine/Ketsji/KX_SceneActuator.h (+11, -7) (Diff)
/source/gameengine/Ketsji/KX_SG_BoneParentNodeRelationship.cpp (+5, -2) (Diff)
/source/gameengine/Ketsji/KX_SG_BoneParentNodeRelationship.h (+2, -1) (Diff)
/source/gameengine/Ketsji/KX_SG_NodeRelationships.cpp (+30, -22) (Diff)
/source/gameengine/Ketsji/KX_SG_NodeRelationships.h (+6, -3) (Diff)
/source/gameengine/Ketsji/KX_SoundActuator.cpp (+309, -73) (Diff)
/source/gameengine/Ketsji/KX_SoundActuator.h (+45, -20) (Diff)
/source/gameengine/Ketsji/KX_StateActuator.cpp (+26, -21) (Diff)
/source/gameengine/Ketsji/KX_StateActuator.h (+8, -5) (Diff)
/source/gameengine/Ketsji/KX_SumoPhysicsController.cpp (+5, -0) (Diff)
/source/gameengine/Ketsji/KX_SumoPhysicsController.h (+5, -0) (Diff)
/source/gameengine/Ketsji/KX_TouchSensor.cpp (+43, -40) (Diff)
/source/gameengine/Ketsji/KX_TouchSensor.h (+6, -2) (Diff)
/source/gameengine/Ketsji/KX_TrackToActuator.cpp (+60, -47) (Diff)
/source/gameengine/Ketsji/KX_TrackToActuator.h (+11, -7) (Diff)
/source/gameengine/Ketsji/KX_VehicleWrapper.cpp (+48, -73) (Diff)
/source/gameengine/Ketsji/KX_VehicleWrapper.h (+17, -17) (Diff)
/source/gameengine/Ketsji/KX_VertexProxy.cpp (+98, -73) (Diff)
/source/gameengine/Ketsji/KX_VertexProxy.h (+3, -3) (Diff)
/source/gameengine/Ketsji/KX_VisibilityActuator.cpp (+31, -20) (Diff)
/source/gameengine/Ketsji/KX_VisibilityActuator.h (+9, -3) (Diff)
/source/gameengine/Ketsji/SConscript (+12, -3) (Diff)
/source/gameengine/Network/NG_NetworkScene.h (+5, -0) (Diff)
/source/gameengine/Physics/BlOde/OdePhysicsController.h (+4, -0) (Diff)
/source/gameengine/Physics/BlOde/OdePhysicsEnvironment.h (+1, -0) (Diff)
/source/gameengine/Physics/Bullet/CcdPhysicsController.cpp (+241, -97) (Diff)
/source/gameengine/Physics/Bullet/CcdPhysicsController.h (+36, -11) (Diff)
/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.cpp (+641, -14) (Diff)
/source/gameengine/Physics/Bullet/CcdPhysicsEnvironment.h (+13, -2) (Diff)
/source/gameengine/Physics/Bullet/CMakeLists.txt (+9, -1) (Diff)
/source/gameengine/Physics/Bullet/Makefile (+8, -0) (Diff)
/source/gameengine/Physics/Bullet/SConscript (+14, -2) (Diff)
/source/gameengine/Physics/common/CMakeLists.txt (+1, -1) (Diff)
/source/gameengine/Physics/common/PHY_DynamicTypes.h (+33, -2) (Diff)
/source/gameengine/Physics/common/PHY_IMotionState.h (+2, -0) (Diff)
/source/gameengine/Physics/common/PHY_IPhysicsController.h (+9, -5) (Diff)
/source/gameengine/Physics/common/PHY_IPhysicsEnvironment.h (+4, -0) (Diff)
/source/gameengine/Physics/common/PHY_Pro.h (+4, -2) (Diff)
/source/gameengine/Physics/common/SConscript (+1, -1) (Diff)
/source/gameengine/Physics/Dummy/DummyPhysicsEnvironment.h (+1, -0) (Diff)
/source/gameengine/Physics/Sumo/SumoPhysicsController.h (+5, -0) (Diff)
/source/gameengine/Physics/Sumo/SumoPhysicsEnvironment.h (+1, -0) (Diff)
/source/gameengine/PyDoc/BL_ActionActuator.py (+4, -4) (Diff)
/source/gameengine/PyDoc/BL_ShapeActionActuator.py (+2, -1) (Diff)
/source/gameengine/PyDoc/epy_docgen.sh (+1, -1) (Diff)
/source/gameengine/PyDoc/GameKeys.py (+16, -10) (Diff)
/source/gameengine/PyDoc/GameLogic.py (+50, -3) (Diff)
/source/gameengine/PyDoc/KX_Camera.py (+22, -0) (Diff)
/source/gameengine/PyDoc/KX_CDActuator.py (+23, -0) (Diff)
/source/gameengine/PyDoc/KX_ConstraintActuator.py (+69, -0) (Diff)
/source/gameengine/PyDoc/KX_GameActuator.py (+7, -0) (Diff)
/source/gameengine/PyDoc/KX_GameObject.py (+112, -25) (Diff)
/source/gameengine/PyDoc/KX_IpoActuator.py (+33, -14) (Diff)
/source/gameengine/PyDoc/KX_MeshProxy.py (+8, -1) (Diff)
/source/gameengine/PyDoc/KX_MouseFocusSensor.py (+47, -6) (Diff)
/source/gameengine/PyDoc/KX_NetworkMessageActuator.py (+13, -0) (Diff)
/source/gameengine/PyDoc/KX_NetworkMessageSensor.py (+17, -0) (Diff)
/source/gameengine/PyDoc/KX_ParentActuator.py (+4, -3) (Diff)
/source/gameengine/PyDoc/KX_RaySensor.py (+25, -0) (Diff)
/source/gameengine/PyDoc/KX_SCA_AddObjectActuator.py (+22, -0) (Diff)
/source/gameengine/PyDoc/KX_SCA_ReplaceMeshActuator.py (+17, -7) (Diff)
/source/gameengine/PyDoc/KX_Scene.py (+8, -8) (Diff)
/source/gameengine/PyDoc/KX_SceneActuator.py (+13, -1) (Diff)
/source/gameengine/PyDoc/KX_SoundActuator.py (+53, -3) (Diff)
/source/gameengine/PyDoc/KX_StateActuator.py (+18, -0) (Diff)
/source/gameengine/PyDoc/KX_TouchSensor.py (+2, -2) (Diff)
/source/gameengine/PyDoc/KX_TrackToActuator.py (+11, -0) (Diff)
/source/gameengine/PyDoc/KX_VertexProxy.py (+26, -0) (Diff)
/source/gameengine/PyDoc/KX_VisibilityActuator.py (+8, -3) (Diff)
/source/gameengine/PyDoc/SCA_ILogicBrick.py (+5, -1) (Diff)
/source/gameengine/PyDoc/SCA_JoystickSensor.py (+18, -12) (Diff)
/source/gameengine/PyDoc/SCA_KeyboardSensor.py (+20, -17) (Diff)
/source/gameengine/PyDoc/SCA_MouseSensor.py (+10, -0) (Diff)
/source/gameengine/PyDoc/SCA_RandomSensor.py (+7, -0) (Diff)
/source/gameengine/PyDoc/SConscript (+23, -22) (Diff)
/source/gameengine/PyDoc/WhatsNew.py (+1, -1) (Diff)
/source/gameengine/Rasterizer/RAS_2DFilterManager.cpp (+6, -2) (Diff)
/source/gameengine/Rasterizer/RAS_BucketManager.cpp (+8, -0) (Diff)
/source/gameengine/Rasterizer/RAS_FramingManager.h (+7, -0) (Diff)
/source/gameengine/Rasterizer/RAS_IRasterizer.h (+1, -0) (Diff)
/source/gameengine/Rasterizer/RAS_IRenderTools.h (+1, -5) (Diff)
/source/gameengine/Rasterizer/RAS_LightObject.h (+1, -0) (Diff)
/source/gameengine/Rasterizer/RAS_MaterialBucket.cpp (+17, -12) (Diff)
/source/gameengine/Rasterizer/RAS_MaterialBucket.h (+4, -1) (Diff)
/source/gameengine/Rasterizer/RAS_MeshObject.cpp (+2, -0) (Diff)
/source/gameengine/Rasterizer/RAS_MeshObject.h (+10, -0) (Diff)
/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_ListRasterizer.cpp (+2, -2) (Diff)
/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_ListRasterizer.h (+1, -1) (Diff)
/source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLRasterizer.cpp (+17, -12) (Diff)
/source/gameengine/Rasterizer/RAS_Polygon.cpp (+14, -2) (Diff)
/source/gameengine/Rasterizer/RAS_Polygon.h (+13, -4) (Diff)
/source/gameengine/SceneGraph/SG_BBox.cpp (+7, -0) (Diff)
/source/gameengine/SceneGraph/SG_BBox.h (+2, -0) (Diff)
/source/gameengine/SceneGraph/SG_IObject.cpp (+2, -0) (Diff)
/source/gameengine/SceneGraph/SG_IObject.h (+30, -0) (Diff)
/source/gameengine/SceneGraph/SG_Node.cpp (+4, -3) (Diff)
/source/gameengine/SceneGraph/SG_Node.h (+2, -1) (Diff)
/source/gameengine/SceneGraph/SG_ParentRelation.h (+2, -1) (Diff)
/source/gameengine/SceneGraph/SG_Spatial.cpp (+14, -5) (Diff)
/source/gameengine/SceneGraph/SG_Spatial.h (+10, -3) (Diff)
/source/gameengine/VideoTexture/blendVideoTex.cpp (+5, -5) (Diff)
/source/gameengine/VideoTexture/FilterNormal.cpp (+13, -8) (Diff)
/source/gameengine/VideoTexture/FilterSource.h (+2, -1) (Diff)
/source/gameengine/VideoTexture/ImageRender.cpp (+18, -9) (Diff)
/source/gameengine/VideoTexture/ImageViewport.cpp (+1, -1) (Diff)
/source/gameengine/VideoTexture/Texture.cpp (+1, -1) (Diff)
/source/gameengine/VideoTexture/VideoBase.cpp (+1, -1) (Diff)
/source/gameengine/VideoTexture/VideoFFmpeg.h (+4, -4) (Diff)
/source/Makefile (+13, -20) (Diff)
/source/nan_compile.mk (+5, -0) (Diff)
/source/nan_definitions.mk (+69, -132) (Diff)
/source/SConscript (+1, -1) (Diff)
/tools/Blender.py (+13, -6) (Diff)
/tools/btools.py (+9, -14) (Diff)