From b89414ef2ecb0d815ac0dc8b00a9c18b491faac8 Mon Sep 17 00:00:00 2001 From: Pascal H Date: Mon, 5 Apr 2021 09:26:13 +0200 Subject: [PATCH 1/2] Fix typo in GFX examples --- README.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index 573e852..315b541 100644 --- a/README.markdown +++ b/README.markdown @@ -102,8 +102,8 @@ Examples for the gfx backend are under the imgui-gfx-examples directory. cd imgui-gfx-examples cargo test -cargo run --example hello_world -cargo run --example test_window +cargo run --example gfx_hello_world +cargo run --example gfx_test_window ``` Note to Windows users: You will need to use the *MSVC ABI* version of the Rust From 8d009b3217dd55ae7a066d696ac0015eb3916590 Mon Sep 17 00:00:00 2001 From: Pascal H Date: Mon, 5 Apr 2021 09:49:42 +0200 Subject: [PATCH 2/2] Fix typo error in README --- imgui-gfx-examples/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imgui-gfx-examples/README.md b/imgui-gfx-examples/README.md index f42eb04..0e6f710 100644 --- a/imgui-gfx-examples/README.md +++ b/imgui-gfx-examples/README.md @@ -1,4 +1,4 @@ # `imgui-gfx-examples` -- Run with OpenGL backend: `cargo run --example hello_gfx` -- Run with DirectX backend: `cargo run --example hello_gfx --features directx --no-default-features` +- Run with OpenGL backend: `cargo run --example gfx_hello_world` +- Run with DirectX backend: `cargo run --example gfx_hello_world --features directx --no-default-features`