comex 3197b1e25b nanovg: disable some compiler warnings
Disable all warnings seen on devkitA64 GCC 15.1.0:

- Several false-positive `-Wmisleading-indentation` warnings (the
  indentation is not actually misleading)

- One `-Wuse-after-free` warning, which looks alarming and represents
  very dubious design, but is ultimately harmless (a freed pointer is
  passed to a function that doesn't use it).

- Some `-Wunused-function` warnings in `simd/neon.h`
2025-08-08 14:16:03 -07:00
..

NanoVG for Deko3D

NanoVG is small antialiased vector graphics rendering library. This is a port to deko3d, a low level 3D graphics API targetting the Nvidia Tegra X1 found inside the Nintendo Switch.

Example

An example of using this library can be found here.

License

The library is licensed under zlib license.

Dependencies:

The original nanovg project. Uses stb_truetype for font rendering. Uses stb_image for image loading.