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
path: root/source
AgeCommit message (Collapse)Author
2018-08-09Fix trivial error in callsoc-2018-bevelRohan Rathi
2018-08-09Fixed custom shading not updating in Edit ModeRohan Rathi
2018-08-08Cleanup: trailing spaceCampbell Barton
2018-08-05Fix indentation, spacing and added commentsRohan Rathi
2018-08-04Initialized normal data in BevModRohan Rathi
2018-08-04Added some comments to bevel_harden_normals for bev toolRohan Rathi
2018-08-04Added comments to functionality in main bevel codeRohan Rathi
2018-08-04Added comments to seam and sharp len, removed unused varRohan Rathi
2018-08-04Fixed hnmode not being passed with bevel toolRohan Rathi
2018-08-04Added comments on hn_mode, BMOps on bevelRohan Rathi
2018-08-04Fixed comment formatting in editmesh.cRohan Rathi
2018-08-04Removed redundant comment in BMeshRohan Rathi
2018-08-01Some more minor typo fixes in comments.Bastien Montagne
2018-08-01Fix more merge stupid leftover, and some build warnings.Bastien Montagne
2018-08-01Fix issues after last 2.8 merge.Bastien Montagne
2018-08-01Merge branch 'blender2.8' into soc-2018-bevelBastien Montagne
Conflicts: release/scripts/addons release/scripts/startup/bl_ui/space_view3d_toolbar.py source/blender/editors/space_outliner/outliner_draw.c
2018-08-01Cleanup: Remove ToDo commentAntonioya
2018-08-01Fix context problem when render in background modeAntonioya
Bug reported by Sergey.
2018-08-01Cleanup: Replace "Move Color" to "Assign Material"Antonioya
2018-08-01Fix T56187: Crash using cursor tool in Edit/Sculpt and Weight Paint modeAntonioya
The transform tried to calculate the multiframe falloff, but there was not any stroke to do that.
2018-08-01Merge branch 'master' into blender2.8Campbell Barton
2018-08-01Cleanup: remove unused array memberCampbell Barton
2018-08-01RNA: add space_type to toolCampbell Barton
2018-08-01Keymap: use Q key for quick menu in gpencil modeCampbell Barton
Note, the keys for changing line display are now more obscure (Shift-Q, Shift-Alt-Q), and might be changed.
2018-08-01Merge branch 'master' into blender2.8Campbell Barton
2018-08-01Cleanup: declare vars or make staticCampbell Barton
2018-08-01Merge branch 'master' into blender2.8Campbell Barton
Move 'View3D.flag3' options into 'gp_flag'.
2018-08-01DNA: remove View3D.flag3Campbell Barton
Having 'flag, flag2, flag3' is getting out of hand especially when we support increasing the size of types. Make flag2 into an int. Note, this looses the 'show world' option, but it's not such an important setting.
2018-07-31KnifeTool: Use GPUBatch API instead of IMM to fix buffer overflow issueClément Foucault
This also include a small optimisation (remove of a double loop and half of the memory allocation for hit points) This should fix T55946 Crash using knife tool on mesh with large number of vertices. Tried with a 500K vert suzanne and it seems fine.
2018-07-31Fix crash when rendering viewport within another areaClément Foucault
This also Fix T55574 Crash on sequencer preview
2018-07-31GPUFrameBuffer: Put active framebuffer in GPUContextClément Foucault
instead of being ThreadLocal and leading to incorrect usage. We still enforce no framebuffer when changing context. We can lift this restriction later.
2018-07-31GPU: Replace malloc/calloc/realloc/free with MEM_* counterpartClément Foucault
2018-07-31Fix set_pixel overflow in fill brushAntonioya
The value of the index was above the size of image
2018-07-31Fix: Motion Paths were still visible after clearing themJoshua Leung
After clearing motion paths from objects, those objects needed to be tagged for copy on write so that the copied data (i.e. viewport) recieve the changes (i.e. removed paths) Reported by Hjalti
2018-07-31UI: Grease Pencil Simplify tweaksPablo Vazquez
Single-column layout and tweaks to tooltips.
2018-07-31Change Brush smooth factor to 0.1 by defaultAntonioya
The old values were too high.
2018-07-31Set overlay default valuesAntonioya
2018-07-31Enable ghost onion skin by defaultAntonioya
This option was changed by error when implement annotations.
2018-07-31Fix grease pencil line toggleCampbell Barton
Replace with generic context toggle operator.
2018-07-31Fix T55718: Blender 2.8 crashes when converting to Curve from Mesh.Bastien Montagne
We only want to care about runtime.mesh_orig if… data is indeed a Mesh! ;)
2018-07-31UI: Grease Pencil Onion Skin minor tweaksPablo Vazquez
Avoid double label for same properties in single-column. Onion Skinning: Group custom colors together, and frame before/after together. Small changes to tooltips.
2018-07-31Fix T56170: Fake dependency cycle in new depsgraph + interleaved armature ↵Sergey Sharybin
update + proxy Make proxy copy result more atomic operation.
2018-07-31Fix memory leak in DRW_cache_gpencil_axes_getAntonioya
The Batch was created using old function without GPU_BATCH_OWNS_VBO and the batch was not removed from memory
2018-07-31Cleanup: use static variablesCampbell Barton
2018-07-31Cleanup: Fix weird comparisonsAntonioya
2018-07-31Cleanup: Remove overflow array elementAntonioya
2018-07-31Fix assert when load file with shading enabledAntonioya
Credits for this fix goes to Clément Foucault.
2018-07-31Cleanup: style, duplicate includesCampbell Barton
2018-07-31Fix crash opening .blend files with palettes.Brecht Van Lommel
Palettes were incorrectly set as having animation data.
2018-07-31Cleanup: fix compiler warnings.Brecht Van Lommel