Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,19 @@ The Khronos Vulkan^®^ Tutorial is based on the "link:https://vulkan-tutorial.co

This repository hosts the contents of the link:https://docs.vulkan.org/tutorial/latest[Khronos Vulkan Tutorial]. The tutorial is part of the link:https://github.com/KhronosGroup/Vulkan-Site[Vulkan Documentation Project].

== Differences

Compared to the original tutorial, this version of the tutorial is teaching up-to-date concepts:

* Vulkan 1.4 as a baseline
* Dynamic rendering instead of render passes
* Timeline semaphores
* link:https://shader-slang.org/[Slang] as the primary shading language
* Modern C++ (20) with modules
* link:https://github.com/KhronosGroup/Vulkan-Hpp[Vulkan-Hpp] with link:https://en.wikipedia.org/wiki/Resource_acquisition_is_initialization[RAII]

It also contains Vulkan usage clarifications, improved synchronization and new content.

== Project Structure

The repository is organized into several important directories:
Expand Down
13 changes: 13 additions & 0 deletions en/00_Introduction.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@
The Khronos Vulkan^®^ Tutorial is based on the "link:https://vulkan-tutorial.com/[Vulkan Tutorial]" by Alexander Overvoorde licensed under
link:https://creativecommons.org/licenses/by-sa/4.0/[CC BY-SA 4.0].

== Differences

Compared to the original tutorial, this version of the tutorial is teaching up-to-date concepts:

* Vulkan 1.4 as a baseline
* Dynamic rendering instead of render passes
* Timeline semaphores
* link:https://shader-slang.org/[Slang] as the primary shading language
* Modern C++ (20) with modules
* link:https://github.com/KhronosGroup/Vulkan-Hpp[Vulkan-Hpp] with link:https://en.wikipedia.org/wiki/Resource_acquisition_is_initialization[RAII]

It also contains Vulkan usage clarifications, improved synchronization and new content.

== About

This tutorial will teach you the basics of using the
Expand Down
Loading