From 73a95d411d2a936811cdf71d201ef9056f2a2849 Mon Sep 17 00:00:00 2001 From: Sascha Willems Date: Thu, 20 Jun 2024 17:51:08 +0200 Subject: [PATCH] Added new sample to readme --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index f962a5ca..c7ee3c99 100644 --- a/README.md +++ b/README.md @@ -470,6 +470,10 @@ Basic sample showing how to use descriptor buffers to replace descriptor sets. Basic sample showing how to use shader objects that can be used to replace pipeline state objects. Instead of baking all state in a PSO, shaders are explicitly loaded and bound as separate objects and state is set using dynamic state extensions. The sample also stores binary shader objets and loads them on consecutive runs. +#### [Host image copy (VK_EXT_host_image_copy)](./examples/hostimagecopy/)
+ +Shows how to do host image copies, which heavily simplify the host to device image process by fully skipping the staging process. + ### Misc #### [Vulkan Gears](examples/gears/)