diff options
| author | Andre Weissflog <floooh@gmail.com> | 2021-02-13 14:59:55 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2021-02-13 14:59:55 +0100 |
| commit | 75734a45574252e1e5373dfff9ba70a33f41a620 (patch) | |
| tree | ad9e4faf9d95769669e0399f9e5d69d30e0e507d | |
| parent | a19f9f1f40a214484bfd420a1050007dea724e7b (diff) | |
mention sokol_nuklear.h in readme and changelog
| -rw-r--r-- | CHANGELOG.md | 5 | ||||
| -rw-r--r-- | README.md | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ac98ad6a..97780a30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ > NOTE: this list will usually only be updated with changes that affect the public APIs +- **13-Fev-2021**: A new utility header [sokol_nuklear.h](https://github.com/floooh/sokol/blob/master/util/sokol_nuklear.h) +has been added which implements a rendering backend for [Nuklear](https://github.com/Immediate-Mode-UI/Nuklear) +on top of sokol_gfx.h. Also see the new sample [nuklear-sapp](https://floooh.github.io/sokol-html5/nuklear-sapp.html). +Many thanks to **@wmerrifield** for the PR! + - **10-Feb-2021**: The breaking API-update has been merged (mainly sokol_gfx.h). Please see [this blogpost](https://floooh.github.io/2021/02/07/sokol-api-overhaul.html) and the updates [sokol samples](https://floooh.github.io/sokol-html5/) for details. @@ -6,7 +6,7 @@ Simple [STB-style](https://github.com/nothings/stb/blob/master/docs/stb_howto.txt) cross-platform libraries for C and C++, written in C. -[**See what's new**](https://github.com/floooh/sokol/blob/master/CHANGELOG.md) (**10-Feb-2021**: big API-breaking update, see the changelog for details) +[**See what's new**](https://github.com/floooh/sokol/blob/master/CHANGELOG.md) (**12-Feb-2021**: new utility header **sokol_nuklear.h**) ## Examples and Related Projects @@ -39,6 +39,7 @@ cross-platform libraries for C and C++, written in C. ## Utility libraries - [**sokol\_imgui.h**](https://github.com/floooh/sokol/blob/master/util/sokol_imgui.h): sokol_gfx.h rendering backend for [Dear ImGui](https://github.com/ocornut/imgui) +- [**sokol\_nuklear.h**](https://github.com/floooh/sokol/blob/master/util/sokol_nuklear.h): sokol_gfx.h rendering backend for [Nuklear](https://github.com/Immediate-Mode-UI/Nuklear) - [**sokol\_gl.h**](https://github.com/floooh/sokol/blob/master/util/sokol_gl.h): OpenGL 1.x style immediate-mode rendering API on top of sokol_gfx.h - [**sokol\_fontstash.h**](https://github.com/floooh/sokol/blob/master/util/sokol_fontstash.h): sokol_gl.h rendering backend for [fontstash](https://github.com/memononen/fontstash) - [**sokol\_gfx\_imgui.h**](https://github.com/floooh/sokol/blob/master/util/sokol_gfx_imgui.h): debug-inspection UI for sokol_gfx.h (implemented with Dear ImGui) |