From 84a7f222ffb77317b7eca4a02e85ffeb8487833e Mon Sep 17 00:00:00 2001 From: Michael Kutowski Date: Tue, 20 Dec 2022 12:27:23 +0100 Subject: [PATCH] mention fontstash and nanovg in reamde --- vendor/README.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/vendor/README.md b/vendor/README.md index e7d8d4047..bf64933c3 100644 --- a/vendor/README.md +++ b/vendor/README.md @@ -6,9 +6,9 @@ Its use is similar to that of `core:` packages, which would be available in any Presently, the `vendor:` collection comprises the following packages: -## microui +## microui (Port) -A tiny, portable, immediate-mode UI library written in Odin. (Ported from [rxi/microui](https://github.com/rxi/microui).) +A tiny, portable, immediate-mode UI library written in Odin. [rxi/microui](https://github.com/rxi/microui) This package is available under the MIT license. See `LICENSE` for more details. @@ -158,4 +158,12 @@ Includes full bindings. Used in: [bgfx](https://github.com/bkaradzic/bgfx), [Filament](https://github.com/google/filament), [gltfpack](https://github.com/zeux/meshoptimizer/tree/master/gltf), [raylib](https://github.com/raysan5/raylib), [Unigine](https://developer.unigine.com/en/docs/2.14.1/third_party?rlang=cpp#cgltf), and more! -Se also LICENCE in `cgltf` directory itself. \ No newline at end of file +Se also LICENCE in `cgltf` directory itself. + +## nanovg (Port) + +[NanoVG](https://github.com/memononen/nanovg) is a small antialiased vector graphics rendering library for OpenGL. It has lean API modeled after HTML5 canvas API. It is aimed to be a practical and fun toolset for building scalable user interfaces and visualizations. + +## fontstash (Port) + +[Font stash](https://github.com/memononen/fontstash) is a light-weight online font texture atlas builder. It uses stb_truetype to render fonts on demand to a texture atlas.