Immediate mode UI library
- C 98%
- GLSL 1.9%
- Makefile 0.1%
| data | ||
| src | ||
| .clangd | ||
| LICENSE | ||
| Makefile | ||
| README.md | ||
kiu
kiu is an immediate mode UI library. It's written from scratch in C, and offers exceptional performance.
It's still work in progress, but the layout algorithm is 90% done.
Usage example
#include "kiu.h"
#include "windowing.h"
i32 main() {
arena frame_arena = {0};
kiu_initialize(500, 500, &frame_arena);
while (window_opened()) {
kiu_text("Hello world!");
kiu_next_frame();
arena_reset(&frame_arena);
}
arena_free(&frame_arena);
window_terminate();
}