Added my Khronos Meetup Munich Presentation

This commit is contained in:
saschawillems 2016-04-09 12:53:39 +02:00
parent d93f4dd647
commit fce71d87d3
3 changed files with 8 additions and 10 deletions

View file

@ -35,7 +35,10 @@ The examples are build against **API Version 1.0.5** and support **implementatio
## Additional documentation ## Additional documentation
Additional documentation for several base classes and functionality (e.g. the swap chain) can be found [in this directory](./documentation/additionaldocs.md). Additional documentation for several base classes and some Presentations can be found [in this directory](./documentation/additionaldocs.md).
### Presentations
- [From OpenGL to Vulkan (Khronos Meetup Munich, 2016-04-08)](./documentation/Khronos_meetup_munich_fromGLtoVulkan.pdf)
# Examples # Examples
@ -226,11 +229,6 @@ More of a playground than an actual example. Renders multiple meshes with differ
<br><br> <br><br>
<br> <br>
## [Android](android/)
This repository also contains a few Android examples that are (for now) separated from the rest of the examples. See the [Android readme](./android/README.md) for details on what is included and how to build the examples.
The examples already share a few source files with existing examples and might be integrated into them at some point.
## Credits ## Credits
Thanks to the authors of these libraries : Thanks to the authors of these libraries :

Binary file not shown.

View file

@ -1,8 +1,8 @@
## Additional documentation ## Additional documentation
### Source
- [Vulkan swap chain class](./swapchain.md) - [Vulkan swap chain class](./swapchain.md)
- [Vulkan example base class](./examplebaseclass.md) - [Vulkan example base class](./examplebaseclass.md)
- todo
- mesh loader ### Presentations
- texture loader - [From OpenGL to Vulkan (Khronos Meetup Munich, 2016-04-08)](./Khronos_meetup_munich_fromGLtoVulkan.pdf)
- etc.