From fb6aa53235f51d8f72215195a3c063ec987dfb6b Mon Sep 17 00:00:00 2001 From: dbr Date: Thu, 5 Jan 2023 12:00:38 +1030 Subject: [PATCH] Linkify crate names --- README.markdown | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.markdown b/README.markdown index 92eeda8..9bbe387 100644 --- a/README.markdown +++ b/README.markdown @@ -27,15 +27,15 @@ ui.window("Hello world") The core of imgui-rs consists of: -- `imgui`: High-level safe API -- `imgui-sys`: Low-level unsafe API (automatically generated) +- [`imgui`](./imgui): High-level safe API +- [`imgui-sys`](./imgui-sys): Low-level unsafe API (automatically generated) Next, we provide two example renderers, and two example backend platform implementations: -- `imgui-winit-support`: Backend platform implementation that uses the `winit` crate -- `imgui-sdl2-support`: Backend platform using SDL2 -- `imgui-glow-renderer`: Renderer implementation that uses the `glow` crate -- `imgui-glium-renderer`: Renderer implementation that uses the `glium` crate +- [`imgui-winit-support`](./imgui-winit-support): Backend platform implementation that uses the `winit` crate +- [`imgui-sdl2-support`])(./imgui-sdl2-support): Backend platform using SDL2 +- [`imgui-glow-renderer`](./imgui-glow-renderer): Renderer implementation that uses the `glow` crate +- [`imgui-glium-renderer`](./imgui-glium-renderer): Renderer implementation that uses the `glium` crate Each of these contain an `examples` folder showing their usage. Check their respective `Cargo.toml` to find compatible versions (e.g