-
Notifications
You must be signed in to change notification settings - Fork 9
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
Not an Issue but an Update #3
Comments
Hi Michal, Thanks for the update! It does sound like most of my optimizations would be superfluous on the Teensy; did you end up using the built-in frame buffer? Rendering to this with some sort of GL clone seems like it would work well. The libraries I wrote were mainly optimized for drawing commands with the TFT communications protocol, which would be unnecessary if you were rendering offscreen. Other optimizations, like restricting to less than 256 triangles and vertices, and rendering within a 256x256 region of the screen with fixed-point precision, might also be superfluous. Anyway! Happy to take a look at your library/project. You should publish it and then maybe send a tip to Hackaday to publicize it ( : |
Morning (at least for me) I am still having a problem with trying to use 900 vertices but think that may be memory usage on the T4 side as I still am limited as the program keeps growing :) 256 triangles for a teapot seems to work fine but 552 triangles still a bit much. Unfortunately going to get tied up for about a month or 2 starting next week so not sure how much more time I am going to be able to spend :) |
Hi Michael
Seems like every 6 months I get back to working on the library.
Just want to let you know that I finally got it completely working on the Teensy 4. The last piece I was having problems with was the SHADED_RENDERING_MODE but finally traced that issue down when I decided to use the shaded triangle function in another library I was working. Once that was working made the change to Arduino3d library and now is working beautifully. Have problems with touch set up but that's on me - was fiddling with it :)
Just to let you know there is another library I started playing with called Arduinogl which basically lets you use v1.0 commands to draw 3d objects. It has a limited command set so I expanded it (can never leave anything alone I guess). So since I like both libraries and hate going back and forth been working on combing the two, Just thought I would let you know in case you had any issues with that effort.
Thanks for all your help
Michal.
The text was updated successfully, but these errors were encountered: