Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - skyl4nk

Pages: [1]
1
PS Vita / [RELEASE] lvgl port
« on: June 09, 2020, 12:59:20 AM »
lvgl-vita
yeah, it is a port of this lvgl for the psvita with touch support



Example
main.c

Code: [Select]
#include <lv_vita.h>
#include <lv_examples.h>

int main(int argc, char *argv[]) {
  lv_vita_init();
  lv_demo_benchmark();
 
  while(1) {
    lv_vita_loop();
  }

  return 0;
}

CMakeLists.txt
Code: [Select]
add_subdirectory(vendor/lvgl)
target_link_libraries(${PROJECT_NAME} lvgl)

FAQ
>i don't know how to use
learn c and cmake


Source code: https://github.com/skyl5nk/lvgl-vita
My twitter: https://twitter.com/skyl4nk

Pages: [1]