Florian Rupprecht
Florian Rupprecht
I have begun working on the vscode changes which are more involved than I anticipated, but help me a lot to generalize the httpgd-js implementation. I will create a WIP...
Thanks for opening the issue. I think this is caused by the helvetica font not being installed on the remote machine. I will see if I can find a workaround...
Thank you for the response. That's great news!
How is it going @octobanana ? Any update when the next version will release?
Very cool. I hope the vulnerability won't get patched before we can flash LT. The article mentions its been fixed in new stock since their disclosure Feb 12th 2022, but...
With [httpgd](https://github.com/nx10/httpgd) I had massive performance improvements after switching from the stringstream formatting to [fmt](https://github.com/fmtlib/fmt). I think most of the performance difference in httpgd comes from that. It's currently more...
Interesting, yes I think instruction cache misses could be a part of it. I am collecting all the draw call data in a vector and render them in one go.
Sure, `HttpgdDev.cpp` contains all the graphics device callbacks and creates `DrawCall` objects. These are defined in `DrawData.h` (rendering logic is in `DrawData.cpp`). I save them on the heap in a...
That does make a lot of sense. I just re-ran the benchmark with the current development version of svglite. httpgd actually is now only slightly faster, as it seems to...
Must be caused by my setup then. I will look into integrating the benchmark in the CI for it to be more consistent. Thanks for the tip! I will do...