From 337f4916e5c5ca057b685331ba183a7733c93ab3 Mon Sep 17 00:00:00 2001 From: Mohammed Alyousef Date: Sat, 27 Jul 2024 20:54:58 +0300 Subject: [PATCH] update readme --- README.md | 1 + softbuf/README.md | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 softbuf/README.md diff --git a/README.md b/README.md index b112b82..2ad1cb2 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,7 @@ The current demos include: - 🏜️ cairo-demo: Use cairo for custom drawing inside fltk widgets - 📍 glyphmap: Maps glyphs (specifically font icons) to their unicode codepoint. - 📟 terminal: A minimal terminal emulator. +- 🎞️ softbuf: Use the softbuffer crate to draw using native graphics api's. --- diff --git a/softbuf/README.md b/softbuf/README.md new file mode 100644 index 0000000..74c8f93 --- /dev/null +++ b/softbuf/README.md @@ -0,0 +1,3 @@ +# softbuf + +An example showing how to integrate fltk with the softbuffer crate (for crossplatform drawing using the platform's native graphics api) via the raw-window-handle traits.