From f45cf0360897b094df7bdc99d9e6252193d9c44b Mon Sep 17 00:00:00 2001 From: Sascha Willems Date: Fri, 22 Apr 2022 07:52:11 +0200 Subject: [PATCH] Added graphics pipeline library sample to readme --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 1422d81e..c2b3f7d9 100644 --- a/README.md +++ b/README.md @@ -436,6 +436,9 @@ Demonstrates the use of VK_EXT_descriptor_indexing for creating descriptor sets Shows usage of the VK_KHR_dynamic_rendering extension, which simplifies the rendering setup by no longer requiring render pass objects or framebuffers. +#### [Graphics pipeline library (VK_EXT_graphics_pipeline_library)](./examples/graphicspipelinelibrary)
+Uses the graphics pipeline library extensions to improve run-time pipeline creation. Instead of creating the whole pipeline at once, this sample pre builds shared pipeline parts like like vertex input state and fragment output state. These are then used to create full pipelines at runtime, reducing build times and possible hick-ups. + ### Misc #### [Vulkan Gears](examples/gears/)