aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kutowski <skytrias@protonmail.com>2022-12-20 12:27:23 +0100
committerGitHub <noreply@github.com>2022-12-20 12:27:23 +0100
commit84a7f222ffb77317b7eca4a02e85ffeb8487833e (patch)
tree50b35722b35c078ec984e61743adbe1bd861f13b
parentd29423c24e654bccaf823a1e14f4dc322c7ec52f (diff)
mention fontstash and nanovg in reamde
-rw-r--r--vendor/README.md14
1 files 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.