Brecht Van Lommel
c9344d6c5b
Fix T58776, T58030: pressure sensitivity on Linux not working for some tablets.
2018-12-05 14:02:37 +01:00
Bastien Montagne
e7643ee6b4
Install_deps: bump collada version to 1.6.68.
2018-12-05 13:52:39 +01:00
Brecht Van Lommel
f5b46daf52
Fix build with old CMake versions.
2018-12-05 12:53:19 +01:00
Campbell Barton
45c11c1a1b
Fix T49624: Fly uses camera settings outside camera view
2018-12-05 08:36:37 +11:00
Gaia Clary
22bba02bc8
fix T58568: used wrong case in variable name
2018-12-04 20:28:20 +01:00
Gaia Clary
10c50d7dbf
fix T58568 build errors when using collada 1.6.68 or newer
2018-12-04 19:11:57 +01:00
Niels
8908670623
Fix T58466: bug in macOS GHOST_GetSwapInterval.
...
No user level changes since this function is not used in active code.
2018-12-04 18:44:42 +01:00
Brecht Van Lommel
f63da3dcf5
Buildbot: enable support for NVIDIA Turing cards in Cycles (like GTX 20xx).
...
We currently only build the sm_7x kernels with CUDA 10.0, older cards still
use 9.1 until rendering errors are solved for them.
2018-12-04 16:03:18 +01:00
Brecht Van Lommel
b14ec18601
Cycles: add initial CUDA 10.0 support, but only recommend use for Turing cards.
...
There may still be rendering errors when used for older graphics cards.
2018-12-04 16:03:18 +01:00
Sergey Sharybin
3f31ec8398
Cleanup: Spelling
2018-12-04 11:43:53 +01:00
Shane Ambler
5a6f1fa563
Fix T58600: update OSL scripts to work with OSL 1.10.x.
2018-12-03 15:14:21 +01:00
Campbell Barton
6bb825e083
Fix T54580: Pointer buttons skip undo push
2018-12-03 18:43:33 +11:00
Campbell Barton
be2e549111
Use scene active object for sculptmode enter/exit calls
...
Match logic in previous commit.
2018-12-03 18:00:20 +11:00
Campbell Barton
f32dfd0819
Fix T56331: Undo crash w/ sculpt on hidden layer
2018-12-03 17:42:26 +11:00
Campbell Barton
335e1b507b
Cleanup: BKE b-bone API naming
...
Use BKE_pchan_bbone prefix.
2018-12-02 14:29:54 +11:00
Campbell Barton
c00e1f68e9
Cleanup: BKE_effect.h naming
2018-12-02 14:14:51 +11:00
Campbell Barton
a9bd788348
Cleanup: style
2018-12-01 08:15:25 +11:00
Brecht Van Lommel
84285c1e34
Fix T58275: WITH_OPENSUBDIV not enabled by default with some CMake versions.
...
Solution provided by Ulysse Martin.
2018-11-30 11:52:39 +01:00
Campbell Barton
530e567578
Revert "3D View: locked camera was using the original view offset"
...
This reverts commit 3f31c28a02 .
Gives issues zooming, could be resolved but it mostly worked OK before,
and it's not a priority to spend time on, so leave as is for now.
2018-11-30 19:01:06 +11:00
Campbell Barton
3f31c28a02
3D View: locked camera was using the original view offset
...
Now used the original dist instead, since using the distance between
the camera and the views offset may seem random from the users POV.
This addresses strange behavior noticed in T56934.
2018-11-30 18:15:06 +11:00
Campbell Barton
6e253fc627
Correct missing semicolon in recent commit
2018-11-30 17:07:13 +11:00
Campbell Barton
6429e6c91e
Cleanup: ensure '_END' macros end with a semicolon
...
Missing these breaks auto-indent for editors that don't expand macros.
2018-11-30 15:35:15 +11:00
Campbell Barton
3612ce5579
Cleanup: name macros w/ matching BEGIN/END
2018-11-30 15:22:01 +11:00
Campbell Barton
8c85f1316c
Cleanup: name macros w/ matching BEGIN/END
2018-11-30 15:08:47 +11:00
Campbell Barton
bae188bf46
Cleanup: duplicate include
2018-11-30 14:23:13 +11:00
Campbell Barton
0b044a4ab2
Cleanup: style
2018-11-30 14:23:10 +11:00
Campbell Barton
dd8469608b
Cleanup: unused return arg
2018-11-30 13:21:12 +11:00
Brecht Van Lommel
a8b8da5567
Fix T58183: crash with CPU + GPU rendering after profiling changes.
...
Multi-device was not passing along profiler to the CPU.
2018-11-29 23:43:27 +01:00
Campbell Barton
8ac2d85d2f
Cleanup: trailing space
2018-11-30 08:38:25 +11:00
Gaia Clary
3c767cecce
add: visual studio Compiler warning (order of attribute init in c++ constructors)
2018-11-29 17:04:12 +01:00
Brecht Van Lommel
2c154399a2
Fix internal compiler error when building with VS 2017 (15.9.3).
...
It doesn't like alignment for function arguments, and I don't think this
alignment is needed.
Solution found by Ray Molenkamp.
2018-11-29 16:42:52 +01:00
Sergey Sharybin
b00819bcca
Atomic: Avoid conflicts with definitions in other areas
...
While atomics library was trying to use "user-space" defined
LIKELY() and UNLIKELY(), this is not always true that user
code was checking for those macro coming from an unrelated
area.
2018-11-29 09:33:50 +01:00
Campbell Barton
140f2209b6
Cleanup: correct typo, no need for ./ prefix
2018-11-29 12:54:30 +11:00
Campbell Barton
2089feeb1b
Fix leak in CPU brand check
2018-11-29 12:52:39 +11:00
Lukas Stockner
7fa6f72084
Cycles: Add sample-based runtime profiler that measures time spent in various parts of the CPU kernel
...
This commit adds a sample-based profiler that runs during CPU rendering and collects statistics on time spent in different parts of the kernel (ray intersection, shader evaluation etc.) as well as time spent per material and object.
The results are currently not exposed in the user interface or per Python yet, to see the stats on the console pass the "--cycles-print-stats" argument to Cycles (e.g. "./blender -- --cycles-print-stats").
Unfortunately, there is no clear way to extend this functionality to CUDA or OpenCL, so it is CPU-only for now.
Reviewers: brecht, sergey, swerner
Reviewed By: brecht, swerner
Differential Revision: https://developer.blender.org/D3892
2018-11-29 02:45:24 +01:00
Campbell Barton
fb057153b0
CMake: update checker
...
Support skipping cmake files
2018-11-29 08:55:05 +11:00
Sergey Sharybin
2b371b65bc
More fixes for NUMA on macOS
2018-11-28 18:05:35 +01:00
Sergey Sharybin
8a6aa15903
Fix compilation error on macOS
2018-11-28 17:57:04 +01:00
Sergey Sharybin
547bc2a620
Fix compilation error on 32bit Windows
2018-11-28 17:54:58 +01:00
Bastien Montagne
c16321cb9d
Fix building gtests and bplayer after recent NumaAPI addition.
...
Seriously... like, seriously...
2018-11-28 16:50:02 +01:00
Sergey Sharybin
ce927e15e0
Tweaks for threading schedule for Threadripper2 and EPYC
...
The idea is to make main thread and job threads to be scheduled
on CPU dies which has direct access to memory (those are NUMA
nodes 0 and 2).
We also do this for new EPYC CPUs since their NUMA nodes 1 and 3
do have access but only to a higher range DDR slots. By preferring
nodes 0 and 2 on EPYC we make it so users with partially filled
DDR slots has fast memory access.
One thing which is not really solved yet is localization of
memory allocation: we do not guarantee that memory is allocated
on the closest to the NUMA node DDR slot and hope that memory
manager of OS is acting in favor of us.
2018-11-28 14:41:22 +01:00
Sergey Sharybin
b3e2c69416
Add utility function to query CPU brand string
2018-11-28 14:35:26 +01:00
Sergey Sharybin
683662e630
Add cross-platform NUMA library
...
Makes it simple to use NUMA libraries on various platforms.
2018-11-28 14:35:26 +01:00
Campbell Barton
9a5df92c1b
Fix T56872: Edge slide gives invalid normals
...
Add the ability to skip overwriting normals.
2018-11-27 11:40:32 +11:00
Sergey Sharybin
acd1d1a31d
CMake: Remove Cycles specific OpenSubdiv options
...
Just use one flag which enables OpenSubdiv globally for all the
areas of Blender.
2018-11-26 11:41:38 +01:00
Brecht Van Lommel
33750e8abb
Fix T58006: smart UV project island margin should not use length units.
...
This distance is in UV space, not world space.
2018-11-24 23:43:03 +01:00
Brecht Van Lommel
487af39c99
Sequencer: remove unnecessary limit on transform rotation.
2018-11-24 23:43:03 +01:00
Brecht Van Lommel
7c19d9e9af
Fix X11 tablet pen and eraser distinction being wrong in some cases.
...
This extends the earlier fix to use the latest logic from Wine's wintab.c,
to better handle eraser detection.
2018-11-24 23:24:32 +01:00
Campbell Barton
b348d1ac62
Cleanup: remove unused file
2018-11-25 08:05:42 +11:00
Campbell Barton
e742e0934d
Cleanup: trailing space
2018-11-25 08:01:14 +11:00