Added code for tutorial 05 - Staging Resources

This commit is contained in:
plapins
2016-06-06 14:08:17 +02:00
parent 1ee571a0fb
commit 2c06d5d63f
13 changed files with 1174 additions and 1 deletions

View File

@@ -49,3 +49,12 @@ Here I present render pass, framebuffer and pipeline objects which are necessary
#### Buffers, images and fences
This tutorial shows how to set up vertex attributes and bind buffer with vertex data. Here we also create images, memory objects and fences.
<hr>
### [05 - Staging Resources](./Project/Tutorial05/)
<img src="./Document/Images/05 - Staging Resources.png" height="96px" align="right">
#### Copying data between buffers
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.