I am trying to apply VGLITE to my code, based on LVGL on RT1176. I am running the demo benchmark.
When I set:
#define LV_USE_DRAW_SW 1
#define LV_USE_DRAW_VGLITE 0
the rendering is fine.
When I enable VGLITE
#define LV_USE_DRAW_SW 0
#define LV_USE_DRAW_VGLITE 1
the letters are destroyed, they appears as alien fonts, even if in some of the frames these are correctly rendered. Modeover when VGLITE is enabled the demo hangs on scene 14.
From where can I start to investigate?