Aras Pranckevicius aras_p
Aras Pranckevicius merged pull request blender/blender#128752 2024-10-08 19:07:01 +02:00
IMB: Add function to scale image into a new image, use that instead of duplicate+scale
Aras Pranckevicius pushed to main at blender/blender 2024-10-08 19:07:00 +02:00
7dad51a724 IMB: Add function to scale image into a new image, use that instead of duplicate+scale
Aras Pranckevicius pushed to imb_scale_dst at aras_p/blender 2024-10-08 18:26:20 +02:00
656fbd7cc5 Code review
Aras Pranckevicius created pull request blender/blender#128752 2024-10-08 12:58:56 +02:00
IMB: Add function to scale image into a new image, use that instead of duplicate+scale
Aras Pranckevicius pushed to imb_scale_dst at aras_p/blender 2024-10-08 12:57:46 +02:00
270a9bb349 IMB: Add function to scale image into a new image, use that instead of duplicate+scale
6bd8871409 Merge branch 'blender-v4.3-release'
3dd20a64f0 Fix #128633: Image gizmo missing update for the Properties Editor
42f171c216 Null check in screen_ctx_grease_pencil_data
82ab7ceba6 BLI_fileops: move home directory access to BLI_fileops
Compare 10 commits »
Aras Pranckevicius created branch imb_scale_dst in aras_p/blender 2024-10-08 12:57:46 +02:00
Aras Pranckevicius commented on pull request blender/blender#122804 2024-10-08 09:10:01 +02:00
USD: Adding an option to convert the scene's meters per unit value

This whole units thing reminded me of blender/blender#128337 which also attempts to add units dropdown to another I/O type. Maybe it would be good to unify that…

Aras Pranckevicius commented on pull request blender/blender#128709 2024-10-08 09:06:32 +02:00
Cleanup: GPv3: Remove unused BKE functions from GPv2

13kloc gone? Nice! :)

Aras Pranckevicius pushed to main at blender/blender-developer-docs 2024-10-07 11:15:54 +02:00
ae30a383d0 Update docs/release_notes/4.4/sequencer.md
Aras Pranckevicius commented on issue blender/blender#128541 2024-10-03 19:52:58 +02:00
Obj with rational bsplines not imported correctly

@matteolegna-2 yeah, only very limited set of curve types are supported right now. I know that @Germain-Le-Chapelain was a WIP PR to improve it in some way here: #117371 but I haven't followed…

Aras Pranckevicius commented on issue blender/blender#128464 2024-10-03 15:11:35 +02:00
Blender VSE suddenly laggy. Lag persists after deleting all strips.

@PratikPB2123 it is a good question however, how that many "broken" animation drivers ended up there. Maybe some operations within Blender itself create/leak drivers? In the LagTest.blend

Aras Pranckevicius commented on pull request blender/blender#126660 2024-10-03 12:00:28 +02:00
VSE: Add text alignment feature

"Text Alignment" sounds good to me too

Aras Pranckevicius commented on pull request blender/blender#126660 2024-10-03 11:23:48 +02:00
VSE: Add text alignment feature

The compiler can not know/assume that, generally. Inside the loop there's a function call to BLF_glyph_advance and the compiler has no idea whatsoever what it does -- it can very much end up…

Aras Pranckevicius commented on pull request blender/blender#126660 2024-10-03 11:21:00 +02:00
VSE: Add text alignment feature

Ah ok then!

Aras Pranckevicius commented on pull request blender/blender#126660 2024-10-03 11:20:29 +02:00
VSE: Add text alignment feature

Fair! How about just "Horizontal text alignment"?

Aras Pranckevicius suggested changes for blender/blender#126660 2024-10-03 10:42:19 +02:00
VSE: Add text alignment feature

I added a handful of comments that while minor, should perhaps be addressed (the "possible crash on invalid text data" is perhaps the main one, but then some others wrt small performance issues too). Overall very nice!