Added link to the 5th tutorial to the README.md file.

This commit is contained in:
plapins
2016-08-17 15:37:07 +02:00
parent ac538d2f72
commit ca638ee002

View File

@@ -57,6 +57,7 @@ This tutorial shows how to set up vertex attributes and bind buffer with a verte
<img src="./Document/Images/05 - Staging Resources.png" height="96px" align="right"> <img src="./Document/Images/05 - Staging Resources.png" height="96px" align="right">
#### Copying data between buffers #### Copying data between buffers
##### https://software.intel.com/en-us/articles/api-without-secrets-introduction-to-vulkan-part-5
In this example staging resources are presented. They are used as an intermediate resources for copying data between CPU and GPU. This way, resources involved in rendering can be bound only to a device local (very fast) memory. In this example staging resources are presented. They are used as an intermediate resources for copying data between CPU and GPU. This way, resources involved in rendering can be bound only to a device local (very fast) memory.