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-26style cleanup: whitespaceCampbell Barton
2012-08-23code cleanup: rename BLI_in_rctf() --> BLI_rctf_isect_pt(), to conform with ↵Campbell Barton
our naming convention.
2012-08-23style cleanupCampbell Barton
2012-08-22code cleanup: use rect size macrosCampbell Barton
2012-08-21change curve evaluation functions never to modify curve data (ensures thread ↵Campbell Barton
safety), now initializations has to be done outside evaluation.
2012-08-20macros for rectangle center and sizeCampbell Barton
2012-08-17fix own error in recent smoothview cleanup, also correct some cross ↵Campbell Barton
references in bmesh docs.
2012-08-13style cleanup: use <pre> for doxygen ascii art 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-05code cleanup: minor edit - replace memset() with zero initialization, remove ↵Campbell Barton
unneeded NULL check in ibuf_sample()
2012-08-05fix uninitialized memory use for mask feather points, also remove some ↵Campbell Barton
double promotions.
2012-08-04style cleanupCampbell Barton
2012-08-04style cleanupCampbell Barton
2012-08-03code cleanup: double promotion warningsCampbell Barton
2012-08-02fix for crash when node groups loose their ID pointer references (when ↵Campbell Barton
linked libs don't load)
2012-08-02code cleanup: remove redundant float castsCampbell Barton
2012-08-01Tie compositor will now update render result when changing node setupSergey Sharybin
Issue was caused by the way how render result was acquiring -- pointer to render data was used to find needed render descriptor. It's not reliable since render contains copy of scene's render data, not pointer to this data. Use node scene's id name for render result acquiring, the same way as it was done in old compositor system.
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-29style cleanupCampbell Barton
2012-07-21use fabsf when using floats.Campbell Barton
2012-07-19code cleanup: remove commented includes - mostly from 2.4xCampbell Barton
2012-07-17code cleanup: spellingCampbell Barton
2012-07-15minor refactor for rect functions. more consistent naming.Campbell Barton
2012-07-11vector versions of BLI_in_rctf / BLI_in_rcti, (BLI_in_rctf_v, BLI_in_rcti_v)Campbell Barton
use where possible.
2012-07-09code cleanupCampbell Barton
2012-07-08code cleanup: quiet uninitialized memory use warning for X11 - harmless in ↵Campbell Barton
this case but always gave warnings with memcheck (RGB color for alpha zero icon color wasnt initialized). also some other minor changes.
2012-07-08fix [#32020] Image will not render in second (any scene other than first) if ↵Campbell Barton
scene name is longer than 28 characters
2012-07-08style cleanupCampbell Barton
2012-07-07style cleanup: use c style comments in C codeCampbell Barton
2012-07-07code cleanup: dont use function calls like dot_v3v3, pow and sqrt within ↵Campbell Barton
macros which results in calling the function multiple times needlessly. also added some comments.
2012-07-06fix for rare crash we have with some mango files.Campbell Barton
2012-07-03More spell and typo fixes (mostly visualise->visualize, grey->gray, ↵Bastien Montagne
normalise->normalize).
2012-07-01style cleanup: commentsCampbell Barton
2012-06-28code cleanup: compile with clang and quiet some warnings.Campbell Barton
2012-06-27style cleanupCampbell Barton
2012-06-25style cleanupCampbell Barton
2012-06-24style cleanypCampbell Barton
2012-06-22remove scene from new compositor classes. only needs RenderDataCampbell Barton
2012-06-22use an inline function for rgb -> bw conversion.Campbell Barton
2012-06-17style cleanup:Campbell Barton
also fix for building ghost test and fix double free in one of the tests
2012-06-16style cleanupCampbell Barton
2012-06-13style cleanupCampbell Barton
2012-06-13Fix #31754: strand width fade value 2.0 gives wrong result, should fade outBrecht Van Lommel
strand entirely. Fix based on patch by Philipp Oeser.
2012-06-13add rgb_to_luma_y(), was being done inline in many places.Campbell Barton
2012-06-13code cleanup: use const float's where possible and specify vector size.Campbell Barton
2012-06-07code cleanup: rename sequencer types to SEQ_TYPE_*** and use enums rather ↵Campbell Barton
then defines.
2012-06-07style cleanupCampbell Barton
2012-06-06style cleanup: (indentation)Campbell Barton