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
2017-02-18Fix typo and change `.enabled` to `.active`surface-deform-modifierLuca Rood
2017-02-14Use parenthesis for bit shiftsLuca Rood
2017-02-14Remove unused `weight_components`Luca Rood
2017-02-14Use poll callback to disable bind operator instead of PythonLuca Rood
2017-02-06iconLuca Rood
2017-01-25Review: Multithread deform codeLuca Rood
2017-01-25Review: CleanupLuca Rood
2017-01-25Review: Add infinite weight flags enumLuca Rood
2017-01-25Review: Move stuff to helper func and more cleanupLuca Rood
2017-01-25Review: Optimize numpoly calculationLuca Rood
2017-01-25Review: Join allocations and some bpoly refactorLuca Rood
2017-01-25Review: Combine allocations and minor cleanupLuca Rood
2017-01-25Review: Report errors in UI and some more cleanupLuca Rood
2017-01-25Review: Fix depsgraph relationLuca Rood
2017-01-25Review: Fix indentations and use MEM_SAFE_FREELuca Rood
2017-01-25Review: Replace weight_components with individual variablesLuca Rood
2017-01-25Review: More cleanup...Luca Rood
2017-01-25Review: Inline loop indicesLuca Rood
Also fixed endian switch sign, and UI Python thingy...
2017-01-15General cleanup (unsigned stuff and loop counter inlining)Luca Rood
2017-01-15Remove warningsLuca Rood
2017-01-15Fix silly mistake in nearestVertLuca Rood
2017-01-14Change angle function calls in sdefLuca Rood
2017-01-14Change angle function call in 3d to 2d mapping functionLuca Rood
2017-01-11Split interp_weights_face_v3 into specific functions for tris and quadsLuca Rood
2017-01-11Remove custom weight interp func in favor of Blender's built-in implementationLuca Rood
2017-01-11Fix VS 2015 issue (change isnanf to isnan)Luca Rood
2017-01-11Fix 2d mapping function's nameLuca Rood
2017-01-11Replace "cent" functions from math_geom with "mid" ones from math_vectorLuca Rood
2017-01-10Constify some stuff (for clarity and correctness)Luca Rood
2017-01-04Silly const mistake (missed in refactor...)Luca Rood
2017-01-04Implement target poly influence interpolationLuca Rood
2017-01-04Add 3d to 2d plane mapping functions to math libLuca Rood
2017-01-04Fix out of bounds memory access in interp_weights_face_v3Luca Rood
interp_weights_face_v3 required a length four array for weights even when calculating weights for a tri, otherwise, it would access unkown memory. This fix allows a weight array of size three to be passed when only calculating tri weights.
2016-11-30Initial Surface Deform Modifier implementationLuca Rood
2016-11-27Add cent_poly_v3 functionLuca Rood
2016-11-25Add is_poly_convex_v3 functionLuca Rood
2016-11-25Fix (unreported) looptri array not being recalculated in ccgDM and emDMLuca Rood
In ccgDM and emDM, looptri array recalculation was being handled directly by `*DM_getLoopTriArray` (`getLoopTriArray` callback), while `*DM_recalcLoopTri` (`recalcLoopTri` callback) was doing nothing. This results in the array not being recalculated when other functions that depend on the array data are called. These functions, such as `getNumLoopTris`, call `recalcLoopTri` to ensure the data is up to date, but in the case of CCGDerivedMesh that was doing nothing. This moves all the recalculation code to `ccgDM_recalcLoopTri` and makes `ccgDM_getLoopTriArray` call that. Reviewed By: mont29 Differential Revision: https://developer.blender.org/D2375
2016-11-24Remove unused vector icons from RNAMartijn Berger
2016-11-24Fix prefs UI when built w/o CyclesCampbell Barton
2016-11-23Fix T50100: Cycles SeparateRGBNode Red socket defined wrongSergey Sharybin
Spotted by David (bocs), thanks!
2016-11-23Depsgraph: Fix matrix_world driver sourceSergey Sharybin
Reported by Dalai in IRC, thanks!
2016-11-23Cycles: Fix strict compilation warningsSergey Sharybin
2016-11-23Fix Cycles device backwards compatibility error if device type is unavailable.Brecht Van Lommel
2016-11-23Fix spelling in Cycles distance culling description.Brecht Van Lommel
2016-11-22Fix T49718: Wrong "Make Duplicates Real" behavior with "Keep Hierarchy"Luca Rood
All objects were being parented to a single instance of each parent object, instead of their respective instances, when using dupliverts or dupligroups. Behavior was caused by the `persistent_id[0]` (vertex/face id) being ignored when computing `parent_gh` hash, which caused all instances to have the same hash, and thus only the first one was included. Reviewed By: mont29 Differential Revision: https://developer.blender.org/D2370
2016-11-22Cycles: Fix strict compilation warningsSergey Sharybin
Should be no functional changes.
2016-11-22Install_deps: fix warning message not showing up in case build fails.Bastien Montagne
Kinda stupid, but big nice warning about need to try clean build if something fails was only showing in case install_deps completed successfully... :P
2016-11-22Fix T50034: Blender changes processor affinity unauthorizedSergey Sharybin
2016-11-22GLog: Workaround compilation error on HurdSergey Sharybin
There is syscall headers but no SYS_Write syscall.
2016-11-22Cycles: Fix re-definition of some functions on x32 archSergey Sharybin