Philipp Oeser
fa5ce915df
Fix T60722: decimate modifier not working in some cases.
2019-01-22 19:54:35 +01:00
Antonioya
25889423d3
GP: Recalc UV data for primitive strokes
...
The data was not caculated when complete a primitive and it was only updated when use Edit mode.
2019-01-22 17:54:41 +01:00
Joep Peters
63729bc11f
UI: use same light icon for all light types in properties editor tabs.
...
Differential Revision: https://developer.blender.org/D4237
2019-01-22 17:05:36 +01:00
Joep Peters
1651879d34
UV Editor: support snapping to center of pixels, in addition to corners.
...
Differential Revision: https://developer.blender.org/D4150
2019-01-22 17:05:18 +01:00
Antonioya
6f167ccc79
Fix T60748: Move GP stroke extremes with noise modifier
2019-01-22 16:48:45 +01:00
Jacques Lucke
06a6b5dba4
Fix T60126: Gradient affects hidden vertices when weight painting
...
Also includes some minor refactoring: use guard clauses instead of nested conditionals.
Reviewers: brecht
Differential Revision: https://developer.blender.org/D4238
2019-01-22 15:31:10 +01:00
Brecht Van Lommel
8d4bad39c1
Fix T60742, T55974: crash using mesh/curve surface force fields.
...
Missing dependency graph relations caused race conditions.
2019-01-22 15:24:06 +01:00
Andrew Williams
102631486b
Fix potential invalid memory access in surface force field BVH tree.
...
Free the BVH tree immediately along with the mesh, otherwise we might access
invalid mesh data.
Differential Revision: https://developer.blender.org/D4201
2019-01-22 15:24:06 +01:00
Sergey Sharybin
414ebc68c2
Fix T60686: Renaming an animated bone breaks its animation
...
After rename is done we need to make sure all copies of
corresponding datablocks are updated in all dependency
graphs: otherwise bone will have a new name, but animation
will still be using an old one.
2019-01-22 14:50:58 +01:00
Campbell Barton
185c2487a6
Fix T60737: Crash workbench rendering
...
Addition of clipping from 7467049055
didn't account for non viewport display.
2019-01-22 22:27:23 +11:00
Campbell Barton
585e4848e1
3D View: Support vert & weight paint mask clipping
2019-01-22 22:22:20 +11:00
Sergey Sharybin
9c61107ba5
Cleanup: Silence pedantic compiler warning
...
Was happening in release builds.
2019-01-22 12:05:48 +01:00
Sergey Sharybin
362331f0ff
Cleanup: Remove unused variable
2019-01-22 12:02:35 +01:00
Sergey Sharybin
b2a15de887
Fix T60575: Multiresolution Crashes when appliing more subdivisions
...
The issue was caused by intermediate DerivedMesh being created with
scene's Simplify settings taken into account. This is what happens
when one area makes implicit decisions based on whether passed Scene
pointer is not NULL.
Made it so ignoring simplification serttings is an explicit flag,
which makes it easier to follow what's going on.
2019-01-22 11:57:23 +01:00
Sergey Sharybin
d6d101feca
Fix T59395: Subdivision modifier with quality 1 crashes blender
...
This is actually a workaround for the crash in OpenSubdiv.
Topology refiner will have a crash when special conditions
are met:
- Refiner is configured to use infinitely sharp patches.
- Refinement happens for the level 1 (which we call Quality 1 on
Blender side).
- Mesh has non-quad faces.
The workaround is to force refinement to happen to level 2 (or
quality 2 on Blender side) when those conditions are met.
Later on with the next OpenSubdiv update we can remove this
workaround, since there was work done on OpenSubdiv side to
deal better with such configurations.
The modifier will now be somewhat slower, but this will be
compensated with upcoming topology cache enabled by default.
The workaround is done when initializing settings, so the
comparison of topology refiner settings is happening without
any extra workarounds there.
2019-01-22 11:57:20 +01:00
Campbell Barton
0bbca0e221
3D View: Support edit-mesh clipping (only verts)
...
We'll need to replace built-in shaders to add support for clipping.
2019-01-22 17:23:24 +11:00
Campbell Barton
ee3c177dd3
Fix T60112: Smooth crashes w/ multiple views
2019-01-22 16:52:17 +11:00
Campbell Barton
a93cbb70cd
Fix T60643: BMesh operator enum args fail when unset from Python
...
Error introduced with bmesh operator enum support: 1e6a5eb087
2019-01-22 14:28:17 +11:00
Campbell Barton
88218946da
Cleanup: minor changes to reduce code duplication
...
D4236 by @sobakasu w/ edits.
2019-01-22 13:51:21 +11:00
Campbell Barton
b4aec52007
Cleanup: de-duplicate font loading code
...
Part of D4236 by @sobakasu
2019-01-22 13:11:31 +11:00
Campbell Barton
7f40d553f9
Cleanp: use single global for draw manager
...
Add 'G_draw' for all draw manager globals,
avoids adding extern to each file.
Connection between `ts` and `globals_ubo` wasn't obvious,
now called `G_draw.block` & `G_draw.block_ubo`.
2019-01-22 12:09:27 +11:00
Campbell Barton
c7768bcf4b
Cleanup: use const args
2019-01-22 12:09:12 +11:00
Campbell Barton
46d56872d0
Fix error in last commit
2019-01-22 11:24:59 +11:00
Campbell Barton
14adca06e4
Cleanup: use DRW_shader_create_from_arrays
...
Avoids messy conditional defines and inline lib allocation.
2019-01-22 11:09:17 +11:00
Campbell Barton
7c0f925c59
DRW: Add DRW_shader_create_from_arrays utility
...
While verbose, this is a more flexible way to construct shaders.
Libs & defines can be optionally included for each shader type
which was previously done with inline string creation.
2019-01-22 10:38:28 +11:00
Campbell Barton
8beab3e339
Cleanup: remove redundant '_sh' suffix, add '_shgrp'
2019-01-22 08:31:07 +11:00
Campbell Barton
3d9bee2db1
Cleanup: rename shader containers
...
These only contain shaders, so name Shaders instead of ShaderData.
2019-01-22 08:26:43 +11:00
Antonioya
a712fbda6a
GP: Cleanup previous commit
2019-01-21 18:30:15 +01:00
Antonioya
48149459e4
Fix T60714: Avoid creation of nested objects
...
In grease pencil is not logic add an object inside other object in edit mode. The object must be created only in Object mode.
2019-01-21 18:29:02 +01:00
Antonioya
0af8ad51c0
GP: Fix memory leaks when use cutter with weights
...
There were some issues when copy the weights and other memory leaks.
Also some code cleanup.
2019-01-21 17:39:00 +01:00
Clément Foucault
14b5668c60
DRW: Fix corner indices order in clipping plane setup
...
Fix T60667: Eevee: reflection plane bug in rendered view.
2019-01-21 15:21:17 +01:00
Campbell Barton
9bc47ed0f6
Fix clipping shaders with some AMD/Intel drivers
...
Caused:
error: unsized array index must be constant
Use hard coded number of clipping planes, copying the 4th to 5 & 6
when only 4 are used.
2019-01-21 23:55:53 +11:00
Jacques Lucke
0c829e8240
Fix T60709: Apply Object Transform does nothing by default
2019-01-21 13:43:16 +01:00
Clément Foucault
ba4de7f1a5
GPUShader: Add GPU_VERTEX/FRAGMENT/GEOMETRY_SHADER defines
...
This makes it possible to have some code specific to each shader inside a
shader library.
2019-01-21 12:54:41 +01:00
Antonioya
f8d040cb70
T60701: GP using cutter tool on stroke with vertex group crashes blender
2019-01-21 11:03:09 +01:00
Bastien Montagne
42ba294235
Fix T55461: [Vertex Group] "Delete all unlocked groups" not working.
2019-01-21 10:36:38 +01:00
Campbell Barton
78d2abd9c1
DRW: Support wire overlay clipping
2019-01-21 19:08:42 +11:00
Campbell Barton
7bc9a563e6
Correct freeing builtin shader from recent commit
2019-01-21 19:07:57 +11:00
Campbell Barton
a06b2b25ad
DRW: pass clipping to geom shader via 'gl_in'
...
Removes need to pass the worldspace location.
2019-01-21 17:50:31 +11:00
Campbell Barton
1ab071bd5c
Cleanup: remove '_sh' suffix
...
Shaders are now stored in their own struct, no need for special names.
Also free as an array.
2019-01-21 17:03:52 +11:00
Campbell Barton
07673a3460
DRW: Support edit-mesh clipping
2019-01-21 16:15:30 +11:00
Campbell Barton
dd3f518626
Cleanup: rename GPU function to set buffer length
2019-01-21 11:28:41 +11:00
Campbell Barton
ff10ba8c26
Cleanup: rename terms count/num to len
2019-01-21 11:24:19 +11:00
Campbell Barton
dbe960fdee
Cleanup: replace 'ct' w/ 'len'
2019-01-21 11:22:27 +11:00
Campbell Barton
923b366549
DRW: set 4 clipping planes for box-clip
2019-01-21 11:12:26 +11:00
Campbell Barton
c53ebfa9e9
3D View: add back clipping border operator
2019-01-21 11:05:15 +11:00
Campbell Barton
7467049055
3D View: add back initial clipping support
...
Use clipping for workbench solid mode drawing.
Other modes & shading support still needs to be added.
2019-01-21 10:43:01 +11:00
Campbell Barton
0d8d26696f
Cleanup: trailing space
2019-01-21 10:41:39 +11:00
Campbell Barton
49208a3419
Cleanup: shadow warning, style
2019-01-21 10:05:58 +11:00
Antonioya
eff4b68a6f
Fix T60678: GP, smoothing a stroke's weights multiple times will lead to unweightable points
2019-01-20 20:38:00 +01:00