New dynamic rendering multi sampling example

Work-in-progress
This commit is contained in:
Sascha Willems 2025-02-16 12:07:15 +01:00
parent a87dfde9cc
commit 1cd72f3d07
7 changed files with 594 additions and 0 deletions

View file

@ -446,6 +446,10 @@ Vulkan is an extensible api with lots of functionality added by extensions. Thes
Shows usage of the VK_KHR_dynamic_rendering extension, which simplifies the rendering setup by no longer requiring render pass objects or framebuffers.
- [Dynamic rendering with multi sampling (VK_KHR_dynamic_rendering)](examples/dynamicrenderingmultisampling/)
Based on the dynamic rendering sample, this sample shows how to do implement multi sampling with dynamic rendering.
- [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.