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-12-03quiet float -> double conversion warnings and do some osl style edits.Campbell Barton
2012-12-03Fix for [#33378] Grease pencil dopesheet fails on a few operationsBastien Montagne
Snapping operator in action editor for grease pencil and mask wasn't implemented. We could probably re-enabled/fix/cleanup more things in this area (e.g. use a custom poll func for operators not supporting gp/mask, instead of silently doing nothing), but this is for after 2.65 imho).
2012-12-03Tsss tsss... Copy-pasting! :PBastien Montagne
2012-11-01style cleanupCampbell Barton
2012-10-23use min_ max_ functions in more places.Campbell Barton
also fix minor error in MOD decimate when the modifier did nothing the reported face count would be wrong.
2012-10-23rename api functions...Campbell Barton
- minf, maxf, mini, maxi --> min_ff, max_ff, min_ii, max_ii
2012-10-18Fix #32851: Mouse click coordinates when adding and selecting mask vertices ↵Sergey Sharybin
on undistorted footage are off
2012-10-18Mask editor: create new mask when trying to create new vertex without active ↵Sergey Sharybin
mask set
2012-10-14code cleanup: remove redundant casts. quiet some qualifier warnings.Campbell Barton
2012-10-12quiet some -Wshadow warningsCampbell Barton
2012-10-05code cleanup: use functions to initialize selection user data structs, use ↵Campbell Barton
radius-squared for circle select comparisons. edge_fully_inside_rect() & edge_inside_rect() args were shorts when all callers were passing ints.
2012-10-02correct some include dirs not being included as SYSTEM paths in cmake.Campbell Barton
2012-10-02fix for error in mask drawing, was using glVertex3fv on 2d verts. (buffer ↵Campbell Barton
overrun)
2012-09-28code cleanup: correct spellingCampbell Barton
2012-09-27Fix #32658: left mouse button selection did not work well in the graph and maskBrecht Van Lommel
editors. Ctrl+Click to add a point and vertex slide now work with right mouse button in this case, consistent with the 3D view.
2012-09-18code cleanup: warningsCampbell Barton
2012-09-15code cleanup: replace macro for BLI_rect size/center with inline functions.Campbell Barton
2012-09-15quiet -Wmissing-prototypes warnings, and enable this warning by default for ↵Campbell Barton
C with gcc. helps for finding unused functions and making functions static, also did some minor code cleanup.
2012-09-13fix [#31946] Masking doesn't respect pixel ratioCampbell Barton
2012-09-13fix for drawing non 1:1 aspect masks, transform and selection still need ↵Campbell Barton
support.
2012-09-13code cleanup: reduce calls to CTX_ functions inline, add some docs to mask ↵Campbell Barton
rasterizer.
2012-08-27ensure there are always the same number of feather points and non feather ↵Campbell Barton
points when drawing.
2012-08-25better handle sizes by default for mask mode, now ignore image width/heightCampbell Barton
2012-08-24use the zoom level to set the size for new mask point handle sizes (artist ↵Campbell Barton
request - handles were annoyingly bug when zoomed in)
2012-08-23code cleanup: rename BLI_in_rctf() --> BLI_rctf_isect_pt(), to conform with ↵Campbell Barton
our naming convention.
2012-08-21mask: skip self intersection on drawing when fill is disabled, since it was ↵Campbell Barton
only drawing on one side of an unfilled spline.
2012-08-21code cleanup: use BLI_RCT_SIZE macroCampbell Barton
2012-08-09utility functions for getting/setting rectangles for operators.Campbell Barton
2012-08-07use -FLT_MAX where FLT_MIN was misusedCampbell Barton
2012-08-07mask - draw both sides of the curve when `filled` option is disabled.Campbell Barton
2012-08-05fix for crash when mask editing if there is an active point but no active ↵Campbell Barton
spline.
2012-08-05resolve some issues with curve resolution calculactionCampbell Barton
- resolution could become so high that it would wrap around to a negative number, now check for small numbers before doing float division. - resolution was being calculated in some cases when it already met the clamp value - now this is skipped.
2012-08-01mask selection invert wasnt working.Campbell Barton
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-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-27code cleanup: pass mouse position as int[2] rather then wmEventCampbell Barton
2012-07-27code cleanup: mask keys now dont use space-clip keys - could give troubles ↵Campbell Barton
later on.
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-26add ED_space_image_get_size_fl, ED_space_clip_get_size_flCampbell Barton
2012-07-26mask/image editor now works for border select and lassoCampbell Barton
2012-07-26mask/image viewer now works with non 1:1 image aspect, editing masks in the ↵Campbell Barton
image viewer should be generally usable now though still some TODO's left.
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-25add mask keymap to image window.Campbell Barton
debug prints for events when --debug-events is used to help track down why a key is/isnt used.
2012-07-25wip mask/image commit, mostly internal function & added some TODO'sCampbell Barton