Hasan Xorasani

Results 11 comments of Hasan Xorasani

I stilll have this prob on 1.4rc2 on ubuntu 23.04, switched to audacious.

blender's bcon2 dev stage will end this month sep27 i think is the deadline. blender 4 fixes important 3.6bugs. for those of us on older hardware, there's no other choice...

@angavrilov my iGPU has bugs in blender 3.6, https://projects.blender.org/blender/blender/issues/111161 blender 4 fixed those bugs, so i'm stuck with blender 4a, it's very limiting right now but i'm trying to make...

i was looking for the exact same solution! are you trying to have it where you pass a "callback" function to C code which is called later like an async...

I think I prolly just did, https://github.com/svaarala/duktape/issues/2400 I'm in the process of trying it out, I'm still trying to figure out how to iterate over the global duk stash, without...

I just now skimmed through it, it's almost the same method as the one in #2400 I've been trying to integrate libuv in duktape (got it to work finally using...

i just pushed them as global functions in duk and use them like ``` add_callback(some_function); ... on_tick() { process_callbacks(); } ``` in "main" ``` push_c_function("add_callback", add_callback); ... ``` on_tick comes...

to target specific callbacks and delete them without affecting the other callbacks.

@aflin if it's better than libuv then i'll switch over to it, by better i mean tiny, well-maintained and battle-tested. it's good to have alternatives.