Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-11-13Cycles: Update some comments in volume code.Thomas Dinges
2014-11-13GHOST/X11: correct USE_X11_ERROR_HANDLERS defineCampbell Barton
2014-11-13Fix missing UV field in Wave modifier.Bastien Montagne
2014-11-12cmake: fix generation / install on OS X,Martijn Berger
N.B. needs cmake cache rebuild
2014-11-12Cycles: Prevent NaN and inf in area lamp sampling caused by precision issuesSergey Sharybin
This doesn't have noticeable affect on the render times, but avoids possible numerical issues.
2014-11-12cmake buildbot. Create the zip archive with the name as expectedMartijn Berger
2014-11-12Fix bad 'COLOR' replacement in recent UI refactor.Bastien Montagne
2014-11-12Fix T41066: MSVC + AVX2 kernel causes artifacts in hair render.Thomas Dinges
The issue lies in the FMA functions, so disable them on Windows for now.
2014-11-12Cleanup, please follow existing style when adding new flags. ;)Thomas Dinges
2014-11-12Cleanup, typo fixes.Thomas Dinges
2014-11-11Fix: T42553 Linux cmake install now also without absolute path'sMartijn Berger
OS X cmake probably needs more checking.
2014-11-11Fix T41783: Cycles baking ignores displacementDalai Felinto
Create unique flag for output shaders with displacement data and use it to calculate transformed normal. Implementation suggested by Brecht Van Lommel. Reviewers: brecht Differential Revision: https://developer.blender.org/D890
2014-11-11Fix T42009: Cyclic set-scenes with linked libsCampbell Barton
Check linked libs on file load, Thanks to Sergey for the initial patch.
2014-11-11Cleanup: remove inline list-countCampbell Barton
2014-11-11UI: Cleanup, replace enum with functionCampbell Barton
2014-11-11UI: cleanup odd string-width checkCampbell Barton
2014-11-11UI: Cleanup (line length)Campbell Barton
2014-11-11UI: order & comment eButTypeCampbell Barton
2014-11-11UI: remove unused emboss-table defineCampbell Barton
2014-11-11Avoid calling powf with integer exponent in more placesSergej Reich
Move powX functions from particle code into math library and use them.
2014-11-11cloth: Avoid calling powf with integer exponentSergej Reich
This is pretty slow and even shows up in profiling.
2014-11-11cloth: Fix overallocation for collisionsSergej Reich
This was introduced when eltopo was added, but not reverted when it was removed.
2014-11-11cmake. refactor installing python things to not have absolute path'sMartijn Berger
buildbot. add rudementatry cpack based packing for cmake path
2014-11-11buildbot: fix: cmake generator is kind of sensitiveMartijn Berger
2014-11-11Fix T41873: Different 'seed' values do not yield different noise patterns ↵Dalai Felinto
when using cycles texture bake As per instructions by Brecht Van Lommel.
2014-11-11Add msbuild for windows cmake buildbotsMartijn Berger
2014-11-11Fix T42557: Crash on delete or separate vertices with subsurf modifier + ↵Bastien Montagne
vertex parenting Only fixes the crash actually, real issue is, vparent does not handle deletion of vertices at all currently... We'd need either some kind of static uuid for vertices, or some mapping helpers used each time we remove or reorder verts... ugh. Org patch by Severin (Julian Eisel).
2014-11-11UI Refactor T41640Campbell Barton
Make the UI API more consistent and reduce confusion with some naming. mainly: - API function calls - enum values some internal static functions have been left for now
2014-11-10Fix T39144: text-select scrolling too fastCampbell Barton
Use a timer to get predictable speed.
2014-11-10Fix T42498: Disable Renaming for Read-Only Files in File Browserjulianeisel
2014-11-10Sequencer: undefine SEQ_BEGIN/SEQ_END (see comment)Campbell Barton
2014-11-10Sphinx doc script: server path has changedCampbell Barton
2014-11-10Fix T42499: Make sure directories are not interpreted as librariesjulianeisel
2014-11-10Cycles: Speedup for homogenous volumes in decoupled volume samplingSergey Sharybin
The idea is to avoid memory allocation when only one segment step is to be allocated. This gives some speedup which is difficult to measure on this trashcan from hell, but it's about from 7% to 10% in the extreme case with single volume filling the whole of the viewport. This seems to depends on the phase of the bug-o-meter in the studio. On the linux boxes it's not that spectacular speedup, it's about 2% on my laptop and about 3% on the studio desktop. This is likely because of the awesomeness of jemalloc.
2014-11-10Fix T4256: Connect tool hangsCampbell Barton
2014-11-10Fix/workaround T37073: Crash updating custom props visible in the UICampbell Barton
2014-11-10Fix T42199: PET displays when transforming around centersCampbell Barton
Old code only worked for faces.
2014-11-10Fix T42221: 'Shadow Width' influences tooltip sizeCampbell Barton
Positioning of popups was using shadow width for placement, could give some quite odd results.
2014-11-10Correct last commitCampbell Barton
2014-11-10Fix: Shapekey Basis not updated on editmode exitCampbell Barton
2014-11-10Fix T42486: Array modifier cap-end crashCampbell Barton
Thanks to @PatB for the fix.
2014-11-09Cleanup: remove unused UI_SHIFT_FLIPPED (2.4x toolbox)Campbell Barton
2014-11-09GLSL: specular transparency support for Blender internal materialsDontsov Valentin
Reviewed By: brecht Differential Revision: https://developer.blender.org/D781
2014-11-09Fix T42540: save_pre and save_post handlers not called when saving ↵Brecht Van Lommel
startup.blend.
2014-11-09Fix T42548: crash showing subsurf modifier UI on hidden object.Brecht Van Lommel
2014-11-09Code cleanup: Remove unused functions from implicit.cSergey Sharybin
Most of the unused functions were removed. Some of them were if-defed because they are referenced from the code which was already if-defed. Reviewers: lukastoenne, campbellbarton Differential Revision: https://developer.blender.org/D868
2014-11-08Cmake cleanupMartijn Berger
Move compiler warnings for msvc to common compilerwarnings.
2014-11-08Put latest buildbot config files to gitSergey Sharybin
2014-11-08Cycles: Remove dead branch for Distant lamps, ls->t is always FLT_MAX here.Thomas Dinges
2014-11-08Readme for Blender 2.73.Thomas Dinges