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
2012-08-03code cleanup: move node background image operators into node_view.cCampbell Barton
2012-08-03rename node_state.c --> node_view.cCampbell Barton
2012-08-02Node selection: make node active before it could be unselected by extendingSergey Sharybin
selection, which matches behavior of all other areas in blender.
2012-08-02Fix #31753: GLSL not updated after deleting lights in multiple-scene settingSergey Sharybin
2012-08-02code cleanup: remove redundant float castsCampbell Barton
2012-08-02Clipboard feature for nodes. With the Copy operator a copy of all selected ↵Lukas Toenne
nodes and links between them is stored in an offscreen list (not in the library). The Paste operator then in turn copies these into the active node tree in the editor. Currently does not support copying of animation data. This would require copying of individual fcurves etc. between data block, which is not implemented yet. Also it is currently possible to circumvent some constraints of the nodes, in particular for node groups (e.g. no groups inside groups, render layer not inside groups).
2012-08-02code cleanup: headersCampbell Barton
2012-08-01Fix #31800: Blender crash by rendering in connection with linked groupsSergey Sharybin
Seems the issue was caused by render layer node overwritng active scene when render button is clicked. It lead t situations when job was adding with owner of rendering scene, but modal callback was checking for render jobs existing for current active scene. There was no such jobs so operator used to finish at this point and free report list used by render pipeline. Solved by storing operator owner in operator's custom data. Probably there's nicer way to do fix this issue but currently can't think of it.
2012-08-01split node_edit.c into separate files (add, group, relationshops), was ↵Campbell Barton
almost 5000 loc.
2012-08-01fix: column flow layout wrongly calculated height of second and subsequent ↵Andrea Weikert
columns when used with more than 2 columns. * discovered while playing with the column flow layout in asset branch.
2012-08-01fix for assert when going from edit mode directly into sculpt mode.Campbell Barton
the tessellation faces were not pre-calculated.
2012-08-01fix some more crashes when running skin operators on a mesh with no skin layerCampbell Barton
2012-08-01fix crash in sorting mesh elements when called without a viewport.Campbell Barton
2012-08-01fix for crash in 'Skin Armature Create' when the mesh doesnt have any skin data.Campbell Barton
2012-08-01fix crash when polling image sample outside image space.Campbell Barton
also remove historic comment which isnt helpful.
2012-08-01mask selection invert wasnt working.Campbell Barton
2012-08-01make node select_all consistent with other select operators, also add ↵Campbell Barton
Ctrl+I, select inverse to node space.
2012-08-01- disable mask drawing in the sequencer, this isn't usable yet and likely ↵Campbell Barton
wont be working in release. - use define for max mask mblur samples, increase to 64 max.
2012-08-01misc mask fixesCampbell Barton
- image space used wrong notifiers. - image notifier now checks for mask mode before listening to mask edits. - mask keyframes now draw in the image space.
2012-08-01Do not highlight non-selected active node with active outlineSergey Sharybin
This would match other areas in Blender.
2012-08-01style cleanup: whitespace, also add '?' to save over popup since it wasnt ↵Campbell Barton
totally clear it was a question (user pointed this out, they thought it was just notification and lost their work).
2012-08-01Fixed own error in setting user counter to mask when changing clip editor's ↵Sergey Sharybin
mask.
2012-07-31changes to mask editingCampbell Barton
- use Alt to modify all mask feather at once while dragging. - copying a multi-user mask from the interface works now. - show masks when UV editing isnt used, rather then checking editmode (would give some odd/annoying image space header). - add a fake mask user by default. - moving points with LMB drag no longer selects them.
2012-07-31Code cleanup: remove unused codeSergey Sharybin
2012-07-31Fixed wrong mask display with clip's pixel aspect and image editor display ↵Sergey Sharybin
aspect != 1.0
2012-07-31resolve glitch in the image space where mask editing and UVs would conflict.Campbell Barton
now UV editing overrides mask.
2012-07-30Mango request: option to create nodes with hidden preview by defaultSergey Sharybin
2012-07-30fix own mistake getting an image for the image open file selector.Campbell Barton
2012-07-29add inline functions for max/min ints, good to use when the arguments are ↵Campbell Barton
function calls (we had a few of these).
2012-07-29code cleanup:Campbell Barton
- building without python works again - rename maxi/mini to i_max/i_min (so thay are available for function names) - some minor edits to IK stretch setting (no functional changes).
2012-07-29code cleanup: replace MIN2/MAX2 with minf/maxfCampbell Barton
2012-07-29scale down histogram button movement by 10, was very sensitiveCampbell Barton
2012-07-29style cleanupCampbell Barton
2012-07-28Fixed some knife cut failures.Howard Trickey
Fixes #31391. Some cases still fail but these changes are good because they fix a bogus calculation of the 'basef' of some cut segments.
2012-07-27Fix #32199: Smooth Vertex no longer has X, Y and Z options.Sergey Sharybin
2012-07-27code cleanup: pass mouse position as int[2] rather then wmEventCampbell Barton
2012-07-27use B key to toggle 'boundary' option for modal inset.Campbell Barton
2012-07-27fix usercount error with dropping images in the node view.Campbell Barton
2012-07-27Fix crash in drawing socket names when zooming out a lotSergey Sharybin
-- svn merge -r49291:49292 ^/branches/soc-2011-tomato
2012-07-27Display solver keyframes in cache lineSergey Sharybin
-- svn merge -r49293:49294 ^/branches/soc-2011-tomato
2012-07-27code cleanup: mask keys now dont use space-clip keys - could give troubles ↵Campbell Barton
later on.
2012-07-27Track input node: more control on over output valueSergey Sharybin
Now supports output value of: - Absolute marker position - Marker position relative to the very first marker - Marker position relative to given scene frame
2012-07-27up/down arrows were not switching mask keyframes in the image spaceCampbell Barton
2012-07-27mask motion blur shutter optionCampbell Barton
2012-07-27motion blur for mask node:Campbell Barton
TODO - add shutter speed option - add blur option
2012-07-27Fix #32187: OpenGL preview does not take into account overwrite optionSergey Sharybin
2012-07-27code cleanup: remove unneeded 'struct' qualifiers Campbell Barton
2012-07-27change clip utility function arguments to take space data and region rather ↵Campbell Barton
then the context. this allows a fix to be applied that corrects the helper line in the image view when transforming a mask.
2012-07-27code cleanup: minor edits for mask/transformCampbell Barton
2012-07-26fix some types and incorrect infoCampbell Barton