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
path: root/intern
AgeCommit message (Collapse)Author
2018-10-01Fix Cycles Python warnings related to annotations.Brecht Van Lommel
2018-09-30Fix T56909: wrong interface scale on macOS 10.14, when using 10.14 SDK.Brecht Van Lommel
This does not affect existing releases as far as I can tell, only new builds using the new SDK have the problem.
2018-09-28Fix T56396: Cycles wrong object motion blur with deformation blur disabled.Brecht Van Lommel
2018-09-28Merge branch 'master' into blender2.8Sergey Sharybin
2018-09-28Cycles: Fix compilation error of CUDA kernelSergey Sharybin
Was caused by previous commit.
2018-09-28Merge branch 'master' into blender2.8Sergey Sharybin
2018-09-28Cycles: Fix crash with BVH8 on certain scenesSergey Sharybin
The crash was caused by BVH traversal stack being overflowed. That overflow was caused by lots of false-positive intersections for rays originating on a non-finite location. Not sure why those rays will be existing in the first place, this is to be investigated separately. This commit moves pre-SSE4.1 check to a higher level function and enables it for all miroarchitectures.
2018-09-28Fix merge error, this should have been included from master.Brecht Van Lommel
2018-09-28Fix compilation errors and warnings with Clang-6Sergey Sharybin
2018-09-27Cleanup: remove unused DerivedMesh code.Sebastian Parborg
Differential Revision: https://developer.blender.org/D3736
2018-09-27Merge branch 'master' into blender2.8Brecht Van Lommel
2018-09-27Fix cycles_cubin_cc build error on macOS.Brecht Van Lommel
2018-09-27Cleanup: fix harmless compiler warnings.Brecht Van Lommel
2018-09-27Fix CUDA build with Xcode 10.0, use nvrtc due to incompatible compilers.Brecht Van Lommel
2018-09-27Merge branch 'master' into blender2.8Sergey Sharybin
2018-09-27Cycles: CleanupSergey Sharybin
2018-09-27Cycles: Sync BVH8 unaligned node packing code with BVH4Sergey Sharybin
Similar to dfae3de6bdf.
2018-09-27Tests: add --no-window-focus to open window without focus.Brecht Van Lommel
This is useful to run OpenGL tests while continuing to do other tasks without windows constantly popping up in the foreground.
2018-09-26OpenSubdiv: Cleanup, the TODO was actually solvedSergey Sharybin
2018-09-26OpenSubdiv: CleanupSergey Sharybin
2018-09-21Cycles: keep material settings panel closed by default.Brecht Van Lommel
2018-09-20OpenSubdiv: Add extra base level queries to topology refinerSergey Sharybin
2018-09-19Merge branch 'master' into blender2.8Sergey Sharybin
2018-09-19Cycles: Cleanup, double semicolonSergey Sharybin
2018-09-19Merge branch 'master' into blender2.8Brecht Van Lommel
2018-09-19Fix wrong CUDA version warning in cmake.Brecht Van Lommel
Fix suggested by Dalai.
2018-09-19Merge branch 'master' into blender2.8Campbell Barton
2018-09-19Cleanup: trailing spaceCampbell Barton
2018-09-18Merge branch 'master' into blender2.8Sergey Sharybin
2018-09-18Cycles: Fix usage of AVX2 intrinsics in AVX kernelRay Molenkamp
While building the AVX kernel, util_avxf.h/avxb.h were using some AVX2 intrinsics, these were never called, so it wasn't a run-time issue, but the intrinsics headers on centos excluded the AVX2 prototypes when building the AVX kernel causing build errors. This commit cleans up the improper usage of the AVX2 intrinsics and provides AVX fallback implementations for future use. Differential Revision: https://developer.blender.org/D3696
2018-09-17Merge branch 'master' into blender2.8Bastien Montagne
2018-09-17Cycles: Cleanup, remove dead codeSergey Sharybin
2018-09-17Cycles: Remove unused malformed functionSergey Sharybin
This isn't really possible to do the shuffle which was attempted to do. While it's possible to achieve expected behavior, the function needs to be rewritten. Since it's not used anyway, it's simpler to remove it for now.
2018-09-17Cycles: Use proper mask for vectrorized boolean printSergey Sharybin
2018-09-12Merge branch 'master' into blender2.8Sergey Sharybin
2018-09-12Cycles: Don't allocate Extra if BSDF allocation failedSergey Sharybin
Failed as in did not allocate due to possibly weight cutoff. Tryign to allocated Extra storage for closure in such situation will consfuse Cycles and cause crashes later one due to obscure values in ShaderData.
2018-09-12Merge branch 'master' into blender2.8Campbell Barton
2018-09-11Build: require OpenJPEG 2.x minimum, remove bundled version.Brecht Van Lommel
* WITH_SYSTEM_OPENJPEG is removed and is now always on, this was already the case for macOS and Windows. * This should not break existing Linx builds. If there is no new enough OpenJPEG installed, CMake will no find libopenjp2 and WITH_IMAGE_OPENJPEG will be disabled. * install_deps.sh was updated with new package names, since distributions put this version in a new package. Differential Revision: https://developer.blender.org/D3663
2018-09-11Merge branch 'master' into blender2.8Campbell Barton
2018-09-10Fix Cycles principled BSDF black with transmission and IOR 1.0.Brecht Van Lommel
2018-09-10Cleanup: remove unused field argsCampbell Barton
2018-09-06Merge branch 'master' into blender2.8Brecht Van Lommel
2018-09-06Cleanup: fix compiler warning.Brecht Van Lommel
2018-09-06Fix T56704: black / NaN values in Cycles normal pass.Brecht Van Lommel
2018-09-06UI / Python: rename X-Ray to In Front, Draw to Display.Brecht Van Lommel
See T56648.
2018-09-06CMake: add missing headersCampbell Barton
2018-09-06Merge branch 'master' into blender2.8Campbell Barton
2018-09-06Cycles: Allow cancel during displacement of meshesMai Lavelle
2018-09-05UI: use grid flow for Cycles object settings.William Reynish
2018-09-05Merge remote-tracking branch 'origin/master' into blender2.8Ray Molenkamp