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
AgeCommit message (Collapse)Author
2018-09-17Fix T56800: Reflection Plane in Eevee crashes BlenderClément Foucault
2018-09-17Fix T56803: Indirect lightning bake crashes BlenderClément Foucault
2018-09-17Fix T56801: Enabling smoke crashes Blender.Clément Foucault
2018-09-17Depsgraph: Cleanup, indentationSergey Sharybin
2018-09-17Depsgraph: Gnuplot, put heaviest objects at the topSergey Sharybin
2018-09-17Merge branch 'master' into blender2.8Bastien Montagne
2018-09-17Fix T56811: Do not show cancel button for jobs when UI is locked.Bastien Montagne
Since that button is then totally useless and unusable...
2018-09-17UI: show steps for spin toolCampbell Barton
2018-09-17Gizmo: start spin gizmo draggingCampbell Barton
- Only respond to drag event, so placing the cursor is possible. - Start off with zero rotation, dragging adjusts.
2018-09-17Gizmo: Functions to re-initialize a group typeCampbell Barton
Partially re-initializing a gizmo is often more trouble then removing and re-adding.
2018-09-17Gizmo: only respond to mouse-move eventsCampbell Barton
Missed in recent update to event handling.
2018-09-17Cleanup: use SCE_GIZMO_ prefix for gizmo_flagCampbell Barton
2018-09-17Cleanup: rename gizmo group dataCampbell Barton
Abbreviate to 'ggd', replacing manipulator reference.
2018-09-17Revert "Cleanup: use tuples in python according to feedback"Campbell Barton
This reverts commit b1f0e4c2d673320085cd5e1c68f4f5f814bacede. Sets are typically preferred for __contains__ checks when order doesn't matter.
2018-09-16Fix T56817: Assert because of invalid framebufferClément Foucault
2018-09-16Fix driver expression bytecode validation crash if parsing fails.Alexander Gavrilov
Another NULL pointer access: nothing to validate if it already failed.
2018-09-16GP: Rename select group color to materialsAntonioya
2018-09-16Fix a crash when a driver expression evaluates to NaN.Alexander Gavrilov
The debug logging statement was accessing a NULL pointer. Also happens in 2.79.
2018-09-15GP: Initialize new brush factorsAntonioya
2018-09-15Cleanup: use tuples in python according to feedbackInes Almeida
2018-09-15Cleanup: styleCampbell Barton
2018-09-15PyDoc: add gpu.shaderCampbell Barton
Also some syntax corrections.
2018-09-15Cleanup: use r_ prefix for return argsCampbell Barton
2018-09-15GPUTexture: Fix problem with glGenerateMipmapClément Foucault
Fix T56789: There was issue with certain driver with glGenerateMipmap and GPU_DEPTH_COMPONENT24. In this case we just create a complete texture with mipmaps manually without downsampling / initializing the data.
2018-09-14GP: Improve errase panel and toolbarsAntonioya
Some names were not clear enough and some parameters were missing.
2018-09-14GP: Add pressure option to eraser sizeAntonioya
2018-09-14GP: Some changes to eraser panelAntonioya
2018-09-14Object Mode: Draw object center after the floorgridClément Foucault
2018-09-14Object Mode: Make Flat object selectable in ortho view ...Clément Foucault
... when wireframe is enabled
2018-09-14Object Mode: Make Flat object outline visible in orthographic viewClément Foucault
2018-09-14Motion Paths: interactively update current frame location while dragging.Brecht Van Lommel
2018-09-14Motion Paths: only update once when transforming multiple bones or objects.Brecht Van Lommel
2018-09-14Fix object motion paths not updating correct after filtering optimization.Brecht Van Lommel
2018-09-14Fix OpenColorIO link errors in some Linux builds.Brecht Van Lommel
The library can get installed in a lib/static subdirectory, so search there as well now.
2018-09-14Fix OpenColorIO link errors in some Linux builds.Brecht Van Lommel
The library can get installed in a lib/static subdirectory, so search there as well now.
2018-09-14GP: Fix T56802 - Add/Delete Vertex Group crashesAntonioya
2018-09-14Cloth: Improve UILuca Rood
This reorganizes the cloth UI, and changes some of the behaviour to be more reasonable. Changes included here: * Reorganized cloth panels * Improved some tooltips * Removed `vel_damping` option * Removed cloth pinning checkbox * Removed stiffness scaling checkbox * Separated shrinking from sewing * Separated self collisions from object collisions Reviewed By: brecht Differential Revision: http://developer.blender.org/D3691
2018-09-14GPU module: Initial implementation of the `gpu.shader` submodule.mano-wii
Differential Revision: https://developer.blender.org/D3688
2018-09-14Depsgraph: Use default visibility of falseSergey Sharybin
Avoids invisible objects from being considered visible when they are used as driver variables. If those cases are actually coming from a visible object, then deg_graph_build_flush_visibility() will ensure visibility is properly flushed there.
2018-09-14Depsgraph: Respect parent object visibility in more placesSergey Sharybin
Mainly coverts object->parent and pose constraints.
2018-09-14Depsgraph: Make indirectly linked objects inherit visibility from parentSergey Sharybin
This way objects which are pulled into dependency graph via modifier stack from an invisible object will be invisible.
2018-09-14Depsgraph: Use explicit argument valuesSergey Sharybin
2018-09-14Multires: Initial work to get sculpting to work with OpenSubdivSergey Sharybin
Allows to go to sculpt mode, do brush strokes, get out of sculpt mode and have deformation preserved. The issues currently is that the current implementation of CCG storage is created from the limit surface, without displacement taken into account. It is trivial to get displaced coordinates, but it is more tricky to get displaced normals. This is something to be solved next. Another limitation is that this only works for sculpting at a maximal multires level. There is code to be done to support propagation of displacement onto a higher levels.
2018-09-14Subdiv: Cleanup, variable name spellingSergey Sharybin
2018-09-14Sculpting: Fix wrong object was using for PBVHSergey Sharybin
The function is supposed to be called for original object. Draw manager abuses this a bit, will solve later by moving PBVH (re)creation to dependency graph. At the time being, stop adding object evaluation to draw manager, this is really where it does not belong to.
2018-09-14Subdiv: Cache Subdiv in CCG surfaceSergey Sharybin
Allows to do re-shaping easier, since we will know for sure what was the limit surface the CCG is created for.
2018-09-14GPUBuffers: Rework support for pbvh grids + fast navigateClément Foucault
Flat shaded grids are now rendered as a long triangle strip with degenerate triangles. Smooth shaded grids are not changed. Also add back fast navigate. The only difference with 2.79 is that fast navigate + flat shading will show slitly "incorrect" smooth face. But that's too much effort to fix for what it is.
2018-09-14GP: Add thickness and stregth factor to UIAntonioya
Now it's possible change the factors for soft eraser.
2018-09-14GP: Fix armature deformation weight problemAntonioya
The armature was using only weight 1 or 0, but not the real value. Also removed unused parm in UI panel.
2018-09-13GP: Change fill option textAntonioya