Added tutorials "06 - Descriptor Sets" and "07 - Uniform Buffers". Added functions for projection matrices generation to Tools. Added function for loading images from files (with stb_image library). Updated README.md file with description of Tutorial06.

This commit is contained in:
plapins
2016-06-22 23:23:22 +02:00
parent 37d04f3be5
commit c064ec5a4a
26 changed files with 10307 additions and 6 deletions

View File

@@ -57,4 +57,13 @@ This tutorial shows how to set up vertex attributes and bind buffer with a verte
#### 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.
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.
<hr>
### [06 - Descriptor Sets](./Project/Tutorial06/)
<img src="./Document/Images/06 - Descriptor Sets.png" height="96px" align="right">
#### Using textures in shaders
This tutorial shows what resources are needed and how they should be prepared to be able to use textures (or other shader resources) in shader programs.