Added VRS sample to readme

This commit is contained in:
Sascha Willems 2020-09-12 12:16:31 +02:00
parent 9a6a0b30b0
commit 9aea7d1550
2 changed files with 5 additions and 0 deletions

View file

@ -382,6 +382,11 @@ An updated version using ```VK_EXT_debug_utils``` along with an in-depth tutoria
Shows how to render a scene using a negative viewport height, making the Vulkan render setup more similar to other APIs like OpenGL. Also has several options for changing relevant pipeline state, and displaying meshes with OpenGL or Vulkan style coordinates. Details can be found in [this tutorial](https://www.saschawillems.de/tutorials/vulkan/flipping-viewport).
#### [08 - Variable rate shading (VK_NV_shading_rate_image)](examples/variablerateshading/)
Uses a special image that contains variable shading rates to vary the number of fragment shader invocations across the framebuffer. This makes it possible to lower fragment shader invocations for less important/less noisy parts of the framebuffer.
### <a name="Misc"></a> Misc
#### [01 - Vulkan Gears](examples/gears/)