Peter Kristensen
Peter Kristensen
Created the first attempt in https://github.com/gowebapi/webidl-bind/pull/11
This can now be resolved if the files are re-generated
@janpfeifer could to re-generate the files? (Or should I create a PR with it?)
Hmm, that could work, but I would have to add a separate go routine to post "refresh" events periodically. To me, that seems a bit of a strange design
This works: ```golang go func() { ticker := time.NewTicker(16 * time.Millisecond) for { select { case
> I think its a design of GLFW and imgui rather than our. Not directly, the waiting for events is specific to cimgui-go's backend: https://github.com/AllenDang/cimgui-go/blob/main/glfw_backend.cpp#L227 ```cpp glfwWaitEvents(); ``` Another oddity...
I just noticed that `glfwSwapBuffers` is being called in a different part of the rendering loop, so the loop is already capped at the display refresh rate, which makes the...
Yeah, I'll have a look at it if I have the time, but I also might be missing something. It looks like @AllenDang wrote it - don't know if they...
Take a look at this section of the readme: https://github.com/twibiral/obsidian-execute-code?tab=readme-ov-file#running-in-preview-
They changed it again?