From 0da457daee4b30af58f1b651870f396cf9b94bc4 Mon Sep 17 00:00:00 2001 From: Folling <23152870+Folling@users.noreply.github.com> Date: Mon, 9 Dec 2019 19:13:59 +0100 Subject: [PATCH] Changed DirectX9 wording in DirectX11 example --- 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 684ce30..4d7a98f 100644 --- a/Image-Loading-and-Displaying-Examples.md +++ b/Image-Loading-and-Displaying-Examples.md @@ -210,7 +210,7 @@ bool ret = LoadTextureFromFile("../../MyImage01.jpg", &my_texture, &my_image_wid IM_ASSERT(ret); ``` -Now that we have an DirectX9 texture and its dimensions, we can display it in our main loop: +Now that we have an DirectX11 texture and its dimensions, we can display it in our main loop: ``` ImGui::Begin("DirectX11 Texture Test"); ImGui::Text("pointer = %p", my_texture);