YimingWu ChengduLittleA
  • Joined on 2014-05-03
YimingWu created pull request blender/blender#128116 2024-09-25 14:28:31 +02:00
WIP: Fix #128079: Add vflag to GPv3 shader
YimingWu created branch fix-128079 in ChengduLittleA/blender 2024-09-25 14:28:09 +02:00
YimingWu pushed to fix-128079 at ChengduLittleA/blender 2024-09-25 14:28:09 +02:00
cfcbfcbca4 WIP: Fix #128079: Add vflag to GPv3 shader
23cd299ba7 GPv3: Selection support in Sculpt mode
b74dfa8cfc Build: Changes for make deps to work on Linux arm64 again
f068b6c6d4 Fix: Wrong make deps xml2 library install on Linux and macOS
0c9ef75df8 Fix #127976: Actions created via Python can't be used in action constraints
Compare 10 commits »
YimingWu commented on issue blender/blender#128089 2024-09-25 13:24:12 +02:00
Blender freezes system when unhiding all objects

EEVEE Next uses the integrated GPU which makes it insanely laggy and borderline unusable

Apparently you need to force blender to run on your discrete video card one way or another.

Your…

YimingWu commented on issue blender/blender#128079 2024-09-25 13:05:06 +02:00
Grease pencil stroke direction overlay missing on 4.3 (GPv3) and on Mac 4.2

🤔 since v3 uses particle shader for edit mode itself, the stroke direction should overlay just fine. I think it's just missing a draw call somewhere. Checking.

YimingWu commented on issue blender/blender#127847 2024-09-25 13:02:54 +02:00
Blender 4.2.2 (snap package) became slow and laggy on Ubuntu 22.04.5 LTS

@BenoitGreant hi! the system info file shows that blender is using software GL to render stuff, hence it's slow.

renderer:	'llvmpipe (LLVM 15.0.7, 256 bits)'
vendor:		'Mesa'
version:	'4.5…
YimingWu commented on issue blender/blender#128104 2024-09-25 09:46:00 +02:00
"Tweak" selection permanently enabled

Apparently broken by 23cd299ba7e039e25a2b2f7107728ed010846808 @LukasTonne

YimingWu commented on issue blender/blender#128104 2024-09-25 09:11:19 +02:00
"Tweak" selection permanently enabled

Will bisect

YimingWu commented on issue blender/blender#128104 2024-09-25 09:02:38 +02:00
"Tweak" selection permanently enabled

Can confirm as well on linux

YimingWu commented on issue blender/blender#128102 2024-09-25 07:59:17 +02:00
Geometry Nodes: Integer Math division has only float precision

Looks like division in new integer math are done via math::safe_divide(float(a), float(b)). I guess if we really need a integer version of this safe_divide instead of converting to float in…

YimingWu commented on issue blender/blender#128101 2024-09-25 07:52:39 +02:00
Blender 4.2 crashes and won't even start until a windows restart.

Hi there, a blender.crash.txt might be useful. Also, try starting blender with blender_debug_gpu.cmd and blender_debug_gpu_workaround.cmd and upload the log they spit out.

Blender crash…

YimingWu commented on issue blender/blender#128089 2024-09-25 05:47:14 +02:00
Blender freezes system when unhiding all objects

so maybe a Hyprland Issue

It could be possible. You could try Gnome/Xfce/Kde and see if their compositor has this kind of problem. Crash log shows it crashed in a boundbox calculation which…

YimingWu commented on issue blender/blender#128078 2024-09-25 05:41:15 +02:00
Grease Pencil conversion animation issues

After fiddling with it for a bit, looks like I can get the id_root thing correctly report GREASEPENCIL_V3 by adding such AnimDataCovnerter after BKE_animdata_copy_in_lib in `legacy_gpencil_…

YimingWu commented on issue blender/blender#128078 2024-09-25 05:16:26 +02:00
Grease Pencil conversion animation issues

Will try take a look

YimingWu commented on issue blender/blender#128085 2024-09-25 05:06:54 +02:00
Shadow breaks with linked duplicate

I am able to actually reproduce this in 4.2 and 4.3, but if I zoom in/out a few times past the position where the artifact is visible, then it's no longer there even when I return to the same…

YimingWu commented on issue blender/blender#128089 2024-09-25 04:58:53 +02:00
Blender freezes system when unhiding all objects

Can't reproduce on linux with nvidia 4070.

Note that you are using nvidia-open-dkms driver, there could be stability issues with the new "open source" drivers, try installing a proprietary…

YimingWu commented on issue blender/blender#128079 2024-09-25 04:50:50 +02:00
Grease pencil stroke direction overlay missing on 4.3 (GPv3) and on Mac 4.2

Can confirm that in 4.3 stroke direction overlay (the green/red dot) is missing. I guess this is overlooked when migrating to GPv3 for 4.3.

Not sure about the situation for 4.2 on Mac.…

YimingWu commented on issue blender/blender#127847 2024-09-25 04:40:01 +02:00
Blender 4.2.2 (snap package) became slow and laggy on Ubuntu 22.04.5 LTS

@BenoitGreant try to make sure your blender is actually running on your discrete graphics card, and not a virtual software OpenGL driver (You can see that using Help > Save System Info). It's best…

YimingWu commented on issue blender/blender#127492 2024-09-25 04:23:53 +02:00
Line art Edge Marks data isn't kept with Separate Geometry Node.

I may work on it. That patch doesn't seem to be that complex, maybe we are able to keep freestyle edge mark this way.

YimingWu commented on pull request blender/blender#127895 2024-09-24 15:04:50 +02:00
Fix #127872: Expose image undo calls to python.

I made a new PR #128075 using a different approach and there's no need to use this two-call approach.