-
Notifications
You must be signed in to change notification settings - Fork 24
Begin polishing up bitmap font #3
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
Conversation
This now depends on adafruit/circuitpython#1535 |
for i in range(rounded_x): | ||
val = (bits >> ((rounded_x-i-1)*8)) & 0xFF | ||
scratch_row[i] = val | ||
current_info["bitmap"]._load_row(current_y, scratch_row[:bytes_per_row]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this looks like an added _load_row
, which was deprecated above?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This code doesn't work so I'm ok with it being there. I wanted to put it in the repo just in case someone wanted to pick it up and finish it.
tested! so far so good... |
No description provided.