Hello,
in plots of large data sets with GLMakie some line segments are missing. This behaviour started from version 0.13.0. I reduced it to the following example:
using GLMakie
# generating data
Δt = 0.02
t_max = 100000.0
t = 0.0:Δt:t_max
f = sin.(2 * π * t)
# plotting data
fig = Figure()
ax = Axis(fig[1,1])
lines!(ax, t, f)
xlims!(ax, t[end] - 1, t[end])
display(fig)
For version 0.13.0 and onwards the resulting figure looks like this:
It would be interesting if anyone has observed similar effects or can reproduce this bug on other hardware. I am using the integrated graphics of a AMD 7950X CPU.