M.Sz.
M.Sz.
Nope, i think this project is dead or something(?) i just abendoned my idea as it wasn't really important for me tbh.
> I'd love to add ebiten support to giu. Sounds really cool! Go ahead! > Mainly because I do not understand everything happening in Backend.go of giu -yet. Me too......
awesome! thank you! I can help with implementing that in cimgui-go (I was just a bit lazy and didn't do that earlier)
@theaino @ioxenus could you check if its somehow better now? I think that #1032 and #1036 might have changed something here.
```console panic: cimgui-go/internal.Pool: Allocate: Out of space! This means that you attempt to allocate too many callbacks for immarkdown.MarkdownLinkCallback. There are several possible solutions: - You forgot to call Clear()...
I did an experiment: ```diff diff --git a/Markdown.go b/Markdown.go index 0f55f16..ee59b66 100644 --- a/Markdown.go +++ b/Markdown.go @@ -1,6 +1,7 @@ package giu import ( + "fmt" "image" "image/color" "net/http" @@...
I ran the demo with profiler. Interessting thing is that we have a cgo call that consumes quite a lot of cpu time. I'll have to take a closer look...
https://github.com/AllenDang/cimgui-go/pull/428 should make progress on this
Could you guys try this? ```diff diff --git a/mainthread_windows.go b/mainthread_windows.go index e38db0d..4eade0a 100755 --- a/mainthread_windows.go +++ b/mainthread_windows.go @@ -3,10 +3,16 @@ package giu +import "runtime" + +func init() { +...