Testing imgui 1.92 on ngscopeclient, there's a bunch of breaking changes related to font handling.
Diff so far is just over 500 lines and I'm not done. It's straightforward, but a lot of stuff to refactor.
Update pushed. We use some now-deprecated functions that might cause scaling issues that I need to test later on but this is closer to where I want.
Next fix will be making imgui-node-editor use correct font rendering when zoomed.
@azonenberg When you say scaling issues, is that about dpi/font scaling or some more general scaling? (I realize that imgui-node-editor has more general scaling, but outside of that). Curious what is new im imgui!
@breakin dpi scaling but also more generally fonts no longer have a size associated with them, you specify a size and things are supposed to just work.
Imgui-node-editor upstream hasn't been updated in a while, my local fork compiles fine with the new imgui but the fonts still look fuzzy when zoomed so i gotta investigate how to fix that
@azonenberg @breakin I believe node-editor has been scaling vertices in the drawlist, for it to work you would see to request a different rasterizer density. There’s an internal API for that. Best to ask Thedmd as he would know too.