-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider WebGL rendering priority. #2
Comments
I took profiling while reading a JS file. Neovim renders whole screen to show the file contents with syntax highlight. Rendering time was from 6830ms to 6860ms so it took 30ms. As conclusion, it seems that decoding msgpack value is main factor. |
Hmm... If the way to profile is correct, improving canvas rendering doesn't improve performance so much. It is better to improve decoding msgpack value (neovim client). |
I already implemented all UI events from neovim. Last task is rendering using pixi.js (WebGL).
At first, I should check canvas rendering is a bottleneck of this app.
The text was updated successfully, but these errors were encountered: