From b5aa14b4eff2749d7c1e069c7f3bd7ce6032c201 Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Tue, 9 Feb 2021 22:04:00 -0600 Subject: [PATCH] initial commit --- lib/ingui.onyx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lib/ingui.onyx diff --git a/lib/ingui.onyx b/lib/ingui.onyx new file mode 100644 index 0000000..e41bc36 --- /dev/null +++ b/lib/ingui.onyx @@ -0,0 +1,15 @@ +// The goal of the onyx-imgui library is to provide a simple and fast immediate mode graphical +// user interface library to be used in a webbrowser with WASM and WebGL. This library will +// make prototyping applications faster and easier, and will make more complicated applications +// doable without a ton of code. + +// Several things need to be developed: +// - Immediate mode renderer +// - TTF file loading and prerendering to a texture map +// - More things I can't think of at the moment + +// I don't want to plan this too much. I want to just dive in and get working on it. + +package imgui + + -- 2.25.1