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
2019-08-26Cleanup: use saturate3() for float3 clampingPatrick Mours
Ref D5363
2019-08-26Cleanup: fix compiler warningBrecht Van Lommel
2019-08-26Cleanp: fix compiler warningsBrecht Van Lommel
2019-08-26Cycles: GPU code generation optimizations for direct lightingPatrick Mours
Use a single loop to iterate over all lights, reducing divergence and amount of code to generate. Moving ray intersection calls out of conditionals will also help the Optix compiler. Ref D5363
2019-08-26Cycles: inline more functions on the GPUPatrick Mours
This makes little difference for CUDA and OpenCL, but will be helpful for Optix.
2019-08-26Cycles: change svm node decoding for more efficient code generation on GPUPatrick Mours
These functions no longer accept NULL. They were renamed for clarity and to avoid hidden merge issues. Ref D5363
2019-08-26Cycles: remove workaround to pass ray by valuePatrick Mours
CUDA is working correct without it now, and it's more efficient not to do this. Ref D5363
2019-08-26Cycles: tweaks for better GPU code generationPatrick Mours
Uninitialized variables are harder to handle for the compiler. Ref D5363
2019-08-26Cycles: fixes for building kernel without certain featuresPatrick Mours
Ref D5363
2019-08-26Cleanup: fix use of wrong constantPatrick Mours
Ref D5363
2019-08-26Cleanup: fix compiler warningBrecht Van Lommel
2019-08-26Fix render test Python error on crashesBrecht Van Lommel
2019-08-26Gizmo: match the DOF gizmo size with the non-gizmo indicatorCampbell Barton
2019-08-26Fix T69153: Camera DOF gizmo failsCampbell Barton
Regression from bc3139d792268
2019-08-26Gizmo: report error when property isn't foundCampbell Barton
Also add assert so this doesn't go unnoticed, see: T69153
2019-08-26Transform: support snapping origins onto the objects geometryCampbell Barton
Normally it wouldn't make sense for the object to snap onto it's self, when moving origins this is a common use-case.
2019-08-26Cleanup: use BLI_assertCampbell Barton
2019-08-26Fix assert restricting allowed operationmano-wii
2019-08-26Cleanup: unused argCampbell Barton
2019-08-25Cleanup: Move RNA Manual References to ModulesAaron Carlisle
This file used to be stored in the Add-ons repository to allow easy commit access for updating. Since then, we have created an automated process, the script can now easily be updated by anyone. This also makes more logical sense to store the file here as it is not an add-on.
2019-08-25UI: Dim Disabled Menu Items on HoverHarley Acheson
Dims the text and background of disabled menu items while mouse is hovering. Differential Revision: https://developer.blender.org/D5575 Reviewed by William Reynish
2019-08-25GPencil: Show edit points in Sculpt only if mask is enabledAntonio Vazquez
If the masks are disabled, the edit points must not visible.
2019-08-25cleanup: collada: removed unused public class variableGaia Clary
2019-08-25fix: Removed Debug statement from Collada CMakeLists. cmake now silently ↵Gaia Clary
determines which collada library version it uses
2019-08-25Fix T69127: Node sockets location bug after a keyframe is insertedCharlie Jolly
2019-08-25Cleanup: Clarify alloc comment textAntonio Vazquez
2019-08-25GPencil: Use evaluated data for Sculpt BrushesAntonio Vazquez
As part of T66294 is needed to use the evaluated data for Sculpt brushes to make possible to Sculpt a transformed stroke. Without this commit, it was impossible sculpt the stroke if the modifier moves away the stroke point from original position. Also, some calculation is done in order to determine the rotation to transform the brush effect too.
2019-08-25Fix error accessing a named UV layer when bakingCampbell Barton
2019-08-25Curve: remove tessface calculation when calculating modifiersCampbell Barton
- All parts of the code that need tessface should calculate it on demand. - The check for tessloopnormal mask isn't correct (since this is loop data, not tessface data).
2019-08-25Cleanup: redundant struct declarationsCampbell Barton
2019-08-25Cleanup: clang-formatCampbell Barton
2019-08-25Cleanup: skip adding tessface loop & color layersCampbell Barton
Also correct check in unused poll function
2019-08-25Cleanup: remove UV name syncing functionCampbell Barton
MTFace's on the mesh are now only used for conversion. There is no need to keep both UV layers in sync at once.
2019-08-25Cleanup: rename mesh looptri/tessface functionsCampbell Barton
Use consistent terminology.
2019-08-25Cleanup: remove tessface check when entering edit-modeCampbell Barton
2019-08-25Cleanup: remove BKE_mesh_calc_normals_tessfaceCampbell Barton
This was used for versioning, now normals are calculated after initializing MPoly data.
2019-08-25Cleanup: remove unused ED_mesh_*_tessface functionsCampbell Barton
2019-08-25Cleanup: remove unused DM_to_mesh functionCampbell Barton
2019-08-25RNA: remove Mesh.update() calc_loop_triangles argumentCampbell Barton
This calculated tessfaces, not loop-triangles. Remove this since they aren't accessible from RNA anymore.
2019-08-25Cleanup: remove USE_TESSFACE_DEFAULT defineCampbell Barton
2019-08-25Cleanup: remove tessface loop from set-smooth functionCampbell Barton
2019-08-24GPencil: Fix unreported unable to deselect when masking is OFFAntonio Vazquez
When the mask is disabled, all select operators must be disabled, but the deselect all operator must work or it's impossible to deselect.
2019-08-24Fix crash when snapping rulermano-wii
2019-08-24BKE_bvhutils: implement hiden checkmano-wii
Accidentally unused in rB7c3bbe93aaa2
2019-08-24GPencil: Use evaluated data in selectionAntonio Vazquez
Now the selection is using the position after evaluating the modifiers and makes possible to select a stroke point that has been moved from the original location. Related to T66294
2019-08-24Cleanup: use eval as suffixAntonio Vazquez
Follow conversion already used in most places.
2019-08-24Fix object origin transform with vertex snappingCampbell Barton
2019-08-24UI: Add Meta strip icon to Sequencer sidebarWilliam Reynish
Patch by Peter Fog (tintwotin). Differential Revision: https://developer.blender.org/D5567 Reviewers: Brecht Van Lommel (brecht), William Reynish (billreynish)
2019-08-24GPencil: Fix typo errorAntonio Vazquez
2019-08-24Fix T68807: smoothing group issuePhilipp Oeser
Showed in OBJ export. Caused by comparison mistake in rB2e91fc39ac7. Reviewers: mont29 Maniphest Task: T68807 Differential Revision: https://developer.blender.org/D5561