From 83fd9f93031b44cc79276bec73a65c395b3e68d5 Mon Sep 17 00:00:00 2001 From: Pawel Lapinski Date: Fri, 8 Apr 2016 09:30:22 +0200 Subject: [PATCH] Added link to second tutorial. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2607c0c..4b3efe3 100644 --- a/README.md +++ b/README.md @@ -17,13 +17,14 @@ Vulkan drivers and other related resources can be found at https://www.khronos.o #### Introduction to a Vulkan world -#####https://software.intel.com/en-us/api-without-secrets-introduction-to-vulkan-part-1 +##### https://software.intel.com/en-us/api-without-secrets-introduction-to-vulkan-part-1 Tutorial presents how to create all resources necessary to use Vulkan inside our application: function pointers loading, Vulkan instance creation, physical device enumeration, logical device creation and queue set up. ### [02 - Swap chain](./Project/Tutorial02/) #### Integrating Vulkan with OS +##### https://software.intel.com/en-us/api-without-secrets-introduction-to-vulkan-part-2 This lesson focuses on a swap chain creation. Swap chain enables us to display Vulkan-generated image in an application window. To display anything simple command buffers are allocated and recorded. ### [03 - First triangle](./Project/Tutorial03/)