Yes, you can freely mix tgx with any other library since it does not access any peripheral hardware. The only thing tgx does is to write inside a tgx:Image which is basically a just buffer in RAM...
Here is a very...
Hi,
Yes, the tgx library is independent of the screen (an driver) used. All the library does is creating the graphics inside a memory framebuffer and then you choose which ever method you prefer to display the...
Hello,
I have seen report about this error before: https://github.com/vindar/tgx/issues/1
I think the problem may be that you are using an older version of Teensyduino. Can you try installing the latest...
@WMXZ
Yes indeed, but I was hoping there was some secret ARM instruction for parallel multiplication that the compiler was not aware of... Apparently not.
Hi,
I just did a quick benchmark of CMSIS arm_mat_mult_f32() for multiplying 4x4 float32 matrices on a T4. In my test setup, the function is about 7% faster than a hard-coded matrix multiplication (both matrices...
Hi everyone,
I am bumping this thread to let you know that I have made improvements to my 2D/3D library. In particular, concerning the 3D part of the lib:
Added new texturing modes (wrap / clamp to edges).
...