May 14, 2021, 15:13 (GMT) |
Merge branch 'master' into cmp-full-frame |
May 14, 2021, 15:10 (GMT) |
Fix comment formatting |
May 14, 2021, 14:52 (GMT) |
Use pthread_signals and atomic counter |
May 14, 2021, 14:49 (GMT) |
Cleanup: use enum types for screen direction variables The term direction was used in 3 different ways in screen editing code, making it hard to follow: - 0-3 for as magic numbers mapped to [west,north,east,south]. - `h`, `v` characters for [horizontal,vertical] axes. - Cycle direction SPACE_CONTEXT_CYCLE_PREV, SPACE_CONTEXT_CYCLE_NEXT The following changes have been made: - Add `eScreenDir` for [west,north,east,south], use variable name `dir`. - Add `eScreenAxis` for [horizontal,vertical] values, use variable name `dir_axis`. - Add `eScreenCycle` for existing enum `SPACE_CONTEXT_CYCLE_{PREV/NEXT}`. - Add macros `SCREEN_DIR_IS_VERTICAL(dir)`, `SCREEN_DIR_IS_HORIZONTAL(dir)`. Replacing `ELEM(dir, 1, 3)`, `ELEM(dir, 0, 2)`. - Move `ED_screen_draw_join_highlight`, `ED_screen_draw_split_preview` to `screen_intern.h`. Reviewed By: Severin Ref D11245 |
May 14, 2021, 14:40 (GMT) |
LineArt: Custom UI for adding GP object. This allows extra options (in-front and stroke order) to be shown when adding line art kind of grease pencil object. Reviewed by: Antonio Vazquez (antoniov) Diff: https://developer.blender.org/D11130 |
May 14, 2021, 14:36 (GMT) |
PyAPI: use iterators for ID property methods (keys, values & items) - Matches changes in Python 3.x dictionary methods. - Iterating now raises a run-time error if the property-group changes size during iteration. - IDPropertyGroup.iteritems() has been removed. - IDPropertyGroup View & Iterator types have been added. - Some set functionality from dict_keys/values/items aren't yet supported (isdisjoint method and boolean set style operations). Proposed as part of T85675. |
May 14, 2021, 14:01 (GMT) |
Nodes: fix connecting wrong sockets when inserting node Differential Revision: https://developer.blender.org/D11231 |
May 14, 2021, 13:58 (GMT) |
Merge branch 'usd-importer-T81257-merge' of https://gitlab-master.nvidia.com/omniverse/blender into nv-usd-importer |
May 14, 2021, 13:02 (GMT) |
Fix merge-related error |
May 14, 2021, 12:56 (GMT) |
Create ExecutionModel classes to reduce complexity |
May 14, 2021, 12:36 (GMT) |
Merge branch 'master' into temp-xr-actions-D9124 |
May 14, 2021, 12:32 (GMT) |
Update with changes from D10942 Mainly cleanup-related but also adds wmXrPose and wmXrActionState structs to replace float[7] and void* uses, respectively. |
May 14, 2021, 12:30 (GMT) |
Fix RNG_TYPE_LEN value |
May 14, 2021, 11:45 (GMT) |
Merge branch 'blender-v2.93-release' |
May 14, 2021, 11:43 (GMT) |
Fix T87417: crash when evaluating geo nodes without window manager Differential Revision: https://developer.blender.org/D11240 |
May 14, 2021, 11:15 (GMT) |
LineArt: Use array instead of array for ba->linked_edge |
May 14, 2021, 09:27 (GMT) |
Merge branch 'blender-v2.93-release' |
May 14, 2021, 09:25 (GMT) |
Fix memory leak in IDPropertyGroup.pop() When popping ID-property groups/arrays, ID-property was removed but not freed. Now the value is converted to a native Python type and freed. |
May 14, 2021, 09:23 (GMT) |
Geometry Nodes: use texture socket in Attribute Sample Texture node There is a new Texture data-block socket that we can use in Geometry Nodes now. This commit replaces the texture property of a node and gives it a texture input socket instead. That increases flexibility. The texture socket still has some limitations that will be lifted in the next couple of days (e.g. it's not supported by the switch node and cannot be exposed the a modifier yet). Differential Revision: https://developer.blender.org/D11222 |
Revision 8d1b300 by Sybren A. Stüvel (asset-browser, asset-browser-poselib, temp-pose-flipping-fix-attempt) May 14, 2021, 09:23 (GMT) |
Merge remote-tracking branch 'origin/master' into asset-browser-poselib |
|
|
|


Master Commits
MiikaHweb | 2003-2021