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
2015-03-20WIP CommitAntony Riakiotakis
2015-03-13Cleanup fcurve tags properly.Antony Riakiotakis
2015-03-13Stub API to add an object to motionpath processing job.Antony Riakiotakis
2015-03-13Object now also support proper undoAntony Riakiotakis
2015-03-13Armatures support proper undo now.Antony Riakiotakis
2015-03-13Keep keyframes on undoAntony Riakiotakis
WIP code to tag fcurves with existing keyframes on current frame so they can be restored (inserted into) after cancelling tranform.
2015-03-12Only insert/delete keyframes automatically if the real time motionpathAntony Riakiotakis
update is on.
2015-03-09Minor stuffAntony Riakiotakis
2015-03-09Remove inserted keyframes if transform was cancelledAntony Riakiotakis
2015-03-09Merge branch 'gooseberry' into temp_motionpathsAntony Riakiotakis
2015-03-09Don't push merge without building first fix.Antony Riakiotakis
2015-03-09Merge branch 'wiggly-widgets' into gooseberryAntony Riakiotakis
Conflicts: source/blender/blenloader/intern/versioning_270.c source/blender/editors/include/ED_view3d.h source/blender/editors/space_sequencer/sequencer_draw.c
2015-03-09Transform widget: Don't highlight rectangle (cursor should be enoughAntony Riakiotakis
indication)
2015-03-09Merge branch 'master' into wiggly-widgetsAntony Riakiotakis
Conflicts: source/blender/blenloader/intern/versioning_270.c source/blender/editors/include/ED_view3d.h source/blender/editors/space_sequencer/sequencer_draw.c source/blender/editors/space_view3d/view3d_draw.c source/blender/makesdna/DNA_view3d_types.h
2015-03-09Image Space: enable zoom/cursor warpingCampbell Barton
2015-03-09Fix T43891: Skin modifier inverts some facesCampbell Barton
2015-03-09Math Lib: add mid_v3_v3v3v3v3Campbell Barton
2015-03-09Fix T43908: Mask render bug, one pixel black lineSergey Sharybin
This was a regression caused by attempts to fix T42844 and there were some red-herrings which lead me to the wrong way to fix it. It's some deeper issue than just interpolation offset, it's mainly how the node resolution is being mapped to each other. It could be actually a part of canvas awareness project..
2015-03-09Fix T43421: bisect_edges returns insufficient dataCampbell Barton
2015-03-09Fix T43858: Collision Bounds Display BugCampbell Barton
Was using draw-type when drawing BGE collision bounds.
2015-03-09Fix for clamping large UV coords in UV-panelCampbell Barton
Would clamp value ranges in UI when outside hard coded range.
2015-03-09Freestyle: Fix for a few line style properties left not copied.Tamito Kajiyama
2015-03-09Fix T43624: Freestyle uses wrong colour on second Line Set with textured ↵Tamito Kajiyama
lines in Cycles. This is a regression introduced by rBd8b00a3bf5c1 (Freestyle: memory consumption optimization in stroke rendering). The issue was caused by uninitialized MPoly::mat_nr values. Before the stroke rendering optimization, individual Freestyle strokes were represented by distinct mesh objects, and thus MPoly::mat_nr was left unset (i.e., was always zero). Now that the stroke rendering optimization has been done and mesh objects may represent multiple strokes of different materials, MPoly::mat_nr had to be properly set to the material index that refers to the material of the poly face.
2015-03-09Fix T43337: Group object disappear after appendCampbell Barton
Relying on user-count of 1 wasn't reliable because of custom-bones.
2015-03-09IME: Disable IME for number buttonsSeverin
2015-03-09Fix T43920: Crash when clicking into different area during IME compositionSeverin
Fix by @randon
2015-03-09Fix T43332: Adding polygon int layer failedCampbell Barton
2015-03-08BMesh Py API: calc_edge_angle functionsCampbell Barton
Make consistent with calc_edge_angle, take an optional fallback arg for non-manifold edges otherwise raise an exception.
2015-03-07Fix T43910: Unpack fails when stored filename is broken (empty, or no file ↵Bastien Montagne
part...). Now we have an helper that will generate local/global paths and ensure they are valid. Note: We currently have no way to 'generate' a valid extension in these cases, so just using raw (file-safe) ID name.
2015-03-06Fix edit-lattice leaving incorrect point-sizeCampbell Barton
2015-03-06Modifier Drag&DropJulian Eisel
**Warning: WIP!** Basic functionality works fine and there shouldn't be any crashes, however, if you occur issues, feel free to report them to me (not in the bug tracker!) Some more effort is needed to get this ready for master, but I thought it would be nice as a little present for the Gooseberry-team (I heard some of you were requesting this?) and the ones using the Gooseberry-builds :) Oh, and better not look at that code, it's ugly and a lot of changes are planned, I just wanted to get something working before getting into details.
2015-03-06Fix issue reported on irc by Sebastian, crash when undoing and changingAntony Riakiotakis
screen. Apparently the screen on the given file did not have a scene attached. Not sure how this is possible exactly, but for now just guard against it at load time by assigning default scene in that case.
2015-03-06Fix broken "force setting multisamples only once", introduced in b5b359b48f7fJens Verwiebe
2015-03-06Fix metaball->mesh removing all metas in the sceneCampbell Barton
Assumed the entire scene used the one motherball.
2015-03-06Fix access freed memory when doing constraints ID counter on main freeSergey Sharybin
Basically just made constraints free function aware of possible do_id_users argument, same as we've got for objects, object data and so on.
2015-03-06PyAPI: clarify fallback docstringCampbell Barton
2015-03-06Fix T43904: calc_vert_angle returns wrong valueCampbell Barton
This was mis-named, rename to `calc_edge_angle` and allow a fallback value in the case when the vert doesn't have 2-edges.
2015-03-06BMesh: Add extended BM_vert_calc_edge_angle that takes a fallback valueCampbell Barton
2015-03-06Cleanup: unused warningsCampbell Barton
2015-03-06Cleanup: unused macro warningCampbell Barton
2015-03-06Fix typo in "Add" and "Subtract" mode of Vector Math node.Kevin Dietrich
Differential Revision: https://developer.blender.org/D1003
2015-03-06Revert "COLLADA - support for shadeless material (SHADER_CONSTANT)"Gaia Clary
This reverts commit 04b0a9f4b885e8e3b0b3207f3b3cda74b936df3e.
2015-03-06Attempted fix for OpenAL synchronization.Antony Riakiotakis
This hit animators already, basically when using sound sync we can hit negative frames. This happens because we always subtracted the full range of the triple buffer size from the timing, even when buffers were flushed. Also, old code read the offset from the offset of the reader. The problem here, is that due to threading there is a time offset between the when this offset is set and when it is offloaded to the buffers, which means that we could get quite some variance between time reporting. Now sounds keep a private byte offset which is incremented right before invalidating old buffers. This should make the combination of OpenAL time report + byte offset more accurate. For even more accuracy we might spinlock while updating those values but for now left it as is for fear of the lock interfering with frame update performance. We can try to be smarter here, storing old value while update is happening, and use trylock and the old values if it fails but for now commit the simple version.
2015-03-06Fix issue reported on irc by Sebastian, crash when undoing and changingAntony Riakiotakis
screen. Apparently the screen on the given file did not have a scene attached. Not sure how this is possible exactly, but for now just guard against it at load time by assigning default scene in that case.
2015-03-06Fix broken "force setting multisamples only once", introduced in b5b359b48f7fJens Verwiebe
2015-03-06Fix metaball->mesh removing all metas in the sceneCampbell Barton
Assumed the entire scene used the one motherball.
2015-03-06Merge branch 'master' into temp_motionpathsAntony Riakiotakis
2015-03-06Fix access freed memory when doing constraints ID counter on main freeSergey Sharybin
Basically just made constraints free function aware of possible do_id_users argument, same as we've got for objects, object data and so on.
2015-03-06PyAPI: clarify fallback docstringCampbell Barton
2015-03-06Fix T43904: calc_vert_angle returns wrong valueCampbell Barton
This was mis-named, rename to `calc_edge_angle` and allow a fallback value in the case when the vert doesn't have 2-edges.