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
path: root/source
AgeCommit message (Collapse)Author
2014-06-22Editmesh: extruding end-point verts now maintains edge-directionCampbell Barton
Resolves T40745, where faces from extruded edges had flipped normals.
2014-06-22Code cleanup: styleCampbell Barton
2014-06-22Code cleanup: de-duplicate widget_num_tria, widget_scroll_circleCampbell Barton
2014-06-22Remove unused functionCampbell Barton
2014-06-22WM: set circle select minimum radius to 1Campbell Barton
2014-06-21Fix T40567 Crash when returing to object mode from dyntopo.Antony Riakiotakis
Returning to object mode reactivates any generative modifiers and this can lead to a polycount explosion. For now just improve the warning when entering dyntopo with generative modifiers. I would like to add the ability spawn options to apply or remove the modifiers too, however separate undo stack system comes back with a vengeance here, since it won't allow restoring the application/ also may invalidate all sculpt undo in the undo stack prior to the application (needs investigation).
2014-06-21Fix T40727: Renaming nodes did not correctly fix animation paths.Lukas Tönne
2014-06-20BLI_md5: add a utility function to 'translate' raw 16bytes digest into a ↵Bastien Montagne
nice 32chars hexadecimal string. That kind of stuff belongs to BLI, not specialized code like thumbs.c
2014-06-20Code cleanup: BLI_md5.c was... not nice.Bastien Montagne
2014-06-20GLSL tweaks for viewport render drawSergey Sharybin
- Was missing pixel scale - Dither is now supported on GPU
2014-06-20Implement resolution divider in the Blender InternalSergey Sharybin
Currently resolution divider is not exposed to the interface yet, and i'm not even sure it needs to be exposed because it's somewhat weird configuration. Need to check how often artists are changing start resolution in Cycles. Pretty much straightforward implementation with the only weak part: render result is getting re-allocated and upscaled when current resolution is finished. Not sure how to make it faster actually. Maybe it's just a matter of making upscale fast enough. Needed to fix some possible memory leak happening in Freestyle when canceling rendering on a special stage -- it was missing temp bmain free, Reviewers: campbellbarton, dingto CC: sebastian_k, fsiddi, venomgfx Differential Revision: https://developer.blender.org/D609
2014-06-20Fix release notes link in splash.Bastien Montagne
Auto-generate this link from Blender version, as done for e.g.py API link. This commit should be backported to 2.71 branch.
2014-06-20Fix 2 GLSL errors, with Cycles Hair BSDF.Thomas Dinges
2014-06-20UI: auto-open other menus by hovering over, once a menu is already openCampbell Barton
D590 by Matthew Reid
2014-06-20Fix T40697: Skinned meshes with shapekeys crashing in the BGEMitchell Stokes
2014-06-19RNA: Expose hook centreCampbell Barton
D529 by Gottfried Hofmann
2014-06-19Add a bmesh_core_test, a start at testing bmesh functionality.Howard Trickey
Needed to make the blender link libraries a global property now that tests are parallel to source directory. Current sort order for blender link libraries doesn't work for tests that start with few defined symbols. Doubling the lib list works, but a TODO to find a better way (probably using CMake's own mechanism for tracking dependencies).
2014-06-19Bugfix for Elastic and Back easing typesJoshua Leung
** TO BE PORTED BACK TO 2.71 ** As pointed out by Thomas Beck (plasmasolutions), the current behaviour and/or default values for their parameters didn't quite make sense: 1) Back Easing - The old default value of 0.0 results in some overshoot being applied, while trying to tweak it up or down resulted in some odd jumps and discontinities. I've ended up removing some code here which forcibly using a "back" value of 1.7 when users wanted 0.0 instead. There doesn't seem to be any good reason for this. To ensure that there is still an effect initially, keyframes now get created with back set to 1.7 2) Elastic Easing - The old default settings of <amplitude = 0, period = 0> resulted in a curve without any elastic bounce, which wasn't very useful for motion graphics. Now, default values of amplitude = 0.8 and period = 4.1 get set. These were hand picked by Thomas to work well when the duration of the motion is 10 frames long (i.e. the typical length of such effects when doing motion graphics).
2014-06-19Style cleanups hereJoshua Leung
2014-06-19PoseLib: New pose library actions now have their "id root" setting ↵Joshua Leung
initialised properly
2014-06-19View3D: Handle un-weighed vertex color properlyCampbell Barton
D608 by Gaia Clary
2014-06-19Code cleanup: replace odd pointer casting with structsCampbell Barton
2014-06-19Code cleanup: remove unused callback for depth drawingCampbell Barton
2014-06-19Code cleanup: de-duplicate calls wmOrtho, wmFrustumCampbell Barton
2014-06-19Code cleanup: use const passing rectsCampbell Barton
2014-06-19Enable texture preview even when Cycles is activeSergey Sharybin
2014-06-19Correct for recent commit to refactor popupsCampbell Barton
2014-06-19Curve: zero memory on access rather then callocCampbell Barton
also remove redundant check
2014-06-19Freestyle: removed WOEdge::getVec3r() which in effect was a duplicate of ↵Tamito Kajiyama
WOEdge::GetVec().
2014-06-19Fix T40546: Duplicate spline breaks shape keysCampbell Barton
2014-06-19Bake-API: small cleanup to prevent unfreed memory when there are baking errorsDalai Felinto
Fix to be included in 2.71
2014-06-19Bake-API: fix for non-NORMAL maps baking black when using cageDalai Felinto
Reported by Andy Davies (metalliandy) outside the tracker Fix to include in 2.71
2014-06-19Fix T4068787 Cycles Bake Selected To Active From Non-Mesh Object Fails With ↵Dalai Felinto
Error Users can now bake from Mesh, Font, Curve, Surface and Metaballs. Fix to include in 2.71
2014-06-19Fixup for fd0b7428 Bake-API: allow custom UV to be bakedDalai Felinto
2014-06-19Complete last commit.Bastien Montagne
Sorry, forgot to check other uses of BKE_nurb_makeCurve, NURBS surfaces were affected as well.
2014-06-19Fix T40694: Curve path messed up.Bastien Montagne
Error in rB4b4bb410e04e, BKE_nurb_makeCurve() requires its coord_array to be zero'ed, hence we need calloc here.
2014-06-18Fix T40637, jittering can cause the mesh to disappear.Antony Riakiotakis
Do not do a step when there is no collision of the brush with the mesh.
2014-06-18missed removing this in recent popup refactorCampbell Barton
2014-06-18Correct error in last commitCampbell Barton
2014-06-18Editmesh: add ability to show weights on wire T39054, D585Gaia Clary
2014-06-18Fix blenderplayer compile...Bastien Montagne
2014-06-18Fix T40585, group textures cannot be selected for painting.Antony Riakiotakis
Issue here is that if there's a texture in the tree, chances are it has already been set as active texture so groups are never traversed. Now changed logic so that if a group node is active, its own active texture takes priority over the parent group active texture.
2014-06-18GTest unit testing frameworkSergey Sharybin
Currently covers only small set of functionality.
2014-06-18Fix T40679.Antony Riakiotakis
Cleanest way here is not do bounding box collision for editmeshes at all. Decision is taken because: * Usually we want to do the snapping to the edited mesh anyway (when we don't the mesh is skipped completely, so we don't need to worry for extra checks) * Bounding box is calculated from derived mesh. This means that for subsurfed meshes for instance, the bounding box may be significantly smaller than the size of the edit mesh.
2014-06-18Revert "Fix flickering when transform snapping in edit mode and cursor is"Antony Riakiotakis
Looks like the cleanest way to handle this is to no do bounding box collision for edit mode at all. But this is easy to enforce This reverts commit 7b5fe4f316234022a0ab761b694cd459ce98db2d. Conflicts: source/blender/editors/transform/transform_snap.c
2014-06-18Move tests into tests/ top-level dirCampbell Barton
2014-06-18Code cleanup: use bool instead of intSergey Sharybin
2014-06-18Hopefully fix compilation with old MSVC2008/WIN32...Bastien Montagne
2014-06-18Code cleanup: replace direct operator calls with ED_object_toggle_modesCampbell Barton
2014-06-18Code cleanup: de-duplicate flag check in ED_object_toggle_modesCampbell Barton