Aras Pranckevicius aras_p
Aras Pranckevicius commented on pull request blender/blender#125947 2024-08-07 16:16:04 +02:00
Fix #125490: Scene strip incorrectly rendered as solid view.

@iss FYI sequencer render tests on buildbot are crashing after this change merge.

Aras Pranckevicius commented on pull request blender/blender#124333 2024-08-07 16:12:16 +02:00
VSE: Connected Strips
Aras Pranckevicius deleted branch vse_cleanup from aras_p/blender 2024-08-07 15:53:34 +02:00
Aras Pranckevicius merged pull request blender/blender#126021 2024-08-07 15:53:30 +02:00
Cleanup: Make more VSE functions use const arguments where they can
Aras Pranckevicius pushed to main at blender/blender 2024-08-07 15:53:29 +02:00
bcacb01d34 Cleanup: Make more VSE functions use const arguments where they can
Aras Pranckevicius commented on issue blender/blender#126013 2024-08-07 12:39:05 +02:00
Blender Geometry Nodes: PLY Import Node does not import custom Attributes

@ChengduLittleA I could at some point. But overall, the geometry node for file imports is the new GSoC 24 project (just added in #125587), so maybe @Devashish-Lal could look into it first.

Aras Pranckevicius deleted branch mempool_cleanup from aras_p/blender 2024-08-07 10:36:59 +02:00
Aras Pranckevicius merged pull request blender/blender#125966 2024-08-07 10:36:57 +02:00
Cleanup: Remove unused code from BLI_mempool
Aras Pranckevicius pushed to main at blender/blender 2024-08-07 10:36:56 +02:00
69d1e0d9cb Cleanup: Remove unused code from BLI_mempool
Aras Pranckevicius created pull request blender/blender#126021 2024-08-07 10:33:47 +02:00
Cleanup: Make more VSE functions use const arguments where they can
Aras Pranckevicius pushed to vse_cleanup at aras_p/blender 2024-08-07 10:33:16 +02:00
9e136464c6 Cleanup: Make more VSE functions use const arguments where they can
2858c3b287 Link/Append: separate instantiation of loose data from core link/append code
91de9acc61 DRW: Reduce complexity of Draw primitive expansion
12f3e23326 Refactor: Remove SCULPT_active_vert_co_get
b119e1a497 Cycles: Fix potential NaN in normal mapping
Compare 10 commits »
Aras Pranckevicius created branch vse_cleanup in aras_p/blender 2024-08-07 10:33:16 +02:00
Aras Pranckevicius suggested changes for blender/blender#124333 2024-08-07 08:44:44 +02:00
VSE: Connected Strips

Code looks good, I've added some minor comments that should be easy to address.

Aras Pranckevicius commented on pull request blender/blender#124333 2024-08-07 08:43:59 +02:00
VSE: Connected Strips

Currently the icon is still ICON_LINKED from back when this feature was called "Linked strips". Should this be changed, and if so, to which icon

@pablovazquez opinions on what icon to use to…

Aras Pranckevicius commented on pull request blender/blender#124333 2024-08-07 08:38:10 +02:00
VSE: Connected Strips

Would probably be less error prone to introduce a constant for both lines of code, e.g.

Aras Pranckevicius commented on pull request blender/blender#124333 2024-08-07 08:34:02 +02:00
VSE: Connected Strips

Minor: to me probably would read easier if bool changed = false would be moved further below, right before the LISTBASE_FOREACH loop. And the !SEQ_is_strip_connected check would simply return false.

Aras Pranckevicius commented on pull request blender/blender#124333 2024-08-07 08:31:40 +02:00
VSE: Connected Strips

Minor, and probably this is following existing code, but I'm wondering whether the comments for Identifiers, Api callbacks and Flags are much useful here (and in SEQUENCER_OT_disconnect). It is very clear what these function parts are already, without the comments.

Aras Pranckevicius commented on pull request blender/blender#124333 2024-08-07 08:27:56 +02:00
VSE: Connected Strips

What would orig_start be used for? Currently indeed it seems to not be used for anything, so why have it at all?

Aras Pranckevicius commented on pull request blender/blender#124333 2024-08-07 08:26:12 +02:00
VSE: Connected Strips

seq_list argument could be const blender::VectorSet<Sequence *> & I think, no need to copy the whole vector set by value.