[bug] Freeze in the main loop after loading an embedded font file and use it as the default font
Closed this issue ยท 4 comments
What happend?
My Goal is to display this kind of emoji "๐ซ๐โฑ๏ธ๐๐๐๐๐โก๏ธ๐๐จ๐ฎ๐๏ธโ๏ธ๐ฉ๐๏ธ๐๐ง๐โฝ๐๐ฅ๐ ๏ธ๐๐ก๏ธ๐๐ข๐ก
I load an embedded file, set as default, and in the main loop, the app freeze.
It works in debug in vscode but not in release
version used:
github.com/AllenDang/cimgui-go v0.0.0-20240611070805-39b5aa2438db
github.com/AllenDang/giu v0.8.1
Code example
main.go
//go:embed seguiemj.ttf
var embeddedFonts embed.FS
func loadFonts() {
// Load font
fontPath := "seguiemj.ttf"
fontSize := float32(15)
fontData, err := embeddedFonts.ReadFile(fontPath)
if err != nil {
log.Fatalf("Failed to read embedded font file: %v", err)
}
giu.Context.FontAtlas.AddFontFromBytes(fontPath, fontData, fontSize)
giu.Context.FontAtlas.SetDefaultFont(fontPath, fontSize)
}
To Reproduce
call loadFonts before wnd.Run(loop) (not in debug)
it should freeze
Version
(latest)
OS
windows 10, go version go1.22.0 windows/amd64
@scorpheus its always the problem unfortunately, but I thinkk its a good time to fix this now ๐
Could you please attach your font file or create a github repo with your example project? (it should be easier to debug then)
simple_test.zip
After making this simple test, I saw an old reference to fyne in my project, it was the culprit.
just add widget.BaseWidget
from "fyne.io/fyne/v2/widget"
and the app freeze.
But only if you load a font.
if you comment loadFonts, the app is not freezing.
if you remove fyne, it works
well, unfortunately I can't say why using fyne along with giu doesn't work.
I suppose this is something related to glfw (both fyne and giu may use it) and I suppose doing it at the same time may not be a good idea.
Not a good idea indeed,
Avoid to use fyne and load font at the same time and everything is working ;)