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
2018-08-08Cleanup: use conforming header guardCampbell Barton
2018-08-08Cleanup: indentationCampbell Barton
2018-08-08Cleanup: use static variablesCampbell Barton
2018-08-06PyAPI: Make skin modifier roots settableAndrew Hale
This make the root flag writable using the Python API, using the generic skin vertex flag setter function. Reviewed By: Campbell Barton Differential Revision: http://developer.blender.org/D3583
2018-08-06Fix T55012: Corruption editing screen keymapCampbell Barton
2018-08-05Fix Cycles crash rendering mix of instanced and non-instanced volumes.Brecht Van Lommel
2018-08-04Fix T56222: Bevel Modifier bug (uninitialized value).Bastien Montagne
2018-08-02RNA: make particle enum publicCampbell Barton
2018-08-01Fix T56197: Cycles OpenCL build error after recent changes.Brecht Van Lommel
2018-08-01Fix T56195: Typo in BLI_array_utils.h.Bastien Montagne
2018-08-01Cleanup: remove unused array memberCampbell Barton
2018-08-01Cleanup: declare vars or make staticCampbell Barton
2018-08-01DNA: remove View3D.flag3Campbell Barton
Having 'flag, flag2, flag3' is getting out of hand especially when we support increasing the size of types. Make flag2 into an int. Note, this looses the 'show world' option, but it's not such an important setting.
2018-07-31Revert "Gitignore: Ignore diffs in all subdirs"Aaron Carlisle
This is an issue for some file in the extern dir This reverts commit d940a081a9f1f4106a5d2d155682695b0a6b0cb6.
2018-07-31Gitignore: Ignore diffs in all subdirsAaron Carlisle
2018-07-31Fix cmake external library build for blosc/freetype on some systems.Brecht Van Lommel
2018-07-31Fix building w/ FreeBSDCampbell Barton
fileno could be a macro which can't take a void pointer.
2018-07-31Fix Shape Key retime starting at frame 10Campbell Barton
D3571 by @alm
2018-07-31BLF: replace global aa pref w/ monochrome flagCampbell Barton
Now disabling anti-aliasing doesn't impact sequencer, render stamp etc.
2018-07-31UI: use text hinting (now user preference)Campbell Barton
D3201 by @ambient w/ edits not to impact fonts used for rendering (only change display for UI text).
2018-07-31UI: add check for any kind of popupCampbell Barton
Fixes T56155 when merging into 2.8
2018-07-30Build: require C11/C++11 for all operating systems in master.Brecht Van Lommel
This is in preparation of upgrading our library dependencies, some of which need C++11. We already use C++11 in blender2.8 and for Windows and macOS, so this just affects Linux. On many distributions this will not require any changes, on some install_deps.sh will need to be run again to rebuild libraries. Differential Revision: https://developer.blender.org/D3568
2018-07-30Cycles: Fixed OpenCL build. sqr(float4) is available on CUDA and CPU, but ↵Stefan Werner
not on OpenCL.
2018-07-30Sequencer: move text & color into own categoryCampbell Barton
Add 'Generate' menu, these aren't effects from a user perspective. D3546 by @rudolf.ortner
2018-07-30Cleanup: id-property creationCampbell Barton
D3473 by @JacquesLucke
2018-07-30Use Ctrl Snap to seconds w/ play-head dragCampbell Barton
D3056 by @alourenco
2018-07-30Cleanup: trailing spaceCampbell Barton
2018-07-30CMake: omit superfluous Up-to-date messagesCampbell Barton
Causes a lot of noise when building the install target.
2018-07-29make.bat : fix msvc 2017 detection.Ray Molenkamp
when 2017 was not found, it did not properly bail out of the rest of the detection process unless verbose mode was used.
2018-07-29Fix T56120: bad property access (from 2.8)Campbell Barton
Thanks to @brita_ for the fix.
2018-07-28Cycles: speed up mesh volume bounds construction.Stefan Werner
Patch by Stefan, with minor tweaks by Brecht.
2018-07-28Cycles: Save a few instructions in area light samplingLukas Stockner
Just basic algebra - because all vectors have the same z coordinate, a lot of terms end up cancelling out. Not exactly a massive improvement, but it's measurable with Branched PT and a high sample count on the lamp. Reviewers: brecht, sergey Reviewed By: brecht Subscribers: swerner Differential Revision: https://developer.blender.org/D3540
2018-07-27Cycles: Initial implementation of detailed statisticsSergey Sharybin
Gathers information about object geometry and textures. Very basic at this moment, but need to start somewhere. Things which needs to be included still: - "Runtime" information, like BVH. While it is not directly controllable by artists, it's still important to know. - Device array sizes. Again, not under artists control, but is added to the overall size. - Memory peak at different synchronization stages. At this point it simply prints info to the stdout after F12 is done, need better control over that too. Reviewers: brecht Differential Revision: https://developer.blender.org/D3566
2018-07-27Cycles: Add utility function to query graph node size in bytesSergey Sharybin
2018-07-27Fix T56092: command line arguments after -- beginning with -h don't work.Brecht Van Lommel
2018-07-27Cycles: Cleanup, indentationSergey Sharybin
2018-07-27Cycles: Cleanup, indentationSergey Sharybin
2018-07-27Cycles: Cleanup, spellingSergey Sharybin
2018-07-27Cycles: Cleanup, indentationSergey Sharybin
2018-07-27Cycles: Cleanup, line lengthSergey Sharybin
2018-07-27Cycles: Cleanup, move functions outside of class methodsSergey Sharybin
There is no reason or justification to have helper functions as class methods: they do not depend on anything in the class itself. There are probably more cases like that.
2018-07-27Cycles: Cleanup, remove unused functionSergey Sharybin
2018-07-27Cycles: Cleanup in image manager, switch statement instead of if-elseSergey Sharybin
Allows to catch enumerator values which are missing from being handled. Also use `const char*`, no need to construct string just to throw it away.
2018-07-27Fix Vector.project crash w/ >4 length vectorsCampbell Barton
2018-07-27Fix T55991: Python ignores scene switch argumentCampbell Barton
2018-07-27Correct arguments for callbackCampbell Barton
2018-07-27Fix T56074: Remove doubles creates holesCampbell Barton
Own regression when moving remove-doubles to kd-tree (seems to happen only in rare cases).
2018-07-26Cycles: Add reflection fix to Bump and Normal Map nodesLukas Stockner
While changing the shading normal is a great way to add additional detail to a model, there are some problems with it. One of them is that at grazing angles and/or strong changes to the normal, the reflected ray can end up pointing into the actual geometry, which results in a black spot. This patch helps avoid this by automatically reducing the strength of the bump/normal map if the reflected direction would end up too shallow or inside the geometry. Differential Revision: https://developer.blender.org/D2574
2018-07-26Fix compiling after ui cleanupsJens Verwiebe
2018-07-26WM: replace UI draw callbacks w/ property pollCampbell Barton
Custom drawing functions were used just to control property display. Move to poll function.