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-01-15Eek, terrible typo in previous commitSergey Sharybin
Pointed by Bastien!
2014-01-15Only check OB_RECALC_ALL flags of the object in transform codeSergey Sharybin
Because of the issue of how simplification works, there could be more flags in on->recalc bitfield which are ignored by object anyway. Would save some update calls after simplificating the scene.
2014-01-15Followup to the previous commitSergey Sharybin
It was actually rather simple to make sure depsgraph is up to date before calling BKE_object_handle_update() in the transform code by just moving DAG_scene_relations_update() to the beginning of the function. Wouldn't expect any side effects for other cases since DAG is not used bu the code between new location of the call and old one.
2014-01-15Fix T38224: Blender crashes on duplicating curveSergey Sharybin
Issue is caused by the evaluation flags getter called with NULL depsgraph. It happens on direct object update from the transform code after duplicating the curve. Proper solution is probably to make sure depsgraph is rebuild after duplication, but for now it's better to prevent crashes.
2014-01-15Fix compilation error with stricg GCC flagsSergey Sharybin
2014-01-15Fix T38216: Cycles render crash Blender in some scene in versionsSergey Sharybin
Issue was caused by evaluation flags getter function polluting the DAG. Need to use dag_find_node() instead. Still need to doublecheck exporting objects with curve deform works properly. On the first thought it should, but might be wrong again.
2014-01-15Fix a bunch of UI string issues...Bastien Montagne
2014-01-15Fix text overlap when using edge angle & lengthCampbell Barton
From D193 by Ron Davis with some edits.
2014-01-15Fix T38166: Vertex slide C key doesn't workCampbell Barton
2014-01-15Fix T38227: Cloth cache storing only every 10 frames.Sergej Reich
Make sure pointcache step is set to 1 for cloth when copying objects.
2014-01-15Fix for mistake in recent shadow addition in tabsCampbell Barton
2014-01-15Fix T38207: Tab scale jitters when resizing regionCampbell Barton
2014-01-15Code Cleanup: use iroundfCampbell Barton
also increase precision of rctf print functions
2014-01-15Code Cleanup: float/double promotionsCampbell Barton
2014-01-15Math Lib: add iroundf function for: (int)floorf(a + 0.5f)Campbell Barton
2014-01-15Code cleanup - Commented out some code which wasn't actually doing anythingJoshua Leung
gpf->framenum is an int, not a float. Hence, this type of rounding has no effect.
2014-01-15Whitespace/Style fixJoshua Leung
2014-01-15Fix uninitialised var warningJoshua Leung
2014-01-15Fix build issues with mingw'sAntony Riakiotakis
2014-01-15Rigidbody: Remove keyboard shortcuts to add/remove bodiesSergej Reich
We had several reports where users would create rigid bodies by accident and then wonder why transformations behave differently. Since these actions aren't used that often, just remove the shortcuts.
2014-01-15Code Cleanup: avoid duplicate calls to WM_window_pixels_x/yCampbell Barton
2014-01-15Fix for minor precision glitch while zooming on clamped view2dCampbell Barton
2014-01-15Cycles: Disable SSE41 kernel on 32bit, we don't use intrinsics here anyway. ↵Thomas Dinges
Also disable it for Visual Studio < 2012, broken blendv instruction.
2014-01-15fixed wrong commentgaiaclary
2014-01-15Added missing includegaiaclary
2014-01-15OS X linker does not like empty compilation unit by itself in a library. ↵Martijn Berger
Scons creates one library (.a) per kernel. This fixes that
2014-01-15Fix for icon generation with MSVCCampbell Barton
Big thanks to Gaia for getting this working!
2014-01-15Cycles: Build SSE41 kernel per default, remove build option. This hopefully ↵Thomas Dinges
also fixes some compile errors on various systems.
2014-01-15Fix for rBec81feab6649: better to search for versionned libs first, else it ↵Bastien Montagne
can use your system ones instead of those built by install_deps!
2014-01-15Cleanup: some boolean int to real bool.Bastien Montagne
2014-01-15DingTo forgot to make sure kernel_sse41 is compiled in even when emptyMartijn Berger
2014-01-14CMake: Fix libname handling of OpenEXR 2.1. The library built with Autotools ↵IRIE Shinsuke
was not found. Weird library names having version suffix (e.g. libIex-2_1.so) are used only when the OpenEXR was built with CMake. Building the library with the Autotools doesn't add the version suffix.
2014-01-14Cycles: Skip the compilation of the dedicated SSE2 kernel on x86-64, we can ↵Thomas Dinges
assume SSE2 here, so just re-use the regular one. Saves 500kb in the blender binary. Reviewed by: brecht Differential Revision: https://developer.blender.org/D199
2014-01-14Further fix for T37817: non-ascii paths fix in Cycles broke OSL rendering.Brecht Van Lommel
Not quite sure yet what is going on here, but this works for me.
2014-01-14Fix GLSL compatible_pow to give 1.0 for 0 ^ 0Sv. Lockal
2014-01-14Cycles, Code cleanup: simplify code for color linear interpolation and float ↵Sv. Lockal
math Reviewed By: brecht Differential Revision: https://developer.blender.org/D215
2014-01-14Fix for icon pin drawing too large when (U.pixelsize != 1)Campbell Barton
2014-01-14Correction to assert in previous commitSergey Sharybin
2014-01-14Fix to recent commit, == instead of = in do_versionHoward Trickey
2014-01-14fix #T37894: IK constraint desactivation does not work as expectedDalai Felinto
patch suggested by Séverin Lemaignan (skadge)
2014-01-14Bevel fix to clamping for percent type.Howard Trickey
The clamp code is still very crude and over-conservative, but was totally wrong for the percent amount type.
2014-01-14Bevel Modifier: add width type and profile control.Howard Trickey
This adds to the modifier the new controls that have been added to the bevel tool.
2014-01-14fix #T37892 BL_ArmatureConstraint.active returns wrong valueDalai Felinto
patch (with changes from me) by Séverin Lemaignan (skadge)
2014-01-14Fix T38209: Curve's didn't account for negative scaleCampbell Barton
Would use the face winding from the previously drawn mesh
2014-01-14Fix for own regression, editmode object selection (Ctrl+RMB)Campbell Barton
Wasn't working because of editmode override (which uses regular object selection in editmode)
2014-01-14Fix T38196: Crash with smoke simulationSergey Sharybin
Issue was caused by KD tree being allocated with the wrong size.
2014-01-14Add check for KD tree size to BLI_kdtree_insert()Sergey Sharybin
Makes sure we're not trying to insert more nodes than we've been expecting to.
2014-01-14Fix T38205, typo in Add Torus operator.Thomas Dinges
2014-01-14Correct bad mistake in own recent to commit to angle calculationCampbell Barton
2014-01-14Code Cleanup: minor edits to recent commitCampbell Barton