From 2571171fd9fc5b757a065c907992fdae8c7643fa Mon Sep 17 00:00:00 2001 From: omar Date: Sat, 29 Jul 2023 17:03:52 +0200 Subject: [PATCH] Updated Image Loading and Displaying Examples (markdown) --- Image-Loading-and-Displaying-Examples.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Image-Loading-and-Displaying-Examples.md b/Image-Loading-and-Displaying-Examples.md index f303972..352b9fb 100644 --- a/Image-Loading-and-Displaying-Examples.md +++ b/Image-Loading-and-Displaying-Examples.md @@ -598,6 +598,8 @@ ImGui::End(); We will here use [stb_image.h](https://github.com/nothings/stb/blob/master/stb_image.h) to load images from disk. +Note that since 2023/07/29, our examples Vulkan application are creating minimum-sized descriptor pools. You'll need to increase pool sizes in examples's main.cpp to fit extra descriptors. + **THIS IS ONE WAY TO DO THIS AMONG MANY, and provided for informational purpose. Unfortunately due to the nature of Vulkan, it is not really possible to provide a function that will work in all setups and codebases.** Add at the top of the Vulkan example main.cpp file after the `check_vk_result()` function: