Where can I find the source code of touchgfx library?
When I want to understand how touchgfx platform works, especially the operation on the framebuffer, I realize there are some functions I could not get the source code e.g. the functions swapFrameBuffers() and tick() below which seems to be defined in a library code. Does ST provide source code for this?
/**
* Has to be called from within the LCD IRQ rutine when the Back Porch Exit is reached.
*
* Has to be called from within the LCD IRQ rutine when the Back Porch Exit is reached.
*/
virtual void backPorchExited()
{
swapFrameBuffers();
tick();
}