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
2014-09-30Blend modes: fix array length being too shortKévin Dietrich
Reviewers: psy-fi Differential Revision: https://developer.blender.org/D799
2014-09-29Don't error of sign-conversion for < gcc v4.8Campbell Barton
Behavior is different and hard to keep building on older versions.
2014-09-28Fix T41986: polyfill fails with axis aligned vertsCampbell Barton
2014-09-28Correct recent error in BLI_array_append_retCampbell Barton
2014-09-28Comments: clarify math libCampbell Barton
2014-09-28BLI_array: add BLI_array_append_retCampbell Barton
returns the newly appended item. also make make it so reserve doesn't have to grow then shrink the array size.
2014-09-28BLI_Stack add BLI_stack_peek, BLI_stack_discardCampbell Barton
also remove own incorrect assert
2014-09-25Fix previous commit rB34abb614f1344a6, which broke addons translations.Bastien Montagne
Ghash comp callbacks must return false in case a & b are equal! Also slightly cleaned up gash code using those comp func, since those return booleans now, let's compare tham against booleans!
2014-09-25Type checking macro: CHECK_TYPE_ANYCampbell Barton
Compile time check a var against a multiple types.
2014-09-25Move typecheck macros into own headerCampbell Barton
2014-09-25GHash: use bool for comparison (simplify compare)Campbell Barton
2014-09-24Cleanup: const correctness for BLI_sortlistCampbell Barton
2014-09-24Cleanup: use float versions of functions when in/output are floatsCampbell Barton
2014-09-24Cleanup: boolCampbell Barton
2014-09-23Macro VA_NARGS, increase max to 64Campbell Barton
2014-09-22Fix T41891: Alt+S can't save imageCampbell Barton
win32 BLI_path_abs expanded empty strings into "C:\\", which made BLI_exists succeed (quite confusing). Now match behavior on *nix.
2014-09-16Math Lib: use higher precision for vector printingCampbell Barton
Only use for debugging, where precision is often important.
2014-09-16Math Lib: add mul_v3_project_m4_v3Campbell Barton
2014-09-16Cleanup: sync map_to_sphere, UNLIKELY xy zero caseCampbell Barton
2014-09-14Correct last commitCampbell Barton
2014-09-14Cleanup & typo in assignmentCampbell Barton
2014-09-11Fix crash in BLI_kdtree_range_searchCampbell Barton
Called memcpy with a NULL pointer, causing the following NULL check to get optimized away.
2014-09-06Math Lib: Add copy_m2_m2, unit_m2, zero_m2Campbell Barton
2014-09-04Write Compressed blend files directlyCampbell Barton
Writing compressed files would write the uncompressed blend, then re-compress on-disk. Use a wrapper for open/write/close commands
2014-08-29Fix for blender.exe -r being registering blender-app.exeSergey Sharybin
2014-08-29Add callback for starting a render-jobCampbell Barton
We had complete/cancel, but no matching init for rendering, render_pre/post callbacks aren't always usable.
2014-08-29Remove redundant castsCampbell Barton
2014-08-29CleanupCampbell Barton
2014-08-28Fix T41473: Cycles volume rendering is too darkSergey Sharybin
The issue was caused by the changed defaults from the Cycles side. Because of those properties being saved as an IDProp and not being saved to the file, every change to the defaults would ruin someone's day updating the values. Added a bpy.app.handler.version_update which is run after the regular do_versions() are done and could be sued by the scripts to apply versioning code on their settings. Reviewers: campbellbarton Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D761
2014-08-27Add a reusable dial mechanism to get rotations around a center and anAntony Riakiotakis
initial position. The system supports arbitrarily big angles.
2014-08-27CleanupCampbell Barton
2014-08-25BLI_kdopbvh: ifdef unused 'skip' memberCampbell Barton
Saves memory and speeds up balance
2014-08-23Smallhash: BLI_smallhash_calc_qualityCampbell Barton
Also add inline hashing function to measure different methods.
2014-08-20Cleanup: styleCampbell Barton
2014-08-18De-duplicate EWA filter code between renderer and compositorSergey Sharybin
The title says it all, move the EWA filter to BLI (currently it's math_interp.c) and use the function from both BI renderer and the compositor. This makes more central place of the algorithm, allowing to have fixes and optimizaitons synchronized across the two usages. This also fixes T41440: Displacement in compositing creates holes Reviewers: campbellbarton, lukastoenne Reviewed By: lukastoenne Maniphest Tasks: T41440 Differential Revision: https://developer.blender.org/D748
2014-08-17BLI_array: utility function for searching an arrayCampbell Barton
2014-08-17Knife tool: simplify hit-depth calculationCampbell Barton
2014-08-17CleanupCampbell Barton
2014-08-17Math Lib: replace epsilon with check against zeroCampbell Barton
line-tri intersection depended on scale, The check made small triangles & lines fail. So just check for divide by zero as ray-cast currently does.
2014-08-16Math Lib: add isect_line_line_epsilon_v3Campbell Barton
2014-08-15Cleanup: comment & var nameCampbell Barton
2014-08-14Remove MSVC2008 workaroundCampbell Barton
2014-08-14remove MAXFLOAT defineCampbell Barton
2014-08-13Math Lib: rename barycentric_transform -> transform_point_by_tri_v3Campbell Barton
also add transform_point_by_seg_v3
2014-08-13Math Lib: name signed versions of dist_to_plane_v3 explicitlyCampbell Barton
also add unsigned versions
2014-08-12Cleanup: magic numbersCampbell Barton
2014-08-12GHash: add flag get/set for gsetCampbell Barton
2014-08-11CommentsCampbell Barton
2014-08-07Cleanup: Remove special code for Visual Studio 2008.Thomas Dinges
Goodbye VC2008, it has been a pleasure (more or less) :D SCons / CMake cleaenup will follow. Differential Revision: https://developer.blender.org/D715
2014-08-07CommentsCampbell Barton