Julia crashed, when Makie function was called in multiple threads.
reproduce code:
using GLMakie
# scatter(rand(1000),rand(1000)) # julia will crash without this
tasks = map(1:30) do i
Threads.@spawn scatter(rand(1000),rand(1000))
end
scenes = fetch.(tasks)
display(scenes[1])
the font of the images also has problem.
