├── .gitignore ├── LICENSE ├── README.md ├── src ├── mnvg_bitcode │ ├── ios.h │ ├── macos.h │ ├── simulator.h │ └── tvos.h ├── nanovg_mtl.h ├── nanovg_mtl.m └── nanovg_mtl_shaders.metal └── tools └── metallib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ollix/MetalNanoVG/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ollix/MetalNanoVG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ollix/MetalNanoVG/HEAD/README.md -------------------------------------------------------------------------------- /src/mnvg_bitcode/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ollix/MetalNanoVG/HEAD/src/mnvg_bitcode/ios.h -------------------------------------------------------------------------------- /src/mnvg_bitcode/macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ollix/MetalNanoVG/HEAD/src/mnvg_bitcode/macos.h -------------------------------------------------------------------------------- /src/mnvg_bitcode/simulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ollix/MetalNanoVG/HEAD/src/mnvg_bitcode/simulator.h -------------------------------------------------------------------------------- /src/mnvg_bitcode/tvos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ollix/MetalNanoVG/HEAD/src/mnvg_bitcode/tvos.h -------------------------------------------------------------------------------- /src/nanovg_mtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ollix/MetalNanoVG/HEAD/src/nanovg_mtl.h -------------------------------------------------------------------------------- /src/nanovg_mtl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ollix/MetalNanoVG/HEAD/src/nanovg_mtl.m -------------------------------------------------------------------------------- /src/nanovg_mtl_shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ollix/MetalNanoVG/HEAD/src/nanovg_mtl_shaders.metal -------------------------------------------------------------------------------- /tools/metallib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ollix/MetalNanoVG/HEAD/tools/metallib --------------------------------------------------------------------------------