cromachina
cromachina
I've identified some hot spots with cProfiler, using about a 3700 x 3400 image with about 13 pixel layers, and several nested groups: ``` 1084353 function calls (1069995 primitive calls)...
Testing some more, the backdrop optimization may not blend correctly, although the rest of the optimizations still seem fine.
I was able to effectively use threading since numpy releases GIL when most of the universal functions are executing. To get the same parallelism benefit from skia-python, it would have...
I should have put this in the setter, not the getter. Fixing that.
Okay, I'll address those in a bit👌
I've identified the direct cause of the issue: `GroupMixin` bbox computation is cached when first accessed, which depends on the visibility of all subsequent children. If visibility changes (or any...
Something that could be improved is adding a way to control the speed of the invoked bindings, as this is something that the Wacom drivers also implement. It would basically...
If you are a maintainer, then you should close it as "wont fix", if you don't want to implement such a change. I have nothing else to add to this...
And here is the wrapper workaround that I suggested above. ```py import asyncio import inspect import dearpygui.dearpygui as dpg dpg.create_context() dpg.create_viewport(title='psd-export', width=600, height=200) dpg.setup_dearpygui() loop = None pending_tasks = set()...
Would it be reasonable to change the configuration schema checker to allow nullable fields to not have to be declared instead of being explicitly set to null?