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-14Sequencer: clear cache and animation buffers for strips outside of cursor ↵Sergey Sharybin
when rendering This avoids having bunch of cached images when doing animation rendering, keeping all the memory available for rendered itself. This keeps memory usage low when rendering huge edits with mixed scenes and movie strips. This should not affect on sped of video encoding, which was confirmed by some own tests. -- svn merge -r50051:50052 ^/branches/soc-2011-tomato
2012-09-13Sequencer: add missed cache invalidationSergey Sharybin
Invalidation was missed for: - Strip (Un)Muting - Changing speed effect - Strip translating
2012-09-13fix for drawing non 1:1 aspect masks, transform and selection still need ↵Campbell Barton
support.
2012-09-09style cleanup:Campbell Barton
also remove some redundant conversions int -> short -> int
2012-09-06make freeing sequencer strip without cache an option only exposed within ↵Campbell Barton
sequencer.c
2012-09-06fix for crash in sequencer introduced with recent cache addition,Campbell Barton
- running undo with metastrips would crash immediately. - freeing a strip without a scene would crash (clipboard does this).
2012-09-06code cleanup: remove deprecated defines and some struct membersCampbell Barton
2012-09-05Sequencer: show color sample line in image display mode onlySergey Sharybin
2012-08-27Fix #31853: Marker deletion invokes strip deletionSergey Sharybin
2012-08-27Style cleanup: spaces in sequencer scopesSergey Sharybin
2012-08-27Sequencer: fix crash of histogram view for float imagesSergey Sharybin
Overexposured pixels lead to wrong memory access in histogram making function
2012-08-26style cleanup: whitespaceCampbell Barton
2012-08-23Sequencer: display color sample information when mouse is holded downSergey Sharybin
Behaves in exactly the same way as image editor's color sampling. Would be nice to display color managed color too, but that's for tomato branch.
2012-08-23code cleanup: use const weights for customdata interpolation functionsCampbell Barton
2012-08-23Sequencer: move up/down operators for modifiersSergey Sharybin
2012-08-23alt page up/down now jump between strip center frames (since often the ↵Campbell Barton
middle frame is a better sample to check).
2012-08-23de-duplicate sequencer jump operator, use next/prev option instead.Campbell Barton
2012-08-22code cleanup: use rect size macrosCampbell Barton
2012-08-21code cleanup: use BLI_RCT_SIZE macroCampbell Barton
2012-08-20macros for rectangle center and sizeCampbell Barton
2012-08-20Sequencer: Python API for sequence modifiersSergey Sharybin
2012-08-19Sequencer: per-sequence modifier stack for color gradingSergey Sharybin
This implements basic color grading modifiers in sequencer, supporting color balance, RGB curves and HUE corrections. Implementation is close to object modifiers, some details are there: http://wiki.blender.org/index.php/User:Nazg-gul/SequencerModifiers Modifiers supports multi-threaded calculation, masks and instant parameter changes. Also added cache for pre-processed image buffers for current frame, so changing sequence properties does not require rendering of original sequence (like rendering scene, loading file from disk and so)
2012-08-15fix for missing change to fluidsim from last commit and name jobs a more ↵Campbell Barton
useful name - 'wm_job'.
2012-08-15add wm job types they are not used yet, so this just defines them for new ↵Campbell Barton
jobs add add argument to search by job type.
2012-08-13draw ugly red bands on a sequence strip when its data cant be found (mask, ↵Campbell Barton
clip, scene, sound)
2012-08-12Sequencer: overlay display type optionsSergey Sharybin
Before this overlay would happen only for defined rectangle area, now it's possible to show current / reference frames only, which makes it possible to do more real slit view involving even displaying frames on different monitors. Still some work need to be done to clean interface up and support displaying color information for reference shot.
2012-08-12smooth-view for 2d views, graph editor, sequencer, node view, works with ↵Campbell Barton
border zoom, view selected, view all.
2012-08-12code cleanup: WM naming conventionsCampbell Barton
2012-08-09utility functions for getting/setting rectangles for operators.Campbell Barton
2012-08-08code cleanup: rename G.afbreek --> is_break, G.rendering --> is_renderingCampbell Barton
2012-08-08Code cleanup: BKE_ prefix for public sequencer functionsSergey Sharybin
2012-08-04style cleanupCampbell Barton
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-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: replace MIN2/MAX2 with minf/maxfCampbell Barton
2012-07-27code cleanup: pass mouse position as int[2] rather then wmEventCampbell 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-24initial commit for supporting masks in the image view, currently active seq ↵Campbell Barton
strip is used as the mask source. also unify mask drawing code for clip/sequencer/image
2012-07-24generalize mask poll functions and sequencer mask code.Campbell Barton
2012-07-15minor refactor for rect functions. more consistent naming.Campbell Barton
2012-07-04Last spell checking (for now).Bastien Montagne
Only mysterious courant from bpy.types.ParticleSettings.courant_target reamins...
2012-07-03More spell and typo fixes (mostly visualise->visualize, grey->gray, ↵Bastien Montagne
normalise->normalize).
2012-07-03Fix #32002: "Anim Player" button on header doesn't appearSergey Sharybin
2012-07-02Fix #31970: Crash, whith Sequencer Swap Data-FunctionSergey Sharybin
2012-06-27style cleanupCampbell Barton
2012-06-25style cleanupCampbell Barton
2012-06-20avoid calls to BLF_height_default in a loop calling with the same value, ↵Campbell Barton
also quiet warning.
2012-06-20fix for error with sequencer stip text drawing - was using unclamped handle ↵Campbell Barton
sizes for the text bounds, this could be very wrong with long strips.
2012-06-20move the frame length to the end for sequence drawing (mango request, since ↵Campbell Barton
often the name is clipped out entirely so only then length is seen)
2012-06-20Fix #31852: Sequencer duplicate cant move strips on Y axis in a metaSergey Sharybin
Issue was caused by some stuff happenign in wm_operator_finish() which uses to somehow restore changes made by transformation invoke function. Solved by not calling translation operator directly from duplication operator (which is in fact really tricky) and use macros instead. This macros calls duplication operator which simply duplicates strip, and then calls translation operator.