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-04-01Code cleanup: use macro to find vertex in faceCampbell Barton
2014-04-01Fix for leak in freestyle transformVerticesCampbell Barton
2014-04-01Fix for leak in freestyle FitCurveCampbell Barton
2014-04-01Fix for leak in BKE_sequence_sound_initCampbell Barton
2014-04-01Changes to openmp threads commit (UI and RNA)Campbell Barton
- use same names as render threads - remove OpenMP from UI - remove details from tips
2014-03-31Usual UI messages fixes...Bastien Montagne
2014-03-31Fix T39524: Backface culling is always on in Textured view in BI.Bastien Montagne
Special case I did not think about in own previous culling fix (rB0f95149a7849).
2014-03-31Sculpt/dytopo: remove debug prints and add explanationsJens Verwiebe
2014-03-31Make dyntopo detail size maximum smaller (more than 40 pixels should notAntony Riakiotakis
be needed according to mapping in code) and change the property to float.
2014-03-31Fix deffects reported by CoverityScan (nothing dramatic, but at least one ↵Bastien Montagne
was a (minor) bug).
2014-03-31Fix T39291: "Stepped" F-curve modifier does not work as expected when ↵Joshua Leung
stacked after other modifiers Evaluation of time-warping modifiers ("Stepped" is one of them) didn't actually end up distorting the time to look up what values other modifiers in the stack generate. This meant that when a "stepped" fmodifier was on top of a "generator", the stepped fmodifier looked like it didn't have any effect. (This fix requires a bit of testing still, so should be left for 2.71)
2014-03-31Fix compile due forgot remove BKE_scene_omp_threads_update from patchJens Verwiebe
2014-03-31Code cleanup: use boolCampbell Barton
2014-03-31Code cleanup: pack BezTriple a little (though size remains same)Campbell Barton
2014-03-31Vector handles were hidden but were allowed to slide apparentlySergey Sharybin
2014-03-31Didn't meant to commit debug-only-code in the previous commit!Sergey Sharybin
2014-03-31Code cleanup: use bool/true/false in movieclip.cSergey Sharybin
2014-03-31Sculpt/dyntopo: Make the omp threads configurable to overcome performance issuesJens Verwiebe
- autodetect optimal default, which typically avoids HT threads - can store setting in .blend per scene - this does not touch general omp max threads, due i found other areas where the calculations are fitting for huge corecount - Intel notes, some of the older generation processors with HyperThreading would not provide significant performance boost for FPU intensive applications. On those systems you might want to set OMP_NUM_THREADS = total number of cores (not total number of hardware theads).
2014-03-31Code cleanup: fixes for function prototypesSergey Sharybin
2014-03-31Fix T39405: Make "amplitude" for elastic easing more intuitive to useJoshua Leung
Previously, amplitude was more of an "absolute" value in the sense that whatever value you set it to became a sort of "maximum bounce" height. However, it turns out that this approach isn't so nice when dealing with large gaps between the values of two keyframes, as the elastic easing equations expect that "amplitude > |change|" (where change is the difference in values from key1 to key2). Now, the "amplitude" value we pass to the easing functions are "|change| + amplitude". This is easier to control, as now, as soon as you start changing that value, there are immediately visible effects.
2014-03-31Code cleanup: use bool insted of int/short in MCESergey Sharybin
2014-03-31Code cleanup: use bool instead of short in motrackSergey Sharybin
2014-03-31Code cleanup: use false/true/bool for maskingSergey Sharybin
2014-03-31Masking: fix for initialdeather point not being offset to the mouse positionSergey Sharybin
2014-03-31Maksing: fix issue when it's not possible to drag right handle of aligned ↵Sergey Sharybin
handles
2014-03-31Fix bug in image texture UI: "Use Alpha" checkbox doesn't appear if file ↵IRIE Shinsuke
format is BMP.
2014-03-31Add Simple randomize vertex toolCampbell Barton
D432 from Walid Shouman with normal & uniform options added.
2014-03-31Add normal option to ED_transvertsCampbell Barton
2014-03-31Tweak slerp assert to be less pickyCampbell Barton
2014-03-31Py API: Vector.slerp(). also added interp_v3_v3v3_slerp(_safe) functionsCampbell Barton
2014-03-31Fix for error in normalize_vn_vn(), add len_squared_vnCampbell Barton
2014-03-31Code cleanup: remove unused members of TransVertCampbell Barton
2014-03-31Refactor: Add generic poll ED_transverts_pollCampbell Barton
2014-03-31Fix T39490: BGE: Text to Mesh, then MouseOver does not workMitchell Stokes
Non-mesh objects default to no collisions. lordloki provided a patch that sets the collision properties for a mesh converted from a curve/meta/surf/text to the default collision properties for a mesh.
2014-03-30Style cleanupCampbell Barton
2014-03-30Fix for missing break statementsCampbell Barton
2014-03-30OSX: Remove the apple/omp workaround for now, to better judge compiler ↵Jens Verwiebe
differences
2014-03-30And another compile fix for M_PI and msvc2008...Thomas Dinges
2014-03-30Correct own recent changes broke release buildsCampbell Barton
2014-03-30Code cleanup: warnings (clang)Campbell Barton
2014-03-30Fix for uninitialized var useCampbell Barton
2014-03-30Enable GCC pedantic warnings with strict flags,Campbell Barton
also modify MIN/MAX macros to prevent shadowing.
2014-03-30Code cleanup: BKE_nurbList_handles_set used some strange logicCampbell Barton
2014-03-30correct recent commitCampbell Barton
2014-03-30Code cleanup: use strict flags for BLI_randCampbell Barton
2014-03-30BLI_rand: Add BLI_rng_get_float_unit_v3, was static rayshade funcCampbell Barton
2014-03-30Convenience macro for print_ funcs, saves passing id each timeCampbell Barton
2014-03-30Code cleanup: reflect_v3_v3v3 made redundant copiesCampbell Barton
2014-03-30Correction for poly_to_tri_count (used over-complicated method)Campbell Barton
2014-03-30Code cleanup: de-duplicate cotangent weight function & add arg sizesCampbell Barton