From 09b48c5ba7ff3159a0d5e9d7f378aeaf28839c01 Mon Sep 17 00:00:00 2001 From: gonutz Date: Tue, 31 Jan 2023 14:55:53 +0100 Subject: [PATCH] Fix grammar issue --- Image-Loading-and-Displaying-Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Image-Loading-and-Displaying-Examples.md b/Image-Loading-and-Displaying-Examples.md index db48d0f..06649df 100644 --- a/Image-Loading-and-Displaying-Examples.md +++ b/Image-Loading-and-Displaying-Examples.md @@ -65,7 +65,7 @@ filename = "../MyImage01.jpg"; // Load from parent folder ## About ImTextureId -From the FAQ: "How can I display an image? What is ImTextureID, how does it works?" +From the FAQ: "How can I display an image? What is ImTextureID, how does it work?" Short explanation: - You may use functions such as `ImGui::Image()`, `ImGui::ImageButton()` or lower-level `ImDrawList::AddImage()` to emit draw calls that will use your own textures. Using `ImGui::GetBackgroundDrawList()` you may submit AddImage() calls that are not part of a specific ImGui window but displayed between your background contents and ImGui windows.