Bastien Montagne
6bf05ab2ca
Install_deps: py 3.5.3, collada 22b1f4ff026881b4 (2.6.47), OCIO 6de971097c7f5.
2017-05-18 16:53:07 +02:00
Sergey Sharybin
49bd3d3a1a
Cycles: Fix crash loading single channel texture
...
Was typo in recent isfinite check.
2017-05-18 15:49:03 +02:00
Campbell Barton
1247f609d4
Correct last commit
...
VERT_VISIT was used in a nested function.
2017-05-18 21:48:52 +10:00
Pascal Schoen
32c9d2322c
Fix T51408: Cycles - Principled BSDF Shader - Transparency is not working as expected
...
Renamed the "Transparency" input of the Principled BSDF to
"Transmission" and "Refraction Roughness" to "Transmission Roughness".
2017-05-18 13:18:19 +02:00
Campbell Barton
208462e424
Fix T51539: BMesh boolean crash
...
In some cases the vertex visit queue would exceed its max length,
visiting the same vertex multiple times.
2017-05-18 21:09:06 +10:00
Campbell Barton
102394a323
Fix T51538: Weight-paint circle select w/ clipping
2017-05-18 10:43:34 +10:00
Sergey Sharybin
c4d122e305
Cycles: Optimize expansion of headers in the source
...
Use smarter check of where the file is coming from instead of
attempting to replace same source twice with different settings.
Brings down processing time from 3.6sec to 1.8sec.
2017-05-17 17:26:35 +02:00
Sergey Sharybin
9a910443c4
Fix compilation error in Cycles
...
Was caused by recent fix with finite checks.
Fixes T51536.
2017-05-17 17:23:32 +02:00
Sergey Sharybin
1d49205b1a
Fix T51529: Black boxes on a denoising render when using a .exr image as a environmental texture
...
It is caused by NaN value in the input texture. Now we check for all the pixels
having proper finite values.
Should also help here in the studio,
2017-05-17 15:29:47 +02:00
Sergey Sharybin
cc2755b443
Revert "Cycles: Fix wrong shading on GPU when background has NaN pixels and MIS enabled"
...
This reverts commit 581c819013 .
Seems we do need to do finite check early on, this is incoming.
2017-05-17 15:06:05 +02:00
Sergey Sharybin
47f8459ead
Fix T51388: Mask moves when zoom is changed in the movie clip editor
...
Incorrect matrix space for stabilization.
2017-05-17 14:51:51 +02:00
Campbell Barton
f674bc90e2
BMesh: remove duplicate argument for wireframe op
2017-05-17 20:31:14 +10:00
Hristo Gueorguiev
40e6f65ea1
Fix T50937: baking with OpenCL and CPU have slightly different brightness
...
OpenCL baking with SSS and Volume are not supported.
2017-05-17 12:24:16 +02:00
Sergey Sharybin
24676b535a
Fix T49981: When camera is on inactive layer, it does not evaluate constraints
...
Second round of fix, was broken by 843be91 .
2017-05-17 10:22:40 +02:00
Mai Lavelle
0a6c57d3d2
Fix crash from freeing of NULL pointer
2017-05-16 16:29:27 -04:00
Mai Lavelle
966a2681f9
Cycles: Fix building with native only option
...
Approach suggested by Lukas S.
2017-05-16 16:05:04 -04:00
Mai Lavelle
e14a2e87dc
Revert "Cycles: Fix native only kernel since denoiser commit"
...
Fix didn't work in debug mode due to undefined references.
This reverts commit 5319571511 .
2017-05-16 16:03:27 -04:00
Sergey Sharybin
d59721c2c3
Fix T50673: OpenEXR multilayer image truncated on save
...
The issue is in OpenEXR itself. See the report fomr some more details.
2017-05-16 16:34:49 +02:00
Sergey Sharybin
26b2323189
Fix memory leak when saving OpenEXR files
...
It is not a good idea to:
1. Duplicate metadata to self
2. Ignore the fact that something might have had metadata already.
Also moved metadata copy to a preparation function, so it is
never lost.
2017-05-16 15:36:29 +02:00
Howard Trickey
8be9d68dd4
Fix T49467: Crash due to assert failure in bevel.
...
The mesh interpolation code had an edge case where one of two
adjacent edges to a vertex has 0 length. This caused an assert
failure indexing the vertex mesh for splash Blenderman.blend.
2017-05-16 07:19:01 -04:00
Sergey Sharybin
a70a7f9db3
Fix T49864: EnvMap baking crashes 2.78 if 'Full Sample' checked in AA
2017-05-16 12:40:04 +02:00
Sergey Sharybin
f89c6e739a
Fix memory leak in environment
...
Found when was looking into T49864. The issue is caused here
by render_copy_renderdata() doing a copy of views with
BLI_duplicatelist() so we can not just zero the pointers out.
Similar thing is happening for layers as well.
2017-05-16 10:57:28 +02:00
Olly Funkster
06ac6ded66
Fix byte-to-float conversion when using scene strips in sequencer with identical color spaces
...
Fix T50882: VSE: Blend Modes on Scenes do not layer properly
Fix T51002: Scene strip with Alpha over not working as expected
The byte-to-float conversion was being skipped if the color spaces of the sequence and the scene
are the same, which is the default, resulting in any non-float strips becoming invisible.
Reviewers: sergey
Differential Revision: https://developer.blender.org/D2635
2017-05-16 10:36:33 +02:00
Sergey Sharybin
f6afd1b73c
Make imbuf's OIIO bindings to compile with latest OIIO from git
2017-05-16 09:35:46 +02:00
Campbell Barton
d508b69e44
Cleanup: gcc7.1 warnings
2017-05-16 12:46:52 +10:00
Aaron Carlisle
12651aba03
Fix hair_step is a short
2017-05-15 17:28:01 -04:00
Aaron Carlisle
15e8fbd549
Fix compile error on gcc after last commit
...
error: static assertion failed: "invalid limits"
2017-05-15 16:43:33 -04:00
Aaron Carlisle
4621583612
Fix T51297: Use A Higher Hair Segment Limit
...
Normally, segments up to 50 can be quite enough for most cases.
However, when dealing with things like braids,
the current limit can sometimes be quite a pain.
2017-05-15 14:29:59 -04:00
Sergey Sharybin
5319571511
Cycles: Fix native only kernel since denoiser commit
2017-05-15 18:37:33 +02:00
Sergey Sharybin
1c21e088f2
Fix T50109: Blender crash when a "Render Result" as a Texture
...
This commit fixes crash, but user feedback can be improved here to
inform artist that one can't use Render Result as a texture since that
will cause feedback loop.
2017-05-15 15:59:47 +02:00
Sergey Sharybin
ef8ad66aa2
Fix T49324: True displacement crashes when shader returns NaN
2017-05-15 15:45:19 +02:00
Sergey Sharybin
1f96dd2e0b
Fix T51348: Node highlighting is broken
...
This feature was disabled in the code but not in the interface.
Removing the code, since it needs full re-implementation anyway.
2017-05-15 13:52:17 +02:00
Dalai Felinto
b60f80e9b3
Fix T51501: Cycles baking cancel affects baking script
...
Basically upon invoking cycles baking we could canell it which would
leave G.is_break hanging as true. Since we were not setting is_break to
false before exec baking, it would misbehave.
2017-05-15 13:04:44 +02:00
Campbell Barton
df94f2f399
Fix T51180: BMesh crash using calc_uvs=True
...
Don't assume UV layer exist.
2017-05-15 16:53:57 +10:00
Campbell Barton
b5b72a3f29
PyAPI: don't re-register add-ons on 'New File'
...
Some add-ons have bugs with re-registration,
they should be fixed, but no need to exacerbate the problem.
2017-05-15 15:33:01 +10:00
Campbell Barton
687ff699e9
Cleanup: warnings, style
2017-05-15 14:58:55 +10:00
Brecht Van Lommel
890d871bc3
Fix T51314: crash cancelling Cycles bake during scene sync and update.
2017-05-13 07:15:25 +02:00
Sergey Sharybin
8ca9fa5fd3
Fix T51153: Video duration is detected wrong after FFmpeg update
...
The issue was caused by stupid workaorund for libav. Now things works for
FFmpeg. There might need some tweaks needed for Libav, but that one is
not really priority for support.
2017-05-12 16:43:36 +02:00
Bill Currie
37bc3850ce
Mesh Center: improved center-of-mass calculation
...
Previous method was based on face-area, giving un-even results
based on topology and gave issues with zero area faces.
This method gives matching results for concave ngons and the same geometry triangulated.
2017-05-12 11:04:38 +10:00
Brecht Van Lommel
868678c85f
Fix T51449: empty node editor continuously redrawing and using CPU.
2017-05-11 20:32:19 +02:00
Sergey Sharybin
77d633399c
BGE: Use BLI's stringify instead of implementing it again
...
Will solve compilation error in 2.8.
2017-05-11 16:46:43 +02:00
Sergey Sharybin
8eeb610832
Depsgraph: Fix/workaround crahs when fcu->rna_path is NULL
2017-05-11 16:28:21 +02:00
Dalai Felinto
6b9ab1f7a2
Unifying access to GLEW from the Blender Game Engine
...
Note: This is not about functionality, but about using the same stub file
we are using in Blender for the game engine in blender2.8.
2017-05-11 16:08:03 +02:00
Campbell Barton
15038975a3
Cleanup: GPU PBVH naming
...
Use GPU_pbvh prefix.
2017-05-11 22:05:19 +10:00
Hristo Gueorguiev
90b9467861
Cycles: fix AO approximation for split kernel
2017-05-11 11:58:25 +02:00
Aaron Carlisle
bb376c6693
Ammend last commit: add missing align for row props
2017-05-10 23:53:03 -04:00
Aaron Carlisle
c95a8bc68f
UI: Follow up on recent VSE work
...
Fix a few more columns that should be rows
2017-05-10 23:53:03 -04:00
Lukas Stockner
58a0c27546
Cycles: Fix occasional black pixels from denoising with excessive radii
...
Numerical inaccuracies would cause the XtWX matrix to be no longer
positive-semidefinite, which in turn caused the LSQ solver to fail.
2017-05-11 03:21:54 +02:00
meta-androcto
f4b7c33c1a
update new 2.79 themes: T50869
2017-05-11 10:27:16 +10:00
Lukas Stockner
edd7c55796
Fix Blenderplayer stubs
...
The change from 62aa925c11 wasn't included.
2017-05-11 01:13:32 +02:00