We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently updates to the frame buffer pain the pixels individually even though the painting can be expressed by a single line.
We should make a single line call with the two coordinates reducing updates and improving performance.
https://docs.micropython.org/en/latest/library/framebuf.html#framebuf.FrameBuffer.line
The text was updated successfully, but these errors were encountered:
I'm not 100% sure that Bresenham's line algorithm will be more performant, but it's easy enough to test. https://github.com/adafruit/micropython-adafruit-framebuf/blob/master/framebuf.py#L110
Sorry, something went wrong.
No branches or pull requests
Currently updates to the frame buffer pain the pixels individually even though the painting can be expressed by a single line.
We should make a single line call with the two coordinates reducing updates and improving performance.
https://docs.micropython.org/en/latest/library/framebuf.html#framebuf.FrameBuffer.line
The text was updated successfully, but these errors were encountered: