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-26Tracking: Some minor improvements to copy-pasteSergey Sharybin
- Deselect all existing tracks when pasteing, makes it easier to tweak stuff after the paste. - Make first of the pasted tracks active.
2014-09-26Tracking: Add shortcuts for the copy-paste as wellSergey Sharybin
2014-09-26Fix for missing shortcuts for mask copy/pasteSergey Sharybin
It's a safe fix and would be real cool to have in final release, it makes roto even easier than mentioned in the previous commit.
2014-09-26Fix T41961: Crash by Copy n Paste splines to new mask without layerSergey Sharybin
It makes much more sense to ensure layer before pasteing, makes roto as easy as it has never been before!
2014-09-26Fix for missing initialization of Freestyle RenderData parameters for new ↵Tamito Kajiyama
scenes.
2014-09-26Cleanup: unusedCampbell Barton
2014-09-26Fix the skin modifier crashing when building without Bullet.Brecht Van Lommel
2014-09-26Fix use of uninitialized variable in mesh_get_mapped_verts_coords.Brecht Van Lommel
It did not cause an actual bug, this code path is never executed at the moment.
2014-09-26OpenGL fix: GL_COLOR_ARRAY is client stateAntony Riakiotakis
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-25Tracking: Decouple C-API module into more granular filesSergey Sharybin
This way maintaining the C-API is a bit less tedious job and makes code cleaner to follow. Should be no functional changes.
2014-09-25Fix ghash comparator used by translationSergey Sharybin
It now need to return bool whether element matched or not.
2014-09-25BMesh: type-check iterator data argumentCampbell Barton
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-24Fix T41933: Node Editor: Crash occurs with Select by SuffixBastien Montagne
Wrong usage of `BLI_str_partition_ex_utf8`... This is to be backported to 2.72 branch.
2014-09-24Fix T41939: Dupliface: Inherit scale doesn't update viewport render.Bastien Montagne
Render needs un object update it seems...
2014-09-24gooseberry request:Antony Riakiotakis
Attempt to select closest bones when possible. Occlusion query selection does't support this well because we can't really derive depth information from occlusion tests. May be possible to improve this somewhat in the future.
2014-09-24Fix T41885, muting broken for Blender Internal nodes in rendering.Lukas Tönne
Nodes don't have muting callbacks any more, so now have to check the flag to prevent overwriting values on the stack that they share with inputs.
2014-09-24Correct for change in recent commitCampbell Barton
2014-09-24Custom Data API: redundant pointer-to-pointer argCampbell Barton
2014-09-24BMesh: slight speedup loop-of-verts iteratorCampbell Barton
2014-09-24BMesh: generic callbacks for mempool iteratorCampbell Barton
2014-09-24Cleanup: const correctness for BLI_sortlistCampbell Barton
2014-09-24Cleanup: use const for read-only arraysCampbell Barton
2014-09-24Cleanup: use float versions of functions when in/output are floatsCampbell Barton
2014-09-24Cleanup: boolCampbell Barton
2014-09-24Cleanup: de-duplicate text select logicCampbell Barton
2014-09-24Cleanup: set var staticCampbell Barton
2014-09-23Fix game engine not supporting material view.v2.72-rc1Antony Riakiotakis
Force textured view in that case. Also correct a few uses of the GLSL flag in the viewport. Should only be relevant for textured viewport.
2014-09-23Fix possible buffer overflow in selection code. We want to copy theAntony Riakiotakis
number of selected data since the offset, not the offset!
2014-09-23Move versioning code under the subversion checkSergey Sharybin
2014-09-23Version Bump: Entering 2.72 rc stateCampbell Barton
2014-09-23Fix crash in text editor (wrap + syntax-highlight)Campbell Barton
2014-09-23Cleanup: simplify check to draw syntaxCampbell Barton
2014-09-23Fix T41921: MapUV node alpha setting broken.Lukas Tönne
The UV values includes the image width/height now. To restore the previous method as close as possible (even though it is not documented anywhere how this is supposed to work), we have to ignore this scaling.
2014-09-23D713: correct error /w braces (freestyle)Tamito Kajiyama
Differential revision: https://developer.blender.org/D713 Author: campbellbarton (Campbell Barton)
2014-09-23Macro VA_NARGS, increase max to 64Campbell Barton
2014-09-23Cleanup: use struct names in ID commentsCampbell Barton
2014-09-23Fixed border extension for the sunbeams node.Lukas Tönne
This ensures that the beams color does not darken along borders, by using the last valid color of the ray as the border color (extending colors in the direction of the source point).
2014-09-22Projective painting:Antony Riakiotakis
* Make clone UI a bit more descriptive * Don't set images to image editors that have a pinned image.
2014-09-22Freestyle: disallow with fields (was crashing)Campbell Barton
2014-09-22Fix for Freestyle crash in bordered animation renderingTamito Kajiyama
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-22Corrent recent commit: off by one errorCampbell Barton
2014-09-22Fix image.save() - incorrect relative lib pathCampbell Barton
2014-09-22Correct MAX_LIBARRAY define, assert when its wrongCampbell Barton
2014-09-21Fix T41754, sunbeams node should return the unmodified source value atLukas Tönne
the source pixel.
2014-09-21Fix T41890: Regression in new array modifier code, vnors were no more ↵Bastien Montagne
offset-corrected. This is not needed when we tag normals as dirty, but in simple cases, if offset has some rotation (or non-uniform scaling) component, vertex normals has to be corrected.