Brecht Van Lommel
0722981e99
Fix T56909: wrong interface scale on macOS 10.14, when using 10.14 SDK.
...
This does not affect existing releases as far as I can tell, only new builds
using the new SDK have the problem.
2018-09-30 19:33:41 +02:00
Brecht Van Lommel
637d938c0b
Fix T56396: Cycles wrong object motion blur with deformation blur disabled.
2018-09-28 18:24:19 +02:00
Sergey Sharybin
d2d0b4fcd7
Merge branch 'master' into blender2.8
2018-09-28 15:03:03 +02:00
Sergey Sharybin
de3ee3c6e8
Cycles: Fix compilation error of CUDA kernel
...
Was caused by previous commit.
2018-09-28 15:02:44 +02:00
Sergey Sharybin
b880c13c3a
Merge branch 'master' into blender2.8
2018-09-28 13:58:30 +02:00
Sergey Sharybin
b030277e79
Cycles: Fix crash with BVH8 on certain scenes
...
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-28 13:57:50 +02:00
Brecht Van Lommel
c3052f9126
Fix merge error, this should have been included from master.
2018-09-28 10:47:11 +02:00
Sergey Sharybin
81f68bbba1
Fix compilation errors and warnings with Clang-6
2018-09-28 09:46:12 +02:00
Sebastian Parborg
a16e5b8efa
Cleanup: remove unused DerivedMesh code.
...
Differential Revision: https://developer.blender.org/D3736
2018-09-27 20:19:28 +02:00
Brecht Van Lommel
975a40dceb
Merge branch 'master' into blender2.8
2018-09-27 20:12:14 +02:00
Brecht Van Lommel
bd267b0332
Fix cycles_cubin_cc build error on macOS.
2018-09-27 15:59:14 +02:00
Brecht Van Lommel
0f6b2504f8
Cleanup: fix harmless compiler warnings.
2018-09-27 15:33:44 +02:00
Brecht Van Lommel
e8e2f51063
Fix CUDA build with Xcode 10.0, use nvrtc due to incompatible compilers.
2018-09-27 15:20:33 +02:00
Sergey Sharybin
4de1e673a4
Merge branch 'master' into blender2.8
2018-09-27 14:51:33 +02:00
Sergey Sharybin
8f9a6b1bab
Cycles: Cleanup
2018-09-27 14:49:37 +02:00
Sergey Sharybin
bee16ec4d8
Cycles: Sync BVH8 unaligned node packing code with BVH4
...
Similar to dfae3de6bd .
2018-09-27 14:49:12 +02:00
Brecht Van Lommel
2a63e062b0
Tests: add --no-window-focus to open window without focus.
...
This is useful to run OpenGL tests while continuing to do other tasks
without windows constantly popping up in the foreground.
2018-09-27 12:21:48 +02:00
Sergey Sharybin
de811518c0
OpenSubdiv: Cleanup, the TODO was actually solved
2018-09-26 11:52:06 +02:00
Sergey Sharybin
3a15834d63
OpenSubdiv: Cleanup
2018-09-26 10:21:34 +02:00
Brecht Van Lommel
91a5b665b0
Cycles: keep material settings panel closed by default.
2018-09-21 13:56:22 +02:00
Sergey Sharybin
8196b9d7bc
OpenSubdiv: Add extra base level queries to topology refiner
2018-09-20 15:39:41 +02:00
Sergey Sharybin
a53c81c60b
Merge branch 'master' into blender2.8
2018-09-19 18:42:17 +02:00
Sergey Sharybin
a5101e4da8
Cycles: Cleanup, double semicolon
2018-09-19 18:41:43 +02:00
Brecht Van Lommel
6b433f4eb3
Merge branch 'master' into blender2.8
2018-09-19 18:20:50 +02:00
Brecht Van Lommel
a0402074ed
Fix wrong CUDA version warning in cmake.
...
Fix suggested by Dalai.
2018-09-19 16:24:45 +02:00
Campbell Barton
0ad183bf02
Merge branch 'master' into blender2.8
2018-09-19 12:05:08 +10:00
Campbell Barton
4c918efd44
Cleanup: trailing space
2018-09-19 12:04:34 +10:00
Sergey Sharybin
5aa5066c3b
Merge branch 'master' into blender2.8
2018-09-18 11:49:08 +02:00
Ray Molenkamp
16b8d223b7
Cycles: Fix usage of AVX2 intrinsics in AVX kernel
...
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-17 16:27:13 -06:00
Bastien Montagne
91e87f5cf2
Merge branch 'master' into blender2.8
2018-09-17 19:40:39 +02:00
Sergey Sharybin
284cd1375b
Cycles: Cleanup, remove dead code
2018-09-17 18:07:22 +02:00
Sergey Sharybin
81f1f9c85e
Cycles: Remove unused malformed function
...
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-17 18:05:32 +02:00
Sergey Sharybin
82e729d986
Cycles: Use proper mask for vectrorized boolean print
2018-09-17 18:02:01 +02:00
Sergey Sharybin
721c691a27
Merge branch 'master' into blender2.8
2018-09-12 12:29:19 +02:00
Sergey Sharybin
aa844ad676
Cycles: Don't allocate Extra if BSDF allocation failed
...
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-12 12:28:55 +02:00
Campbell Barton
2597cd3998
Merge branch 'master' into blender2.8
2018-09-12 15:54:07 +10:00
Brecht Van Lommel
a1651ddc98
Build: require OpenJPEG 2.x minimum, remove bundled version.
...
* 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-11 12:45:05 +02:00
Campbell Barton
15bab56fbc
Merge branch 'master' into blender2.8
2018-09-11 11:02:37 +10:00
Brecht Van Lommel
76a4042c23
Fix Cycles principled BSDF black with transmission and IOR 1.0.
2018-09-10 18:50:15 +02:00
Campbell Barton
bb9b0fcdbe
Cleanup: remove unused field args
2018-09-10 14:05:33 +10:00
Brecht Van Lommel
3733c52985
Merge branch 'master' into blender2.8
2018-09-06 20:11:18 +02:00
Brecht Van Lommel
a5bb401704
Cleanup: fix compiler warning.
2018-09-06 20:09:13 +02:00
Brecht Van Lommel
0728c897d7
Fix T56704: black / NaN values in Cycles normal pass.
2018-09-06 20:06:23 +02:00
Brecht Van Lommel
e0a4dc6a79
UI / Python: rename X-Ray to In Front, Draw to Display.
...
See T56648.
2018-09-06 13:26:46 +02:00
Campbell Barton
1450a37555
CMake: add missing headers
2018-09-06 21:23:25 +10:00
Campbell Barton
1f22ef34bb
Merge branch 'master' into blender2.8
2018-09-06 14:43:47 +10:00
Mai Lavelle
feb3c74a05
Cycles: Allow cancel during displacement of meshes
2018-09-06 00:25:35 -04:00
William Reynish
0894f07737
UI: use grid flow for Cycles object settings.
2018-09-05 13:48:49 +02:00
Ray Molenkamp
54ea26f019
Merge remote-tracking branch 'origin/master' into blender2.8
2018-09-04 17:00:44 -06:00
Ray Molenkamp
19c7e499e1
cycles: Fix x86 build error.
...
WITH_CYCLES_CUDA_BINARIES was set as a regular variable causing it to be overwritten by the release.cmake settings.
2018-09-04 16:58:41 -06:00