You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The most elusive and difficult to track down bug is an EXCEPTION_ACCESS_VIOLATION which sometimes happens and sometimes not with the exact same code. I have been trying to figure out which ImPlot command is causing it, but when it starts happening it will happen consistently (i.e. restart REPL and run the same code) for even the case of
CImGui.Begin("Embedding")
CImGui.SetWindowFontScale(1.0f0)
ImPlot.SetNextPlotLimits(-2,2,-2,2, ImGuiCond_Always)
if ImPlot.BeginPlot("##scatter", "first dimension", "second dimension")
# Plot points in the first category# ImPlot.PushStyleColor(ImPlotCol_MarkerFill, CImGui.HSV(242/360, 40/100, 90/100))# ImPlot.PushStyleColor(ImPlotCol_MarkerOutline, CImGui.HSV(242/360, 50/100, 90/100)) # ImPlot.PlotScatter(features_all[1, :], features_all[2, :])
ImPlot.EndPlot()
end
CImGui.End()
where features_all::Matrix{Float64}. The crash happens even if I comment out the lines as above.
The EXCEPTION_ACCESS_VIOLATION crashed the REPL in VS Code, and I am not able to copy and paste the text of the error. I am able to take a screenshot before it crashes however:
The text was updated successfully, but these errors were encountered:
I've been running into some crashes, some of which I can reliably reproduce and others which are very elusive and random.
I'm using the following version of Julia
with
The simplest errors to reproduce occur with
implot_demo.jl
.Launch the demo with:
include(joinpath(pathof(ImPlot), "..", "..", "demo", "implot_demo.jl"))
Clicking on the collapsing header for 'Custom Data' one obtains the following error:
Clicking on the
Realtime Plot
collapsing header one obtains the following:The most elusive and difficult to track down bug is an
EXCEPTION_ACCESS_VIOLATION
which sometimes happens and sometimes not with the exact same code. I have been trying to figure out which ImPlot command is causing it, but when it starts happening it will happen consistently (i.e. restart REPL and run the same code) for even the case ofwhere
features_all::Matrix{Float64}
. The crash happens even if I comment out the lines as above.The
EXCEPTION_ACCESS_VIOLATION
crashed the REPL in VS Code, and I am not able to copy and paste the text of the error. I am able to take a screenshot before it crashes however:The text was updated successfully, but these errors were encountered: