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-09-14node transform was using PET mode (drawing a circle - but it did nothing), ↵Campbell Barton
disable PET for nodes.
2012-09-13Sequencer: add missed cache invalidationSergey Sharybin
Invalidation was missed for: - Strip (Un)Muting - Changing speed effect - Strip translating
2012-09-13Sequencer: fix invalid update when translating strip which is behind ↵Sergey Sharybin
semi-transparent strip
2012-09-13fix [#31946] Masking doesn't respect pixel ratioCampbell Barton
2012-09-12fix [#32444] Proportional Edit stays on on Pose Mode, after activating it in ↵Campbell Barton
Object Mode. disable PET in posemode.
2012-09-11add some missing NULL checks, a few parts of the code used a pointer then ↵Campbell Barton
checked it for NULL after. also made it more clear that some areas assume the pointer isnt null (remove redundant NULL checks).
2012-09-10code cleanup: use BMEdit_FromObject() rather then me->edit_btmesh in more ↵Campbell Barton
places.
2012-09-08style cleanupCampbell Barton
2012-09-07code cleanupCampbell Barton
2012-09-03style cleanup: also add debugging print function for derived mesh ↵Campbell Barton
DM_debug_print_cdlayers()
2012-08-31Fix #32450: edge slide with multiple loops selected could move some loopsBrecht Van Lommel
in the wrong direction.
2012-08-30Fix #32405: snapping in UV editor does not work if snapping in 3D view is setBrecht Van Lommel
to "snap to face" with "project individual ..." enabled.
2012-08-30Silencing compiler warning (use of undefined value)Joshua Leung
2012-08-30Style cleanup - adding some braces around some multi-line statements (used afterJoshua Leung
if/else if/for)
2012-08-26code cleanup: remove dead assignments, gave mask vars clearer names & moved ↵Campbell Barton
some mask evaluation funcs into mask_evaluate.c
2012-08-24Sequencer: reshuffle overlapping strips on cancel trasnformSergey Sharybin
It was possible to create overlapped strips by duplicating and cancelling transform, now it sohuld be handled properly.
2012-08-24correct assert for customdata overlap, also quiet `uninitialized` warning in ↵Campbell Barton
transform.
2012-08-22style cleanupCampbell Barton
2012-08-22code cleanup: use rect size macrosCampbell Barton
2012-08-21Sequencer: invalidate current frame cache on sequence transformSergey Sharybin
2012-08-21code cleanup: use BLI_RCT_SIZE macroCampbell Barton
2012-08-20macros for rectangle center and sizeCampbell Barton
2012-08-19- fix for error in ndof patch.Campbell Barton
- ColorBalanceModifierData wasn't aligned on 32bit systems. - BM_vert_find_first_loop() was missing NULL check.
2012-08-19re-enable metaball orientation for manipulator and view axis setting (was ↵Campbell Barton
disabled since 2.4x)
2012-08-09utility functions for getting/setting rectangles for operators.Campbell Barton
2012-08-08code cleanup: rename G.rt to G.debug_valueCampbell Barton
2012-08-08Code cleanup: BKE_ prefix for public sequencer functionsSergey Sharybin
2012-08-07speedup to inpaint node in my tests was about ~30% for an optimized build.Campbell Barton
also replace MIN/MAX2 with inline functions in transform.
2012-08-06Patch [#32246] (Bugfix): UV editor -> "Proportional edit" together with ↵Daniel Genrich
"constrain to bounds" does not work. Patch reviewed by Campbell Barton. Thanks!
2012-08-06node transform for frames was broken since the frames locx, locy are used as ↵Campbell Barton
offsets, now node transform uses node ccenters (works nicer for regular nodes too).
2012-08-06fix for transforming parented nodes, the node would check its parent was not ↵Campbell Barton
transformed, but in fact its parents parent could still be getting transformed still, also, the order of initializing transform data made this check unreliable. fix for mingw broke from one of my own commits, changing header order fixes.
2012-08-06fix for crash when moving frames about in the node space, was possible to ↵Campbell Barton
move a node into its own child frame (causing recursive parent loop). also some minor code cleanup.
2012-08-06fix for transforming parented nodes (parent relative offset wasn't taken ↵Campbell Barton
into account)
2012-08-04allow editing masks in an image space when there is no image.Campbell Barton
also simplify image listener.
2012-08-04fullscreen mask editing now works in the image space over a viewer node.Campbell Barton
2012-08-04mask transforming when a mesh object was in editmode (but had no UV's), failedCampbell Barton
2012-08-01make node select_all consistent with other select operators, also add ↵Campbell Barton
Ctrl+I, select inverse to node space.
2012-07-29code cleanup: replace MIN2/MAX2 with minf/maxfCampbell Barton
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
2012-07-26add ED_space_image_get_size_fl, ED_space_clip_get_size_flCampbell Barton
2012-07-26mask/image: rotate about 2d cursor now works.Campbell Barton
2012-07-26Fix #32123: Blender crashes when zoomed in and rotating around 3d cursorSergey Sharybin
Fix deadlock in drawArc caused by precision error. Helper widget could look wrong, that's because of not enough precision of floats used by Blender. This is known issue of Blender and wouldn't consider a bug.
2012-07-25mask transform now works in the image spaceCampbell Barton
2012-07-25match function names for clip/image spacesCampbell Barton
2012-07-25fix some crashes with mask/image transfor, a few more areas working now.Campbell Barton
2012-07-21use fabsf when using floats.Campbell Barton
2012-07-20minor edits for bmesh apiCampbell Barton